/* /Components/LanguageSwitcher.razor.rz.scp.css */
.lang-dropdown[b-wyt36j9xvd] {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
}

.lang-toggle[b-wyt36j9xvd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .lang-toggle:hover[b-wyt36j9xvd] {
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.05);
    }

.chevron[b-wyt36j9xvd] {
    transition: transform 0.3s ease;
}

.lang-dropdown.open .chevron[b-wyt36j9xvd] {
    transform: rotate(180deg);
}

.lang-menu[b-wyt36j9xvd] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(15, 20, 30, 0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 140px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.lang-dropdown.open .lang-menu[b-wyt36j9xvd] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option[b-wyt36j9xvd] {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .lang-option:hover[b-wyt36j9xvd] {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-main);
    }

    .lang-option.active[b-wyt36j9xvd] {
        color: var(--accent);
        background: rgba(0, 229, 255, 0.05);
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-nkk85sioxz] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-nkk85sioxz] {
    flex: 1;
}

.sidebar[b-nkk85sioxz] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-nkk85sioxz] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-nkk85sioxz]  a, .top-row[b-nkk85sioxz]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-nkk85sioxz]  a:hover, .top-row[b-nkk85sioxz]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-nkk85sioxz]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-nkk85sioxz] {
        justify-content: space-between;
    }

    .top-row[b-nkk85sioxz]  a, .top-row[b-nkk85sioxz]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-nkk85sioxz] {
        flex-direction: row;
    }

    .sidebar[b-nkk85sioxz] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-nkk85sioxz] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-nkk85sioxz]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-nkk85sioxz], article[b-nkk85sioxz] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-nkk85sioxz] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-nkk85sioxz] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* =========================================
   Hero Section
   ========================================= */
.hero-section[b-vpckkuqr0a] {
    text-align: center;
    margin-top: 15vh;
    margin-bottom: 6rem;
    width: 100%;
    max-width: 700px;
}

.brand-title[b-vpckkuqr0a] {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: -2px;
    color: #ffffff;
}

.highlight[b-vpckkuqr0a] {
    color: var(--accent);
    text-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
}

.subtitle[b-vpckkuqr0a] {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.features-preview[b-vpckkuqr0a] {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.badge[b-vpckkuqr0a] {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 0.3rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Form & Notify Section
   ========================================= */
.notify-section[b-vpckkuqr0a] {
    width: 100%;
}

.input-pill[b-vpckkuqr0a] {
    display: flex;
    align-items: center;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.3rem 0.3rem 0.3rem 1.2rem;
    max-width: 400px;
    margin: 0 auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .input-pill:focus-within[b-vpckkuqr0a] {
        border-color: var(--accent);
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
    }

.email-input[b-vpckkuqr0a] {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.notify-btn-icon[b-vpckkuqr0a] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--text-main);
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .notify-btn-icon:hover[b-vpckkuqr0a] {
        background: var(--accent);
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    }

    .notify-btn-icon:active[b-vpckkuqr0a] {
        transform: scale(0.95);
    }

.social-links[b-vpckkuqr0a] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn[b-vpckkuqr0a] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

    .social-btn:hover[b-vpckkuqr0a] {
        color: var(--text-main);
        border-color: var(--border-hover);
        background: rgba(0, 229, 255, 0.1);
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
        transform: translateY(-2px);
    }

/* =========================================
   Feature Cards (Masonry Layout)
   ========================================= */

.section-title[b-vpckkuqr0a] {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 3rem 0 2rem 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Modifier for Open Beta Cards */
.feature-card.upcoming[b-vpckkuqr0a] {
    background: rgba(15, 20, 30, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

    .feature-card.upcoming:hover[b-vpckkuqr0a] {
        border: 1px dashed var(--accent);
        background: rgba(0, 229, 255, 0.05);
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-card.upcoming .card-icon[b-vpckkuqr0a] {
        filter: grayscale(100%) opacity(0.5);
        transition: all 0.3s ease;
    }

    .feature-card.upcoming:hover .card-icon[b-vpckkuqr0a] {
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4)) grayscale(0%) opacity(1);
    }

.detailed-features[b-vpckkuqr0a] {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10vh;
}

.features-grid[b-vpckkuqr0a] {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
}

.feature-card[b-vpckkuqr0a] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 2rem;
}

    .feature-card:hover[b-vpckkuqr0a] {
        border-color: var(--border-hover);
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

.card-content[b-vpckkuqr0a] {
    padding: 1.8rem;
    text-align: left;
}

.card-icon[b-vpckkuqr0a] {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.feature-card h3[b-vpckkuqr0a] {
    font-size: 1.15rem;
    margin: 0 0 0.8rem 0;
    color: var(--text-main);
    font-weight: 700;
}

.feature-card p[b-vpckkuqr0a] {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   Roadmap Timeline
   ========================================= */
.roadmap-section[b-vpckkuqr0a] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 10vh auto;
    text-align: center;
}

.roadmap-header[b-vpckkuqr0a] {
    font-size: 2.5rem;
    margin-bottom: 6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.roadmap-timeline[b-vpckkuqr0a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 18px;
    margin: 4rem 2rem;
}

    .roadmap-timeline[b-vpckkuqr0a]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--border);
        transform: translateY(-50%);
        z-index: 0;
    }

    .roadmap-timeline[b-vpckkuqr0a]::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 50%;
        height: 2px;
        background: var(--accent);
        transform: translateY(-50%);
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
        z-index: 0;
    }

.timeline-step[b-vpckkuqr0a] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-node[b-vpckkuqr0a] {
    width: 18px;
    height: 18px;
    background: var(--bg-main);
    border: 2px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-date[b-vpckkuqr0a] {
    position: absolute;
    top: -3rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.timeline-title[b-vpckkuqr0a] {
    position: absolute;
    bottom: -3rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.timeline-step.complete .timeline-node[b-vpckkuqr0a] {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.timeline-step.complete .timeline-title[b-vpckkuqr0a] {
    color: var(--text-main);
}

.timeline-step.active .timeline-node[b-vpckkuqr0a] {
    background: var(--bg-main);
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.15);
    animation: pulseTimeline-b-vpckkuqr0a 2s infinite;
}

.timeline-step.active .timeline-title[b-vpckkuqr0a] {
    color: var(--text-main);
}

/* =========================================
   Modals / Popups (Base Styles)
   ========================================= */
.popup-overlay[b-vpckkuqr0a] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 4, 7, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Boosted to ensure it sits above everything */
    animation: fadeIn-b-vpckkuqr0a 0.3s ease;
}

.popup-content[b-vpckkuqr0a] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    animation: scaleUp-b-vpckkuqr0a 0.3s ease;
    position: relative;
}

.popup-icon[b-vpckkuqr0a] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.popup-content h3[b-vpckkuqr0a] {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.popup-close-btn[b-vpckkuqr0a] {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

    .popup-close-btn:hover[b-vpckkuqr0a] {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
        transform: translateY(-2px);
    }

/* =========================================
   Gamification / Referral Section
   ========================================= */
.queue-text[b-vpckkuqr0a] {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.4;
}

    .queue-text strong[b-vpckkuqr0a] {
        display: block;
        color: var(--accent);
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: -1px;
        margin-top: 0.5rem;
        text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    }

.referral-box[b-vpckkuqr0a] {
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.ref-header[b-vpckkuqr0a] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .ref-header p[b-vpckkuqr0a] {
        margin: 0 !important;
        font-weight: 600;
        color: var(--text-main);
        font-size: 0.95rem;
    }

.ref-input-group[b-vpckkuqr0a] {
    display: flex;
    align-items: stretch;
    background: #000000;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

    .ref-input-group:hover[b-vpckkuqr0a] {
        border-color: rgba(0, 229, 255, 0.4);
    }

    .ref-input-group input[b-vpckkuqr0a] {
        flex-grow: 1;
        background: transparent;
        border: none;
        color: var(--accent);
        padding: 0.8rem 1rem;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        font-size: 0.9rem;
        outline: none;
        width: 100%;
    }

.ref-btn[b-vpckkuqr0a] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--text-main);
    color: #000;
    border: none;
    padding: 0 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .ref-btn:hover[b-vpckkuqr0a] {
        background: var(--accent);
        box-shadow: -5px 0 15px rgba(0, 229, 255, 0.2);
    }

    .ref-btn:active[b-vpckkuqr0a] {
        transform: scale(0.98);
    }

    .ref-btn.copied[b-vpckkuqr0a] {
        background: #00e676; /* Neon success green */
        color: #000;
        box-shadow: -5px 0 15px rgba(0, 230, 118, 0.2);
    }

/* =========================================
   Contact Form Modal & Footer Button
   ========================================= */
.footer-link-btn[b-vpckkuqr0a] {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

    .footer-link-btn:hover[b-vpckkuqr0a] {
        color: var(--accent);
        transform: translateY(-2px);
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    }

.contact-modal[b-vpckkuqr0a] {
    position: relative;
    text-align: left;
}

.modal-close-x[b-vpckkuqr0a] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

    .modal-close-x:hover[b-vpckkuqr0a] {
        color: var(--accent);
    }

.contact-form[b-vpckkuqr0a] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-input[b-vpckkuqr0a] {
    width: 100%;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

    .contact-input:focus[b-vpckkuqr0a] {
        border-color: var(--accent);
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
    }

.contact-textarea[b-vpckkuqr0a] {
    resize: vertical;
    min-height: 120px;
}

.submit-btn[b-vpckkuqr0a] {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.spinner[b-vpckkuqr0a] {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin-b-vpckkuqr0a 0.8s linear infinite;
}

@keyframes spin-b-vpckkuqr0a {
    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes pulseTimeline-b-vpckkuqr0a {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.3);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

@keyframes fadeIn-b-vpckkuqr0a {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp-b-vpckkuqr0a {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* =========================================
   Responsive Overrides
   ========================================= */
@media (max-width: 1024px) {
    .features-grid[b-vpckkuqr0a] {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .roadmap-timeline[b-vpckkuqr0a] {
        flex-direction: column;
        height: auto;
        gap: 5rem;
        margin: 2rem auto;
    }

        .roadmap-timeline[b-vpckkuqr0a]::before {
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }

        .roadmap-timeline[b-vpckkuqr0a]::after {
            top: 0;
            left: 50%;
            width: 2px;
            height: 50%;
            transform: translateX(-50%);
        }

    .timeline-date[b-vpckkuqr0a] {
        top: 50%;
        right: calc(50% + 1.5rem);
        transform: translateY(-50%);
    }

    .timeline-title[b-vpckkuqr0a] {
        top: 50%;
        left: calc(50% + 1.5rem);
        bottom: auto;
        transform: translateY(-50%);
    }
}

@media (max-width: 600px) {
    .features-grid[b-vpckkuqr0a] {
        column-count: 1;
    }
}
/* /Components/Pages/privacy.razor.rz.scp.css */
.privacy-container[b-bpmv84uudz] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 4rem;
    max-width: 900px;
    width: 100%;
    margin-top: 8vh;
    margin-bottom: 8vh;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.privacy-header[b-bpmv84uudz] {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.back-link[b-bpmv84uudz] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

    .back-link:hover[b-bpmv84uudz] {
        color: var(--accent);
    }

.privacy-header h1[b-bpmv84uudz] {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1px;
}

.last-updated[b-bpmv84uudz] {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.privacy-content[b-bpmv84uudz] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-section[b-bpmv84uudz] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.section-icon[b-bpmv84uudz] {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.section-text h2[b-bpmv84uudz] {
    font-size: 1.15rem;
    color: var(--text-main);
    margin: 0 0 0.8rem 0;
    font-weight: 700;
}

.section-text p[b-bpmv84uudz] {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-container[b-bpmv84uudz] {
        padding: 2.5rem 1.5rem;
    }

    .back-link[b-bpmv84uudz] {
        position: relative;
        top: 0;
        transform: none;
        margin-bottom: 2rem;
        display: inline-flex;
    }

    .policy-section[b-bpmv84uudz] {
        flex-direction: column;
        gap: 1rem;
    }
}
