
:root {
    --accent: #f1b2eb;
    --accent-hover: #f7c6f2;
    --accent-glow: rgba(241, 178, 235, 0.1);
    --accent-soft: rgba(241, 178, 235, 0.08);
    --accent-border: rgba(255, 255, 255, 0.1);
    
    --bg-base: #0c0a12;
    --bg-panel: rgba(18, 14, 26, 0.52);
    --bg-panel-hover: rgba(26, 20, 38, 0.68);
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(241, 178, 235, 0.3);

    --text-main: #FFFFFF;
    --text-muted: #b9b3c4;
    --text-dark: #7e788c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-base);
    background-image: url('/img/bg_cherry.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.5;
}

/* Light subtle vignette overlay so cherry trees and pink sky are clearly visible */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 25%, 
        rgba(10, 8, 14, 0.15) 0%, 
        rgba(8, 7, 12, 0.35) 50%, 
        rgba(6, 5, 10, 0.65) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Sakura Petals Canvas */
#sakuraCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ================= NAVBAR ================= */
.navbar-wrap {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    transition: transform 0.3s ease;
}

.navbar {
    width: 100%;
    max-width: 1100px;
    height: 60px;
    background: rgba(14, 12, 20, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 8, 16, 0.9);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(241, 178, 235, 0.1);
    border-color: rgba(241, 178, 235, 0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s ease;
}
.nav-brand:hover {
    transform: scale(1.02);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f1b2eb, #d889d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0b10;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 0 14px var(--accent-glow);
}

.nav-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.nav-ver-pill {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--accent-border);
    font-family: 'JetBrains Mono', monospace;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 2px;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost-nav {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--border-dim);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-ghost-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-accent-nav {
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    color: #120e15;
    background: var(--accent);
    text-decoration: none;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-accent-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 178, 235, 0.55);
    background: var(--accent-hover);
}

.nav-profile-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 6px;
    background: rgba(241, 178, 235, 0.12);
    border: 1px solid rgba(241, 178, 235, 0.35);
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.25s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.nav-profile-pill:hover {
    background: rgba(241, 178, 235, 0.24);
    border-color: rgba(241, 178, 235, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(241, 178, 235, 0.4);
    color: #fff;
}
.nav-profile-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #f1b2eb;
    box-shadow: 0 0 10px rgba(241, 178, 235, 0.5);
}
.nav-profile-name {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
}
.nav-role-tag {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(241, 178, 235, 0.25);
    color: #f1b2eb;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-role-tag.nav-role-admin {
    background: rgba(244, 63, 94, 0.25);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.4);
}
.nav-logout-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #948a9c;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}
.nav-logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #f87171;
    transform: translateY(-1px);
}

/* ================= PAGE CONTAINER ================= */
.page-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 130px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* ================= SCROLL REVEAL ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* Pulse animation - softened subtle breathing */
@keyframes glowPulse {
    0% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35); }
    50% { box-shadow: 0 8px 24px rgba(241, 178, 235, 0.18); }
    100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35); }
}

.pulse-glow {
    animation: glowPulse 3s infinite ease-in-out;
}

/* ================= HERO ================= */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 30px 0 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.2px;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease;
}
.hero-badge:hover {
    transform: scale(1.03);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.hero-title .gradient-text {
    color: #f7c6f2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-tagline {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(13px, 2vw, 17px);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(241, 178, 235, 0.12);
    border: 1px solid rgba(241, 178, 235, 0.25);
    padding: 8px 24px;
    border-radius: 999px;
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    margin-top: -6px;
}

.hero-subtitle {
    font-size: clamp(15.5px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 660px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--accent);
    color: #120e15;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}
.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    background: var(--accent-hover);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    color: var(--text-main);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--border-dim);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ================= SECTION HEADERS ================= */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.sh-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Unbounded', sans-serif;
}
.sh-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.sh-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 540px;
}

/* ================= FROSTED GLASS CARDS (КАК КАРТОЧКА) ================= */
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.f-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-dim);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}
.f-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
    background: var(--bg-panel-hover);
}

.f-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.f-card-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.f-card-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================= SERVERS ================= */
.servers-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.servers-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.servers-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.srv-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--bg-panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-dim);
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.srv-badge:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.srv-badge img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

/* ================= PRICING ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.plan-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
    background: var(--bg-panel-hover);
}

.plan-card.featured {
    border-color: rgba(241, 178, 235, 0.5);
    background: rgba(30, 20, 42, 0.65);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.plan-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #120e15;
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.plan-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.plan-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.plan-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
}
.plan-period {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text-muted);
    flex-grow: 1;
}
.plan-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-list li i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: var(--accent);
    border: none;
    color: #120e15;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-plan:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* ================= FAQ ================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
}

.faq-card {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.faq-card:hover {
    border-color: var(--border-hover);
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-question i {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-card.open .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}
.faq-card.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= DOWNLOAD BANNER ================= */
.dl-banner {
    background: rgba(24, 18, 36, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}
.dl-banner:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(241, 178, 235, 0.18);
}
.dl-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dl-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.dl-sub {
    font-size: 14px;
    color: var(--text-muted);
}
.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: var(--accent);
    color: #120e15;
    font-size: 14.5px;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 18px var(--accent-glow);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.dl-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--accent-hover);
    box-shadow: 0 8px 26px rgba(241, 178, 235, 0.65);
}

/* ================= FOOTER ================= */
.footer {
    border-top: 1px solid var(--border-dim);
    padding: 40px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-socials {
    display: flex;
    gap: 14px;
}
.f-soc-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 18px;
}
.f-soc-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-2px);
}
.footer-bot {
    font-size: 12px;
    color: var(--text-dark);
    text-align: center;
}

/* ================= AUTH MODAL (ГДЕ ЛОГИН И ПАРОЛЬ) ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 6, 12, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal-overlay.open {
    display: flex;
    animation: modalFadeIn 0.2s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    width: 100%;
    max-width: 410px;
    background: rgba(22, 16, 32, 0.78);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-hover);
    border-radius: 22px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(241, 178, 235, 0.25);
    position: relative;
    animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.modal-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}
.modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}
.modal-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}
.m-tab {
    flex: 1;
    padding: 9px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 9px;
    transition: all 0.15s ease;
}
.m-tab.active {
    background: var(--accent);
    color: #120e15;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(241, 178, 235, 0.4);
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    outline: none;
    transition: all 0.2s ease;
}
.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
    background: rgba(255, 255, 255, 0.1);
}
.btn-submit-modal {
    padding: 14px;
    border-radius: 12px;
    background: var(--accent);
    color: #120e15;
    font-family: 'Unbounded', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-submit-modal:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(241, 178, 235, 0.65);
}

/* Responsive */
@media (max-width: 860px) {
    .nav-links { display: none; }
    .features-bento { grid-template-columns: 1fr; }
    .features-bento .f-card { grid-column: auto !important; }
    .pricing-grid { grid-template-columns: 1fr; }
    .dl-banner { flex-direction: column; text-align: center; }
}

/* ================= DELTA CLIENT STYLE 2-COLUMN AUTH CARD (PINK KOTONOHA THEME) ================= */
.delta-auth-window {
    width: 100%;
    max-width: 780px;
    height: 490px;
    background: #0d0a14;
    border-radius: 22px;
    border: 1px solid rgba(241, 178, 235, 0.22);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(241, 178, 235, 0.12);
    display: flex;
    padding: 12px;
    overflow: hidden;
}

.delta-banner-card {
    position: relative;
    flex: 0 0 316px;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #120e1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 24px;
    border: 1px solid rgba(241, 178, 235, 0.15);
}
.delta-banner-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.55) contrast(1.1) saturate(0.9);
    transform: scale(1.04);
    z-index: 1;
}
.delta-banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 10, 20, 0.35) 0%, rgba(13, 10, 20, 0.8) 65%, rgba(10, 8, 16, 0.96) 100%);
    z-index: 2;
}
.delta-banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.delta-logo-wrap {
    width: 68px;
    height: 68px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.delta-logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(241, 178, 235, 0.12);
    border: 1.5px solid rgba(241, 178, 235, 0.4);
    box-shadow: 0 0 25px rgba(241, 178, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.delta-logo-svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(241, 178, 235, 0.8));
}
.delta-banner-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 17.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
}
.delta-banner-subtitle {
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(241, 178, 235, 0.65);
    line-height: 1.45;
    max-width: 220px;
    margin-top: 2px;
}

.delta-form-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 32px 20px 28px;
}
.delta-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
}
.delta-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 15px;
}
.delta-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.delta-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
}
.delta-forgot {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s;
}
.delta-forgot:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
.delta-input-box {
    height: 48px;
    border-radius: 14px;
    background: rgba(22, 17, 32, 0.85);
    border: 1px solid rgba(241, 178, 235, 0.2);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.delta-input-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}
.delta-icon {
    width: 18px;
    height: 18px;
    color: #787184;
    flex-shrink: 0;
}
.delta-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}
.delta-input::placeholder {
    color: #787184;
}
.delta-eye-btn {
    background: transparent;
    border: none;
    color: #787184;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.15s;
}
.delta-eye-btn:hover {
    color: #ffffff;
}
.delta-btn-submit {
    height: 48px;
    width: 100%;
    border-radius: 14px;
    background: linear-gradient(135deg, #f1b2eb 0%, #df94d7 100%);
    border: none;
    color: #120e15;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px var(--accent-glow);
    margin-top: 6px;
}
.delta-btn-submit:hover {
    background: linear-gradient(135deg, #f7c6f2 0%, #e6a2de 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(241, 178, 235, 0.65);
}
.delta-btn-submit:active {
    transform: translateY(1px);
}
.delta-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-muted);
}
.delta-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}
.delta-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .delta-auth-window {
        flex-direction: column;
        height: auto;
    }
    .delta-banner-card {
        display: none;
    }
    .delta-form-area {
        padding: 24px 16px;
    }
}

/* ================= PAGE PRELOADER (GIF + MINIMAL DOTS) ================= */
.page-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #09070d;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.preloader-gif {
    max-width: 280px;
    width: 75vw;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
    object-fit: cover;
}

.preloader-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent, #f1b2eb);
    letter-spacing: 1.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: baseline;
    user-select: none;
}

.preloader-dots {
    display: inline-block;
    width: 30px;
    text-align: left;
    font-family: 'JetBrains Mono', 'Unbounded', monospace;
    font-size: 20px;
    color: var(--accent, #f1b2eb);
}

