/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #1E3A8A;       /* Deep blue - strong and elegant */
    --secondary-color: #F1F5F9;     /* Soft grayish white - clean background */
    --accent-color: #3B82F6;        /* Vivid blue - for highlights and buttons */
    --accent-color-2: #c1d7fc;        /* Vivid blue - for highlights and buttons */
    --dark-green: #10B981;          /* Fresh green - for success/status */
    --white: #FFFFFF;               /* Pure white */
    --light-gray: #E5E7EB;          /* Neutral light gray - for dividers and backgrounds */
    --text-dark: #111827;           /* Very dark gray - for strong text */
    --text-light: #6B7280;          /* Muted gray - for secondary text */
  }
  
body {
    font-family: 'Arcial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Header and Navigation */
.header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-logo h2 {
    color: var(--white);
    /* font-size: 1.8rem; */
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    /* gap: 0.5rem; */
    align-items: center;
    
}

/* .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
} */
.nav-link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 0.5rem;
    padding-bottom: 1rem; /* Extra bottom padding */
    border-radius: 5px;
    text-align: center;
}

/* Underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.4rem; /* Position underline above padding */
    width: 0%;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

/* Hover, focus, and active styles */
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: black;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

/* .nav-link:hover,
.nav-link:focus {
    color: black;
    background-color: rgba(255, 255, 255, 0.1);
} */

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Container */
.mobile-menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.mobile-menu-container.active {
    display: block;
}

/* Desktop Navigation - Show by default */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .nav-item {
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Mobile Navigation Buttons */
.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
}

.mobile-nav-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);  /* soft grayish white */
    color: var(--text-dark);                    /* very dark gray for contrast */
    padding: 0.6em 1.5em;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background-color: var(--accent-color-2);   /* light vivid blue */
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
    outline: none;
  }
  

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-danm {
    background-color: #ffffff; /* white background */
    color: #111111;            /* dark text for contrast */
    padding: 0.6em 1.5em;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-danm:hover,
.btn-danm:focus {
    background-color: #e6f0ff; /* light blue on hover */
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    outline: none;
}

.btn-game {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.6em 1.5em;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-game:hover,
.btn-game:focus {
    background-color: #ffffff;
    color: #1a1a1a; /* adjust to your theme’s primary color if needed */
    outline: none;
}
.btn-danm {
    background-color: var(--primary-color);   /* Deep blue background */
    color: var(--white);                      /* White text */
    padding: 0.6em 1.5em;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-danm:hover,
.btn-danm:focus {
    background-color: var(--accent-color);     /* Vivid blue on hover */
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
    outline: none;
}
.btn-game {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.6em 1.5em;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-game:hover,
.btn-game:focus {
    background-color: var(--white);
    color: var(--primary-color);   /* Deep blue on hover */
    outline: none;
}

.btn-login {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 0.6em 1.5em;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
  }
  
  .btn-login:hover,
  .btn-login:focus {
    background-color: #0f6f60; /* darker shade of dark-green */
    box-shadow: 0 4px 12px rgba(15, 111, 96, 0.6);
    outline: none;
  }
  
  .btn-register {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.6em 1.5em;
    border: none;
    border-radius: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
  }
  
  .btn-register:hover,
  .btn-register:focus {
    background-color: #2563eb; /* darker vivid blue */
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.6);
    outline: none;
  }
  

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--text-dark), var(--accent-color));
    color: var(--white);
    padding: 4rem 0;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    /* color: var(--primary-color); */
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.features-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    /* border-radius: 50%; */
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.registration-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background-color: var(--accent-color-2);
}

.about-preview h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-preview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    /* Keep logo and mobile toggle on same line */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    /* Show mobile navigation when active */
    .mobile-menu-container.active .mobile-nav-menu {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
        margin: 0;
    }

    .mobile-nav-buttons {
        display: flex;
        margin: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .registration-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-buttons,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero-section {
        background: none;
        color: black;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --accent-color: #cccccc;
        --dark-green: #333333;
    }
}

/* Page Header Styles */
.page-header {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%); */
    background: linear-gradient(135deg, var(--text-dark), var(--accent-color));

    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section Styles */
.content-section {
    padding: 4rem 0;
}

.policy-content,
.terms-content,
.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2,
.terms-content h2,
.disclaimer-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.policy-content p,
.terms-content p,
.disclaimer-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content ul,
.terms-content ul,
.disclaimer-content ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li,
.terms-content li,
.disclaimer-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.policy-footer,
.terms-footer,
.disclaimer-footer {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.support-features {
    margin-top: 2rem;
}

.support-features h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-features ul {
    margin-left: 1.5rem;
}

.support-features li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    /* background-color: var(--accent-color-2); */
}

.faq-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ CTA Section */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.faq-cta p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faq-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 404 Error Page Styles */
.error-section {
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-section h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.error-section p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.error-actions {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links {
    margin: 3rem 0;
    text-align: left;
}

.helpful-links h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.helpful-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.helpful-links a:hover {
    color: var(--primary-color);
}

.error-help {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    text-align: left;
}

.error-help h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-help p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 6rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* AOS Animation Enhancements */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth transitions for all animated elements */
.feature-card,
.step,
.hero-content,
.hero-image,
.footer-section {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced hover effects for animated elements */
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Smooth fade-in for text elements */
.hero-content h2,
.hero-content p,
.features-section h3,
.registration-section h3,
.about-preview h3 {
    transition: all 0.8s ease-out;
}

/* Staggered animation delays for better visual flow */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.2s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step:nth-child(4) { transition-delay: 0.4s; }

/* Privacy Policy Page AOS Enhancements */
.policy-content h2,
.policy-content p,
.policy-content ul,
.policy-footer {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.policy-content h2 {
    position: relative;
    overflow: hidden;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: left 0.8s ease-out;
}

.policy-content h2.aos-animate::after {
    left: 0;
}

.policy-content ul {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.policy-content ul.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.policy-footer {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.policy-footer.aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Enhanced page header animations */
.page-header h1,
.page-header p {
    transition: all 0.8s ease-out;
}

.page-header h1.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.page-header p.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Terms & Conditions Page AOS Enhancements */
.terms-content h2,
.terms-content p,
.terms-content ul,
.terms-footer {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.terms-content h2 {
    position: relative;
    overflow: hidden;
}

.terms-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: left 0.8s ease-out;
}

.terms-content h2.aos-animate::after {
    left: 0;
}

.terms-content ul {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.terms-content ul.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.terms-footer {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.terms-footer.aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Disclaimer Page AOS Enhancements */
.disclaimer-content h2,
.disclaimer-content p,
.disclaimer-content ul,
.disclaimer-footer {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disclaimer-content h2 {
    position: relative;
    overflow: hidden;
}

.disclaimer-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: left 0.8s ease-out;
}

.disclaimer-content h2.aos-animate::after {
    left: 0;
}

.disclaimer-content ul {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.disclaimer-content ul.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.disclaimer-footer {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.disclaimer-footer.aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* Contact Us Page AOS Enhancements */
.contact-info h2,
.contact-info p,
.contact-method,
.support-features h3,
.support-features ul,
.contact-form h2,
.form-group,
.faq-section h2,
.faq-item {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info h2 {
    position: relative;
    overflow: hidden;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: left 0.8s ease-out;
}

.contact-info h2.aos-animate::after {
    left: 0;
}

.contact-method {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.contact-method.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.support-features ul {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.support-features ul.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.contact-form {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.contact-form.aos-animate {
    transform: translateX(0);
    opacity: 1;
}

.form-group {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.form-group.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.faq-item {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-item.aos-animate {
    transform: scale(1);
    opacity: 1;
}

/* FAQ Page AOS Enhancements */
.faq-section h2,
.faq-item,
.faq-cta,
.faq-cta h3,
.faq-cta p,
.faq-buttons {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-item.aos-animate {
    transform: scale(1);
    opacity: 1;
}

.faq-item h3 {
    position: relative;
    overflow: hidden;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: left 0.8s ease-out;
}

.faq-item.aos-animate h3::after {
    left: 0;
}

.faq-cta {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-cta.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.faq-cta h3 {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-cta.aos-animate h3 {
    transform: translateY(0);
    opacity: 1;
}

.faq-cta p {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-cta.aos-animate p {
    transform: translateY(0);
    opacity: 1;
}

.faq-buttons {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-cta.aos-animate .faq-buttons {
    transform: translateY(0);
    opacity: 1;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background-color: var(--light-gray);
    padding: 1rem 0;
    border-bottom: 1px solid var(--secondary-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.breadcrumb-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.3rem;
    }
}