/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    padding-top: 100px;
    overflow-x: hidden;

}

body.menu-open .overlay {
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1000;
}

/* wrapper */
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-top {
    height: 60px;
    justify-content: space-between;
}

/* desktop nav */
.nav-desktop ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* auth buttons */
.auth .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: 1rem;
}

.btn.login {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.btn.register {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    color: #fff;
}

/* burger */
.burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* mobile nav */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: 60px;
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.nav-mobile li {
    margin-bottom: 1rem;
}

.nav-mobile a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

/* info-bar */
.info-bar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #f9f9ff;
    border-bottom: 1px solid #e5e5ed;
    z-index: 999;
}

.info-bar .wrapper {
    height: 40px;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #000000;
}

.info-item i {
    margin-right: 0.5rem;
    font-size: 0.6rem;
}

.circle-green {
    color: #28a745;
}

.circle-blue {
    color: #0d6efd;
}

/* info-bar-bottom */
.info-bar-bottom {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #fff4e5;
    border-bottom: 1px solid #ffd59e;
    z-index: 998;
}

.info-bar-bottom .wrapper {
    height: 30px;
}

.info-bar-bottom .info-item {
    font-weight: 600;
    color: #e65100;
}

/* responsive */
@media(max-width:768px) {

    .nav-desktop,
    .auth {
        display: none;
    }

    .burger {
        display: flex;
    }

    body {
        padding-top: 100px;
    }
}

/* ====== FOOTER ====== */
.site-footer {
    background: #0b0f1c;
    color: #ccc;
    padding: 3rem 0 1.5rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact i,
.footer-cert i {
    margin-right: 0.5rem;
    color: #888;
}

/* Support section */
.footer-support .highlight {
    color: #ff9800;
    font-weight: 500;
}

/* Bottom section */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-cert span {
    margin-left: 1.5rem;
    display: inline-block;
}

/* Adaptation */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-cert span {
        margin-left: 0;
    }
}

/**/
.hero-fullscreen {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 30%, #3a0ca3 0%, #7209b7 50%, #560bad 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
    overflow: hidden;
    text-align: center;
}

.hero-fullscreen .wrapper {
    max-width: 1200px;
    width: 100%;
}

.hero-top .tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    margin-left: 8px;
}

.hero-center h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.win-text {
    color: #ffb3ec;
}

.white-text {
    color: #fff;
}

.blue-text {
    color: #66e0ff;
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #eee;
}

.highlight {
    color: #ffc107;
    font-weight: 600;
}

.hero-btn {
    background: linear-gradient(90deg, #ffc107, #ff5722);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.age-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.color-dots {
    display: flex;
    gap: 0.3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.yellow {
    background: #ffc107;
}

.dot.blue {
    background: #00e5ff;
}

.dot.pink {
    background: #f06292;
}

.hero-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    width: 220px;
    text-align: center;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
}

.card-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.card-desc {
    font-size: 0.9rem;
    color: #eee;
}

@media (max-width: 768px) {
    .hero-center h1 {
        font-size: 2.5rem;
    }

    .hero-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/**/
.benefits-section {
    background: #f9fbff;
    padding: 4rem 1rem;
    text-align: center;
}

.benefits-header .benefits-tag {
    background: #eaf1ff;
    color: #1a237e;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.highlight-blue {
    color: #3b82f6;
    font-weight: 500;
}

.highlight-pink {
    color: #ec4899;
    font-weight: 500;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.yellow .icon {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.benefit-card.blue .icon {
    background: linear-gradient(135deg, #6366f1, #60a5fa);
}

.benefit-card.green .icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.benefit-card.pink .icon {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.benefit-card.pink-light .icon {
    background: linear-gradient(135deg, #d946ef, #f9a8d4);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #555;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.benefit-card .icon {
    font-size: 1rem;
    height: auto;
    width: 60px;
    padding: 1rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}



.benefits-footer {
    background: #e0f7fa;
    color: #1b1b1b;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    margin-top: 3rem;
    display: inline-flex;
    gap: 1rem;
    align-items: center;
}

.benefits-footer .stars i {
    color: #ffc107;
}

@media (max-width: 768px) {
    .benefit-card {
        width: 100%;
    }
}

/**/
.how-it-works {
    background: #f9fbfd;
    padding: 80px 20px;
    text-align: center;
}

.how-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #121212;
}

.how-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    position: relative;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    width: 260px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.step-badge {
    background: #0044ff;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1rem;
}

.step-icon {
    background: #e9f1ff;
    color: #0044ff;
    font-size: 28px;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 68, 255, 0.3);
}

.step-icon.green {
    background: #e9fdf1;
    color: #27c97d;
    box-shadow: 0 4px 14px rgba(39, 201, 125, 0.3);
}

.step-icon.orange {
    background: #fff4e3;
    color: #ff9340;
    box-shadow: 0 4px 14px rgba(255, 147, 64, 0.3);
}

.step-icon.purple {
    background: #f4e8ff;
    color: #b368f9;
    box-shadow: 0 4px 14px rgba(179, 104, 249, 0.3);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #121212;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Arrow between cards */
.step-arrow {
    width: 24px;
    height: 2px;
    background: #d0d5e0;
    align-self: center;
}

@media (max-width: 992px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/**/
.secure-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.secure-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.secure-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.secure-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.secure-card {
    background: #fff;
    border-radius: 16px;
    width: 250px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.secure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.secure-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.secure-card.green .secure-icon {
    background: #27c97d;
}

.secure-card.blue .secure-icon {
    background: #408bfc;
}

.secure-card.orange .secure-icon {
    background: #fda638;
}

.secure-card.purple .secure-icon {
    background: #b368f9;
}

.secure-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.secure-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.trusted-box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.trusted-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.trusted-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #444;
    font-size: 0.95rem;
}

.trusted-item i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #7b61ff;
}

/* Responsive */
@media (max-width: 768px) {
    .secure-cards {
        flex-direction: column;
        align-items: center;
    }

    .trusted-icons {
        gap: 20px;
    }
}

/**/
.winning-registration-section {
    background: linear-gradient(135deg, #301f7a, #6c1b6d);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.highlight-orange {
    color: #ff9933;
}

.highlight-yellow {
    color: #fecd4c;
}

.highlight-green {
    color: #32ff89;
}

.highlight-blue {
    color: #57c6ff;
}

.winning-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Registration Box */
.registration-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.tagline {
    display: inline-block;
    background-color: #00e395;
    color: white;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.registration-box h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.registration-box .subtext {
    font-size: 1rem;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 100px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: #ff7cf0;
    color: white;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    margin: 0 auto 10px;
    font-weight: bold;
}

.step-title {
    font-weight: bold;
    margin-bottom: 6px;
}

.btn-register {
    background: linear-gradient(to right, #ffc107, #ff3d00);
    color: white;
    font-weight: bold;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 32px;
    display: inline-block;
    margin-bottom: 20px;
    transition: box-shadow 0.3s;
}

.btn-register:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
}

.stats {
    margin-top: 20px;
}

.dots {
    margin-bottom: 10px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: #00e395;
}

.rating {
    font-size: 0.9rem;
    color: #ccc;
}

.stars {
    color: gold;
    margin: 0 6px;
}

/**/
.rg-wrapper {
    background: #f8fafc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.rg-card {
    background: #ffffff;
    border-radius: 16px;
    max-width: 960px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(30, 41, 59, 0.06);
    text-align: center;
    border: 1px solid #f0f1ff;
}

.rg-icon-main {
    background-color: #ffecec;
    color: #e63946;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.rg-subtitle {
    color: #4b5563;
    margin-bottom: 30px;
    font-size: 1rem;
}

.rg-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.rg-feature {
    flex: 1;
    min-width: 260px;
}

.rg-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-icon.blue {
    background: #e6f0ff;
    color: #3b82f6;
}

.rg-icon.green {
    background: #e6fff1;
    color: #10b981;
}

.rg-icon.purple {
    background: #f3e8ff;
    color: #a855f7;
}

.rg-feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.rg-feature-text {
    font-size: 0.95rem;
    color: #4b5563;
}

.rg-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 30px 0;
}

.rg-note {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 20px;
}

.rg-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.rg-btn {
    background: #f3f4f6;
    color: #1f2937;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
}

.rg-btn:hover {
    background: #e5e7eb;
}

.rg-support-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .rg-features {
        flex-direction: column;
        align-items: center;
    }
}

/**/
#benefits,
#responsible,
#security,
#works {
    scroll-margin-top: 100px;
}

/**/
.modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 480px;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

.modal.active,
.modal-overlay.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.modal-content a {
    color: #6a0dad;
    text-decoration: underline;
    font-weight: 500;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content input[type="password"] {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
}

.modal-content label {
    font-size: 0.85rem;
    color: #333;
}

.modal-content .flex-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-btn {
    background: #8000ff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-btn:hover {
    background: #6600cc;
}

.close-modal {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
}
/**/
.loader {
    margin: 20px auto;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-message {
    font-size: 1rem;
    color: #28a745;
    margin-top: 20px;
}

.age-modal {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #3a0ca3 0%, #7209b7 50%, #560bad 100%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.age-modal-content {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  font-family: "Segoe UI", sans-serif;
  color: #222;
  animation: fadeIn 0.4s ease-in-out;
}

.age-modal-content h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
}

.age-modal-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.6;
}

.age-modal-content a {
  color: #0056b3;
  text-decoration: underline;
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-modal-buttons button {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#ageConfirm {
  background-color: #28a745;
  color: white;
}

#ageDecline {
  background-color: #dc3545;
  color: white;
}

.age-modal-buttons button:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
