:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4895ef;
    --dark: #1e1e2c;
    --light: #f8f9fa;
    --success: #4cc9f0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: rgba(30, 30, 44, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, rgba(30, 41, 59, 0) 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 149, 239, 0.15) 0%, rgba(30, 41, 59, 0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    margin-right: 10px;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Features Section */
.features {
    padding: 8rem 5%;
    background: rgba(15, 23, 42, 0.7);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    background: linear-gradient(to right, #fff 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(72, 149, 239, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}





/* Footer */
footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    min-width: 150px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--accent) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 5rem;
    }

    .hero-content {
        margin: 0 auto 3rem;
    }

    .hero-image {
        position: relative;
        width: 80%;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    /* Privacy Policy Mobile Responsive Styles - Small Screens */
    .privacy-policy {
        margin: 80px 15px 30px;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-header p {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .policy-section h2 i {
        font-size: 1rem;
    }
    
    .policy-section p,
    .policy-section ul {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .policy-section ul {
        padding-left: 15px;
    }
    
    .policy-section li::before {
        left: -10px;
        font-size: 1rem;
    }
    
    .warning-box {
        padding: 12px;
        margin: 15px 0;
    }
    
    .warning-box h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .warning-box ul {
        padding-left: 20px;
    }
    
    .warning-box li::before {
        left: -15px;
        font-size: 1rem;
    }
    
    .last-updated {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}


/* Privacy Policy Styles */
.privacy-policy {
    max-width: 1000px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.last-updated {
    background: rgba(72, 149, 239, 0.1);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.policy-section {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--success);
}

.policy-section p,
.policy-section ul {
    margin-bottom: 15px;
    color: #e2e8f0;
    line-height: 1.8;
}

.policy-section ul {
    list-style: none;
    /* Remove default bullets */
    padding-left: 25px;
    /* Adjusted padding */
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 10px;
    position: relative;
}

.policy-section li::before {
    content: '•';
    color: var(--accent);
    /* Use accent color */
    position: absolute;
    left: -15px;
    /* Better alignment */
    font-size: 1.5rem;
    /* Slightly larger */
    line-height: 1.4;
}

.highlight {
    background: rgba(72, 149, 239, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    flex: 1;
    min-width: 200px;
    background: rgba(15, 23, 42, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.contact-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Replace existing .warning-box styles with this */
.warning-box {
    background: rgba(255, 152, 0, 0.1);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.warning-box h3 {
    color: #ff9800;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.warning-box ul {
    padding-left: 35px;
    margin: 15px 0;
}

.warning-box li {
    margin-bottom: 8px;
    position: relative;
}

.warning-box li::before {
    content: '•';
    color: #ff9800;
    position: absolute;
    left: -20px;
    font-size: 1.5rem;
    line-height: 1.4;
}

.warning-box .fa-exclamation-triangle {
    color: #ff9800;
    font-size: 1.6rem;
}



/* MOBILE SLIDE‑OUT NAV */
@media (max-width: 768px) {

    /* Hide desktop nav, show burger */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* start off-screen to the right */
        width: 70%;
        /* adjust to taste */
        height: 100vh;
        /* full viewport height */
        background: rgba(30, 30, 44, 0.95);
        backdrop-filter: blur(10px);
        display: flex !important;
        /* Force flex display */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right var(--transition);
        z-index: 9999;
        /* Higher z-index to supercede stats page elements */
        /* ensure text is large enough to tap */
        font-size: 1.2rem;
    }

    .nav-links.active {
        right: 0;
        /* slide in on toggle */
    }

    /* show the mobile toggle button */
    .mobile-toggle {
        display: block;
    }

    /* Privacy Policy Mobile Responsive Styles */
    .privacy-policy {
        margin: 100px 20px 40px;
        padding: 0;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
        flex-wrap: wrap;
        gap: 8px;
        line-height: 1.3;
    }
    
    .policy-section h2 i {
        font-size: 1.2rem;
    }
    
    .policy-section ul {
        padding-left: 20px;
    }
    
    .policy-section li::before {
        left: -12px;
        font-size: 1.2rem;
    }
    
    .warning-box {
        padding: 15px;
        margin: 20px 0;
    }
    
    .warning-box h3 {
        font-size: 1.2rem;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .warning-box ul {
        padding-left: 25px;
    }
}

/* make sure nav‑link items look good in column */
.nav-links a {
    padding: 0.5rem 1rem;
    display: block;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
}


/* Donations Section */
.donations {
    padding: 8rem 5% 5rem;
    background: rgba(15, 23, 42, 0.7);
    min-height: 100vh;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.donations-container {
    max-width: 1000px;
    margin: 0 auto;
}

.donations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(72, 149, 239, 0.3);
}

.donation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.donation-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.donation-amount {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--accent) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.donation-date {
    color: #94a3b8;
    font-size: 0.9rem;
}

.donation-message {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
}

.total-donations {
    text-align: center;
    background: rgba(72, 149, 239, 0.1);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 3rem auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.total-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(to right, var(--accent) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.update-info {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.paypal-button {
    display: inline-block;
    margin: 15px auto;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0070ba, #1546a0);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.paypal-button i {
    margin-right: 8px;
}

.paypal-button:hover {
    background: linear-gradient(135deg, #1546a0, #0070ba);
    transform: translateY(-2px);
}

/* Center inside donations section */
.donations .paypal-button {
    display: block;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* Delete Account Section Styles */
.delete-account-section {
    min-height: 100vh;
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-account-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.6);
}

.delete-account-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.delete-account-icon i {
    font-size: 4rem;
    color: var(--accent);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delete-account-container h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Form Styles */
.delete-form {
    margin: 2.5rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.form-group label i {
    color: var(--accent);
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(72, 149, 239, 0.2);
}

.form-group input::placeholder {
    color: #64748b;
}

.delete-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.delete-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4);
}

.delete-button:active {
    transform: translateY(0);
}

/* Info Box Styles */
.info-box,
.success-info-box {
    background: rgba(72, 149, 239, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(72, 149, 239, 0.2);
    display: flex;
    gap: 1rem;
}

.info-box i,
.success-info-box i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.info-content ul {
    list-style: none;
    padding-left: 0;
}

.info-content li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.info-content li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Success Message Styles */
.success-message-container {
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 4rem;
    color: #10b981;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-text {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.primary-button,
.secondary-button {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Back Link */
.back-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link a:hover {
    color: var(--accent);
}

/* Responsive Styles for Delete Account */
@media (max-width: 768px) {
    .delete-account-section {
        padding: 100px 20px 40px;
    }

    .delete-account-container {
        padding: 2rem;
    }

    .delete-account-container h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .delete-account-container {
        padding: 1.5rem;
    }

    .delete-account-container h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info-box,
    .success-info-box {
        flex-direction: column;
        text-align: center;
    }

    .info-box i,
    .success-info-box i {
        align-self: center;
    }
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Additional Utility Styles */
.success-info-box {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.success-info-box i {
    color: #10b981;
}

/* Animation for form submission */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delete-account-container {
    animation: fadeIn 0.6s ease-out;
}

/* Loading state for button */
.delete-button.loading {
    position: relative;
    color: transparent;
}

.delete-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error state for input */
.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Stats Page Styles - Add this to your existing style.css */

.stats-page {
    min-height: 100vh;
    padding: 120px 5% 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
}

.stats-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-header .subtitle {
    color: #94a3b8;
    font-size: 1.2rem;
}

/* Total Stats Card */
.total-stats-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.6);
}

.total-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--success) 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.total-stats-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.total-number {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--accent) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Stats Details Grid */
.stats-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-detail-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(72, 149, 239, 0.3);
}

.stat-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.stat-detail-content {
    flex: 1;
}

.stat-detail-content h3 {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-detail-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Stats Info Box */
.stats-info-box {
    background: rgba(72, 149, 239, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(72, 149, 239, 0.2);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.stats-info-box i {
    color: var(--accent);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.stats-info-box .info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.stats-info-box .info-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Responsive Styles for Stats */
@media (max-width: 768px) {
    .stats-page {
        padding: 100px 20px 40px;
    }

    .stats-header h1 {
        font-size: 2.2rem;
    }

    .stats-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .total-stats-card {
        padding: 2rem;
    }

    .total-number {
        font-size: 3.5rem;
    }

    .stats-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-detail-card {
        padding: 1.5rem;
    }

    .stat-detail-number {
        font-size: 2rem;
    }

    .stats-info-box {
        flex-direction: column;
        text-align: center;
    }

    .stats-info-box i {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .stats-header h1 {
        font-size: 1.8rem;
    }

    .total-stats-card h2 {
        font-size: 1.5rem;
    }

    .total-number {
        font-size: 3rem;
    }

    .stat-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-detail-number {
        font-size: 1.8rem;
    }
}

/* Password Reset Styles */
.reset-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
    font-family: 'Poppins', sans-serif;
}

.reset-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
}

.reset-button:active {
    transform: translateY(0);
}

/* Password Requirements List */
.password-requirements {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.password-requirements li {
    margin-bottom: 0.25rem;
    list-style: none;
    position: relative;
    padding-left: 1.2rem;
}

.password-requirements li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.password-requirements li.valid {
    color: #10b981;
}

.password-requirements li.valid::before {
    content: '✓';
    color: #10b981;
}

/* Form Error Box */
.form-error-box {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
}