/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a55eea;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

/* Topbar Styles */
.topbar {
    background-color: var(--darker-bg);
    padding: 8px 0;
    font-size: 0.9rem;
}

.topbar p {
    color: var(--gray-text);
    text-align: center;
}

.topbar i {
    color: var(--primary-color);
}

/* Navbar Styles */
.navbar {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.register-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
    min-height: calc(100vh - 140px); /* Accounting for navbar and topbar */
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
    display: block;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

/* Countdown Timer */
.countdown-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 2rem 0;
}

.countdown-title {
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 5px;
}

/* Floating Badge */
.floating-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    pointer-events: none;
}

.badge-content {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.age {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
}

.section-header {
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1.2;
    margin-bottom: 0;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-paragraphs {
    margin-bottom: 40px;
}

.about-paragraphs p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 5px;
}

.achievement-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.feature-list {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--light-text);
    font-size: 1.1rem;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3);
}

.experience-badge .badge-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-divider path {
    fill: var(--darker-bg);
}

/* Get Started Section */
.get-started-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.section-description {
    color: var(--gray-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1.5rem auto 4rem;
}

.steps-container {
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.step-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.step-icon i {
    font-size: 1.8rem;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.step-card h3 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.step-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    color: var(--gray-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.get-started-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    margin-top: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.02);
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 30px;
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(10);
}

.accordion-button i {
    margin-right: 15px;
    font-size: 1.2rem;
    opacity: 0.8;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--gray-text);
    padding: 25px 30px;
}

.accordion-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.accordion-body ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.accordion-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* Responsible Entertainment Section */
.responsible-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.guidelines-wrapper, .support-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.subsection-title {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
}

.subsection-title i {
    color: var(--primary-color);
}

.guideline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.guideline-item:last-child {
    margin-bottom: 0;
}

.guideline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guideline-icon i {
    color: white;
    font-size: 1.3rem;
}

.guideline-content h4 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.guideline-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.support-tools {
    margin-bottom: 30px;
}

.support-content h4 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tools-list li {
    color: var(--gray-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tools-list li i {
    color: var(--primary-color);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.contact-card span {
    color: var(--gray-text);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-card strong {
    color: var(--light-text);
    font-size: 1.2rem;
    display: block;
}

.commitment-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.commitment-badge i {
    font-size: 2rem;
    color: white;
}

.commitment-badge p {
    color: white;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .guidelines-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .guidelines-wrapper, .support-wrapper {
        padding: 25px;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .guideline-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .guideline-icon {
        margin: 0 auto;
    }

    .commitment-badge {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-section .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact-cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: white;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-section .section-title {
        font-size: 2.2rem;
    }

    .contact-cta-section .section-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-cta-section {
        padding: 40px 0;
    }

    .contact-cta-section .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Footer Section */
.footer-section {
    background: var(--darker-bg);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-logo {
    height: 60px;
    margin-bottom: 40px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav li a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--primary-color);
}

.license-info {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.license-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-badges {
    margin-bottom: 40px;
}

.badge-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-badge,
.cert-badge {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cert-badge {
    opacity: 0.9;
}

.payment-badge:hover,
.cert-badge:hover {
    opacity: 1;
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-nav {
        gap: 20px;
        padding: 0 20px;
    }

    .footer-nav li a {
        font-size: 0.9rem;
    }

    .badge-images {
        gap: 20px;
        padding: 0 20px;
    }

    .payment-badge,
    .cert-badge {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .footer-brand-logo {
        height: 50px;
        margin-bottom: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .badge-images {
        gap: 15px;
    }

    .payment-badge,
    .cert-badge {
        height: 30px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h1 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
}

.form-floating {
    background: transparent;
}

.form-floating > .form-control,
.form-floating > .form-select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    height: 60px;
    padding: 1.5rem 1rem;
}

.form-floating > textarea.form-control {
    height: 150px;
    padding-top: 2rem;
}

.form-floating > label {
    color: var(--gray-text);
    padding: 1rem;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-floating > .form-control:focus ~ label {
    color: var(--primary-color);
}

.contact-form button {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info {
    margin-top: 40px;
    text-align: center;
}

.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: var(--dark-bg);
    color: var(--gray-text);
    padding: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-support {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

.email-support i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.email-support p {
    color: var(--gray-text);
    margin-bottom: 5px;
}

.email-support a {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-support a:hover {
    color: var(--secondary-color);
}

/* Register Page Styles */
.register-section {
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.register-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.verification-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(108, 92, 231, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.verification-notice i {
    font-size: 2rem;
    color: var(--primary-color);
}

.verification-notice .notice-text {
    flex: 1;
}

.verification-notice h3 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.verification-notice p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
    cursor: pointer;
    z-index: 10;
}

.password-requirements {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.requirement:last-child {
    margin-bottom: 0;
}

.requirement i {
    font-size: 0.5rem;
    transition: color 0.3s ease;
}

.requirement.valid i {
    color: #4cd137;
}

.requirement.invalid i {
    color: #e84118;
}

.form-check-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-check-label a:hover {
    color: var(--secondary-color);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .register-section {
        padding: 60px 0;
    }

    .register-form-wrapper {
        padding: 30px;
    }

    .verification-notice {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .verification-notice i {
        font-size: 1.8rem;
    }
}

/* Register Page Styles */
.register-section {
    padding: 100px 0;
    min-height: calc(100vh - 400px);
}

.register-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.verification-notice {
    background: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.verification-notice i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.verification-notice p {
    color: var(--light-text);
    margin: 0;
    font-weight: 500;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
    cursor: pointer;
}

.password-requirements {
    margin-top: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.password-requirements p {
    color: var(--gray-text);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements ul li {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-requirements ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-block;
}

.registration-benefits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
}

.registration-benefits h3 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.registration-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.registration-benefits li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-check-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-info-card,
    .registration-benefits {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section,
    .register-section {
        padding: 60px 0;
    }

    .contact-form-card,
    .register-form-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-form-card h3,
    .register-form-card h3 {
        font-size: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-content-section {
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.legal-content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.legal-content-wrapper h1 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.legal-section p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.legal-section ul li {
    color: var(--gray-text);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.legal-section strong {
    color: var(--light-text);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .legal-content-section {
        padding: 60px 0;
    }

    .legal-content-wrapper {
        padding: 30px;
    }

    .legal-content-wrapper h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .legal-content-wrapper {
        padding: 20px;
    }

    .legal-content-wrapper h1 {
        font-size: 1.8rem;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}

/* Age Disclaimer Section */
.age-disclaimer-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-item {
    padding: 20px;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.disclaimer-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.disclaimer-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.disclaimer-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

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

@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .countdown-timer {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin-top: 40px;
    }

    .navbar-nav {
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 10px 0;
    }
    
    .register-btn {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 400px;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }

    .countdown-item {
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-item:last-child {
        grid-column: span 2;
    }

    .about-image-wrapper {
        margin-top: 40px;
    }

    .experience-badge {
        bottom: 20px;
        padding: 15px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 30px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .countdown-item .label {
        font-size: 0.8rem;
    }

    .floating-badge {
        bottom: 20px;
        right: 20px;
    }

    .badge-content {
        width: 50px;
        height: 50px;
    }

    .age {
        font-size: 1rem;
    }

    .age-disclaimer-section {
        padding: 40px 0;
    }

    .disclaimer-item {
        padding: 10px;
    }

    .disclaimer-card {
        padding: 20px;
    }

    .disclaimer-card i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .disclaimer-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .disclaimer-card p {
        font-size: 0.9rem;
    }
}
}