/* ============================================
   SCYDE BOT - COMPLETE UNIFIED CSS
   ============================================ */

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === GLOBAL === */
html {
    scroll-behavior: smooth;
    font-size: 18px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* header.php JS adds .nav-hidden (not .hidden) */
.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.nav-brand span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fbbf24;
    white-space: nowrap;
}

/* ── Desktop menu ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-close { display: none; }
.nav-mobile-brand { display: none; }
.nav-mobile-extra { display: none; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.nav-link i { font-size: 0.75rem; }

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

.nav-link-premium { color: #fbbf24; }

/* Nav Buttons */
.btn-add-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 4px;
    text-decoration: none;
}

.btn-add-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 4px;
    text-decoration: none;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

/* Guest button group */
.nav-guest-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── User Dropdown ── */
.nav-user-dropdown {
    position: relative;
    margin-left: 6px;
}

.nav-user-button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-user-button:hover {
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.35);
}

.nav-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    object-fit: cover;
}

.nav-chevron {
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.nav-user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: #111111;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* header.php JS toggles .open on user menu */
.nav-user-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-chevron-rotate {
    transform: rotate(180deg);
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 14px;
}

.user-menu-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    object-fit: cover;
}

.user-menu-header strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.user-menu-header span {
    font-size: 0.68rem;
    color: #64748b;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #cbd5e1;
    font-size: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.user-menu-item:hover {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

.user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 0;
}

/* ── Hamburger button ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 0;
}

.mobile-toggle:hover {
    background: rgba(245, 158, 11, 0.2);
}

/* Three-line hamburger → X animation */
.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Backdrop overlay ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 997;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.nav-overlay.active {
    display: block;
}

/* ============================================
   NAVIGATION — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

    .nav-container { padding: 0 16px; }

    /* Show hamburger */
    .mobile-toggle { display: flex; }

    /* Hide desktop-only auth buttons — shown inside drawer */
    .nav-guest-buttons { display: none; }
    .nav-user-dropdown { display: none; }

    /* ── Slide-in drawer from the LEFT ── */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(80vw, 300px);
        height: 100vh;
        background: #0a0a0a;
        border-right: 1px solid rgba(245, 158, 11, 0.18);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 18px 16px 32px;
        gap: 2px;
        /* header.php JS uses .open — match it */
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 6px 0 40px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
    }

    /* header.php JS adds .open — this is the trigger */
    .nav-menu.open {
        left: 0;
    }

    /* Close (×) button */
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        background: none;
        border: none;
        color: #94a3b8;
        font-size: 1.1rem;
        padding: 4px 2px 14px;
        cursor: pointer;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(245, 158, 11, 0.08);
        flex-shrink: 0;
    }

    /* Mobile brand inside drawer */
    .nav-mobile-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 4px 16px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(245, 158, 11, 0.08);
        width: 100%;
        flex-shrink: 0;
    }

    .nav-mobile-brand span {
        font-size: 0.9rem;
        font-weight: 700;
        color: #fbbf24;
    }

    /* Primary nav links */
    .nav-links-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2px;
        margin-bottom: 8px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    /* Extra links section */
    .nav-mobile-extra {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 2px;
        padding-top: 10px;
        border-top: 1px solid rgba(245, 158, 11, 0.08);
        margin-bottom: 8px;
    }

    .nav-mobile-extra-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        color: #64748b;
        font-size: 0.82rem;
        border-radius: 10px;
        transition: all 0.2s;
        text-decoration: none;
    }

    .nav-mobile-extra-link:hover,
    .nav-mobile-extra-link.active {
        color: #fbbf24;
        background: rgba(245, 158, 11, 0.08);
    }

    /* Auth section at bottom of drawer */
    .nav-auth {
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid rgba(245, 158, 11, 0.08);
        width: 100%;
    }

    /* Show user dropdown inside drawer */
    .nav-user-dropdown {
        display: block;
        width: 100%;
        margin-left: 0;
    }

    .nav-user-button {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 14px;
    }

    /* User menu becomes static inline inside drawer */
    .nav-user-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(245, 158, 11, 0.08);
        margin-top: 6px;
        display: none;
        border-radius: 10px;
        min-width: unset;
    }

    .nav-user-menu.open {
        display: block;
    }

    /* Show guest buttons stacked inside drawer */
    .nav-guest-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn-login,
    .btn-add-discord {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        padding: 13px 18px;
        font-size: 0.88rem;
    }

    /* Brand text size */
    .nav-brand span { font-size: 0.95rem; }
    .nav-brand img  { width: 30px; height: 30px; }
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 620px;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 24px;
}

.hero-title-modern {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.gradient-text,
.gradient-text-modern {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-modern {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-stats-inline {
    display: flex;
    gap: 36px;
    margin-bottom: 32px;
}

.stat-inline .stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.stat-inline .stat-text {
    font-size: 0.7rem;
    color: #64748b;
}

.hero-buttons-modern {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 17px 34px;
    font-size: 0.9rem;
}

.hero-trust {
    font-size: 0.72rem;
    color: #64748b;
}

.hero-trust i {
    color: #10b981;
    margin-right: 4px;
}

/* Hero Visual (Right Side) */
.hero-right {
    position: relative;
    height: 480px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.card-1 {
    top: 8%;
    left: 5%;
    animation: floatCard 3s ease-in-out infinite;
}

.card-2 {
    top: 42%;
    right: 5%;
    animation: floatCard 3.5s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 12%;
    left: 15%;
    animation: floatCard 3.2s ease-in-out infinite 1s;
}

.card-icon {
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    flex-shrink: 0;
}

.card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.7rem;
    color: #94a3b8;
}

.hero-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */

.trusted-section {
    padding: 36px 0;
    border-top: 1px solid rgba(245, 158, 11, 0.08);
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    position: relative;
    z-index: 1;
}

.trusted-text {
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-item {
    padding: 10px 20px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
}

/* ============================================
   SECTIONS BASE
   ============================================ */

section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.section-header-modern {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-badge-modern {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title-modern {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle-modern {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Old section header (kept for compatibility) */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ============================================
   STATS GRID
   ============================================ */

.stats-wrapper {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    background: rgba(25, 25, 25, 0.95);
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(245, 158, 11, 0.15);
}

.stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fbbf24;
}

.stat-value {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-modern-section {
    padding: 90px 0;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.feature-modern-card {
    position: relative;
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 34px 26px;
    transition: all 0.3s;
    z-index: 1;
}

.feature-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.28);
}

.featured-card {
    border: 2px solid rgba(245, 158, 11, 0.38);
    background: rgba(22, 18, 10, 0.85);
}

.feature-badge-popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.58rem;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
}

.feature-modern-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.feature-modern-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-modern-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 18px;
}

.feature-list-modern {
    margin-bottom: 20px;
}

.feature-list-modern li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.75rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-list-modern li:last-child {
    border-bottom: none;
}

.feature-list-modern li i {
    color: #10b981;
    font-size: 0.68rem;
    flex-shrink: 0;
}

.feature-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 700;
    transition: gap 0.3s;
}

.feature-link-modern:hover {
    gap: 12px;
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    padding: 90px 0;
    background: rgba(245, 158, 11, 0.025);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 36px;
}

.why-features {
    margin-bottom: 36px;
}

.why-feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    font-size: 1.2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-content p {
    font-size: 0.78rem;
    color: #94a3b8;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-showcase-item {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s;
}

.stat-showcase-item:hover {
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-3px);
}

.stat-showcase-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-showcase-label {
    font-size: 0.72rem;
    color: #64748b;
}

/* ============================================
   USE CASES
   ============================================ */

.use-cases-section {
    padding: 90px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.use-case-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.28);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.12);
}

.use-case-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.use-case-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 18px;
    padding: 32px 26px;
    transition: all 0.3s;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.14);
}

.pricing-card.featured {
    border: 2px solid rgba(245, 158, 11, 0.42);
    background: rgba(22, 18, 10, 0.88);
}

.popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 22px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.plan-description {
    font-size: 0.72rem;
    color: #94a3b8;
}

.plan-price {
    text-align: center;
    margin: 22px 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
}

.period {
    font-size: 0.7rem;
    color: #94a3b8;
}

.plan-features {
    margin: 22px 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.75rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #10b981;
    font-size: 0.72rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-modern-section {
    padding: 90px 0;
}

.cta-modern-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.04) 100%);
    border: 2px solid rgba(245, 158, 11, 0.18);
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
}

.cta-modern-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-modern-text {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 34px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-modern-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Old CTA (compatibility) */
.cta-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 20px;
}

.cta-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #000;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #080808;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    padding: 60px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-brand h3 {
    font-size: 0.9rem;
    color: #fbbf24;
    margin-bottom: 0;
}

.footer-brand p {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-links h4 {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.footer-links a i {
    font-size: 0.55rem;
    color: rgba(245, 158, 11, 0.4);
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-links a:hover i {
    color: #fbbf24;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.68rem;
    color: #475569;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 0.68rem;
    color: #475569;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fbbf24;
}

.footer-bottom-links span {
    color: #334155;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
}

/* ============================================
   DASHBOARD HERO
   ============================================ */

.dashboard-hero {
    padding: 60px 0 40px;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 20px;
}

.dashboard-welcome-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(245, 158, 11, 0.4);
    object-fit: cover;
    flex-shrink: 0;
}

.dashboard-welcome-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.dashboard-welcome-text p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
}

/* ============================================
   DASHBOARD SECTIONS
   ============================================ */

.dashboard-section {
    padding: 0 0 50px;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-section-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ============================================
   SERVERS GRID
   ============================================ */

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.server-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s;
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.14);
}

.server-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.server-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.server-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.server-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.server-members {
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

/* Add Bot Card */
.server-card-add {
    border: 2px dashed rgba(245, 158, 11, 0.25);
    cursor: pointer;
}

.server-card-add-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 16px 0;
    height: 100%;
}

.server-add-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fbbf24;
}

.server-card-add h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.server-card-add p {
    font-size: 0.72rem;
    color: #94a3b8;
    margin: 0;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
}

.status-active {
    background: rgba(16, 185, 129, 0.14);
    color: #10b981;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.dashboard-empty {
    text-align: center;
    padding: 80px 20px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 16px;
}

.dashboard-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fbbf24;
}

.dashboard-empty h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dashboard-empty p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-empty-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   DASHBOARD STATS
   ============================================ */

.dashboard-stats-section {
    padding: 0 0 50px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.dashboard-stat-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.12);
}

.dsc-icon {
    font-size: 1.8rem;
    color: #fbbf24;
    margin-bottom: 12px;
}

.dsc-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.dsc-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   QUICK ACTIONS
   ============================================ */

.dashboard-actions-section {
    padding: 0 0 60px;
}

.dashboard-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.dashboard-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s;
}

.dashboard-action-card i {
    font-size: 1.6rem;
    color: #fbbf24;
}

.dashboard-action-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.12);
    color: #fff;
}

.dashboard-action-premium {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.06);
}

.dashboard-action-premium i {
    color: #f59e0b;
}

/* ============================================
   MANAGE PAGE
   ============================================ */

.manage-section {
    padding: 60px 0;
}

.manage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    padding: 22px 26px;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.manage-server-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.manage-server-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    border: 2px solid rgba(245, 158, 11, 0.28);
    object-fit: cover;
}

.manage-server-details h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.manage-server-details p {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tabs */
.manage-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.manage-tabs::-webkit-scrollbar {
    display: none;
}

.manage-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    margin-bottom: -2px;
}

.manage-tab:hover {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.04);
}

.manage-tab.active {
    color: #fbbf24;
    border-bottom-color: #fbbf24;
}

/* Tab Content */
.manage-content {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    padding: 36px;
    min-height: 500px;
}

.manage-tab-content {
    display: none;
}

.manage-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.manage-tab-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Forms */
.manage-form {
    max-width: 620px;
}

.form-group {
    margin-bottom: 26px;
}

.form-group > label:not(.toggle-label) {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 9px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 10px;
    color: #fff;
    font-size: 0.82rem;
    transition: all 0.3s;
    appearance: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.48);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08);
}

.form-group small {
    display: block;
    font-size: 0.68rem;
    color: #64748b;
    margin-top: 6px;
}

/* Range slider */
.form-group input[type="range"] {
    width: 100%;
    accent-color: #f59e0b;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #64748b;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s;
}

.toggle-label input:checked + .toggle-slider {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: transparent;
}

.toggle-label input:checked + .toggle-slider::before {
    left: 26px;
    background: #000;
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #ef4444;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .dashboard-welcome {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .dashboard-welcome-text h1 {
        font-size: 1.4rem;
    }

    .dashboard-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manage-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .manage-content {
        padding: 22px 18px;
    }

    .manage-tab {
        padding: 11px 14px;
        font-size: 0.72rem;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================
   BACKGROUND LAYERS
   ============================================ */

#gradient-canvas,
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal-element {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 10px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

/* ============================================
   HERO EXTENSIONS (new cards & secondary glow)
   ============================================ */

.card-4 {
    top: 68%;
    right: 8%;
    animation: floatCard 3.8s ease-in-out infinite 1.5s;
}

.card-5 {
    top: 22%;
    right: 2%;
    animation: floatCard 3.1s ease-in-out infinite 0.8s;
}

.card-pulse {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.hero-glow-circle-secondary {
    position: absolute;
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 5s ease-in-out infinite 1s;
    pointer-events: none;
}

.hero-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 4px;
}

.hero-trust-row i {
    color: #10b981;
    margin-right: 5px;
}

/* ============================================
   TRUSTED TICKER (infinite scroll)
   ============================================ */

.trusted-label {
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trusted-ticker {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.ticker-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-item i {
    color: #fbbf24;
    font-size: 0.75rem;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURE CARD COLOR VARIANTS
   ============================================ */

.feature-icon-red    { background: rgba(239, 68, 68, 0.12);    color: #f87171; }
.feature-icon-purple { background: rgba(139, 92, 246, 0.12);   color: #a78bfa; }
.feature-icon-blue   { background: rgba(59, 130, 246, 0.12);   color: #60a5fa; }
.feature-icon-yellow { background: rgba(245, 158, 11, 0.12);   color: #fbbf24; }
.feature-icon-green  { background: rgba(16, 185, 129, 0.12);   color: #34d399; }
.feature-icon-teal   { background: rgba(20, 184, 166, 0.12);   color: #2dd4bf; }
.feature-icon-orange { background: rgba(249, 115, 22, 0.12);   color: #fb923c; }
.feature-icon-indigo { background: rgba(99, 102, 241, 0.12);   color: #818cf8; }

.feature-color-red    { --fc-accent: rgba(239, 68, 68, 0.18); }
.feature-color-purple { --fc-accent: rgba(139, 92, 246, 0.18); }
.feature-color-blue   { --fc-accent: rgba(59, 130, 246, 0.18); }
.feature-color-yellow { --fc-accent: rgba(245, 158, 11, 0.18); }
.feature-color-green  { --fc-accent: rgba(16, 185, 129, 0.18); }
.feature-color-teal   { --fc-accent: rgba(20, 184, 166, 0.18); }
.feature-color-orange { --fc-accent: rgba(249, 115, 22, 0.18); }
.feature-color-indigo { --fc-accent: rgba(99, 102, 241, 0.18); }

.feature-modern-card:hover {
    border-color: var(--fc-accent, rgba(245, 158, 11, 0.28));
    box-shadow: 0 14px 40px var(--fc-accent, rgba(245, 158, 11, 0.18));
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-section {
    padding: 90px 0;
    background: rgba(245, 158, 11, 0.015);
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-bottom: 50px;
}

.how-step-card {
    position: relative;
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 20px;
    padding: 38px 28px 30px;
    text-align: center;
    transition: all 0.3s;
}

.how-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.12);
}

.how-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 900;
    color: #000;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.06em;
}

.how-step-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fbbf24;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.how-step-card:hover .how-step-icon {
    background: rgba(245, 158, 11, 0.18);
    transform: scale(1.05);
}

.how-step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-step-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.65;
}

.how-step-arrow {
    display: none; /* shown via CSS on desktop */
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    color: rgba(245, 158, 11, 0.35);
    font-size: 1.1rem;
    z-index: 2;
}

.how-cta-row {
    text-align: center;
}

/* ============================================
   WHY SECTION — COMPARISON CARD
   ============================================ */

.comparison-card {
    margin-top: 28px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    gap: 0;
    padding: 12px 18px;
    background: rgba(245, 158, 11, 0.06);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.comparison-col {
    text-align: center;
}

.comparison-col.other { color: #64748b; }
.comparison-col.ours  { color: #fbbf24; }

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 90px 90px;
    gap: 0;
    padding: 11px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    align-items: center;
    transition: background 0.2s;
}

.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: rgba(245, 158, 11, 0.03); }

.comparison-feature {
    color: #cbd5e1;
}

.comparison-col.other i { color: #ef4444; }
.comparison-col.ours  i { color: #10b981; }

/* ============================================
   USE CASE TAGS
   ============================================ */

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 14px;
}

.use-case-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 0.04em;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 90px 0;
    background: rgba(245, 158, 11, 0.015);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.28);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 0.75rem;
}

.testimonial-quote {
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-meta strong {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.testimonial-meta span {
    font-size: 0.65rem;
    color: #64748b;
}

/* ============================================
   PREMIUM TEASER SECTION
   ============================================ */

.premium-teaser-section {
    padding: 90px 0;
}

.premium-teaser-box {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(22, 18, 10, 0.6) 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.premium-teaser-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.15) !important;
    border-color: rgba(245, 158, 11, 0.35) !important;
}

.premium-teaser-left h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 14px 0 16px;
}

.premium-teaser-left p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.premium-teaser-perks {
    margin-bottom: 30px;
}

.premium-teaser-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.8rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-teaser-perks li:last-child { border-bottom: none; }

.premium-teaser-perks li i {
    color: #10b981;
    font-size: 0.68rem;
    flex-shrink: 0;
}

/* Gold button */
.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* Price card inside premium teaser */
.premium-teaser-price-card {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid rgba(245, 158, 11, 0.35);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.price-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card-tier {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 14px;
    margin-top: 8px;
}

.price-card-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #94a3b8;
    margin-top: 8px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 0.78rem;
    color: #64748b;
    align-self: flex-end;
    margin-bottom: 8px;
}

.price-card-desc {
    font-size: 0.68rem;
    color: #64748b;
    margin-bottom: 22px;
}

.premium-teaser-price-card .btn-gold {
    width: 100%;
    justify-content: center;
}

/* ============================================
   CTA SECTION EXTENSIONS
   ============================================ */

.cta-trust-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 32px;
}

.cta-trust-row i {
    color: #10b981;
    margin-right: 5px;
}

/* ============================================
   PULSE DOT ANIMATION (shared)
   ============================================ */

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ============================================
   RESPONSIVE — NEW SECTIONS (tablet 1024px)
   ============================================ */

@media (max-width: 1024px) {
    .how-steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 50px;
    }

    .how-step-arrow { display: none; }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-teaser-box {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 32px;
    }

    .premium-teaser-right {
        max-width: 320px;
        margin: 0 auto;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 70px 70px;
    }
}

/* ============================================
   RESPONSIVE — NEW SECTIONS (mobile 768px)
   ============================================ */

@media (max-width: 768px) {
    .hero-trust-row {
        justify-content: center;
    }

    .how-steps-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-teaser-box {
        grid-template-columns: 1fr;
        padding: 28px 20px;
        gap: 28px;
    }

    .premium-teaser-left h2 {
        font-size: 1.5rem;
    }

    .premium-teaser-right {
        width: 100%;
        max-width: 100%;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-trust-row {
        gap: 14px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 60px 60px;
        font-size: 0.68rem;
    }

    .ticker-track {
        animation-duration: 18s;
    }
}

/* ============================================
   RESPONSIVE — NEW SECTIONS (small 400px)
   ============================================ */

@media (max-width: 400px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .premium-teaser-box {
        padding: 22px 14px;
    }
}


/* ============================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================ */

@media (max-width: 1024px) {
    html { font-size: 17px; }

    .hero-grid, .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-right {
        height: 360px;
    }

    .features-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================ */

@media (max-width: 768px) {
    html { font-size: 15px; overflow-x: hidden; }
    body { overflow-x: hidden; }

    /* Container */
    .container {
        padding: 0 18px;
    }

    /* Navbar */
    .nav-container {
        padding: 0 16px;
    }

    .nav-brand span {
        font-size: 0.95rem;
    }

    .nav-brand img {
        width: 30px;
        height: 30px;
    }

    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(80vw, 300px);
        height: 100vh;
        background: #0a0a0a;
        border-right: 1px solid rgba(245, 158, 11, 0.18);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 22px 18px;
        gap: 4px;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 6px 0 40px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Close button */
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        background: none;
        border: none;
        color: #94a3b8;
        font-size: 1.1rem;
        padding: 6px 4px 16px;
        cursor: pointer;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    }

    .nav-link {
        width: 100%;
        padding: 13px 16px;
        font-size: 0.92rem;
        border-radius: 10px;
    }

    .btn-add-discord,
    .btn-login {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 0.88rem;
        margin: 4px 0 0 0;
        border-radius: 10px;
    }

    /* User dropdown on mobile */
    .nav-user-dropdown {
        width: 100%;
    }

    .nav-user-button {
        width: 100%;
        justify-content: flex-start;
        margin-top: 6px;
        padding: 12px 16px;
    }

    .nav-user-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border: 1px solid rgba(245,158,11,0.08);
        margin-top: 6px;
        display: none;
        border-radius: 10px;
    }

    .nav-user-menu.active {
        display: block;
    }

    /* Show hamburger */
    .mobile-toggle {
        display: flex;
    }

    /* Sections */
    section {
        padding: 55px 0;
    }

    /* Hero */
    .hero-section-modern {
        padding: 95px 0 55px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-title-modern {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-description-modern {
        font-size: 0.88rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats-inline {
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .hero-buttons-modern {
        flex-direction: column;
        width: 100%;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    /* Sections */
    .section-title-modern,
    .section-title {
        font-size: 1.7rem;
    }

    .section-header-modern,
    .section-header {
        margin-bottom: 36px;
    }

    /* Features */
    .features-modern-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .use-case-card {
        padding: 22px 14px;
    }

    /* CTA */
    .cta-modern-box {
        padding: 40px 20px;
        border-radius: 18px;
    }

    .cta-modern-title {
        font-size: 1.6rem;
    }

    .cta-modern-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-modern-buttons .btn-modern {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer {
        padding: 44px 0 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Trusted */
    .trusted-logos {
        gap: 10px;
    }

    /* Dashboard */
    .manage-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 18px;
    }

    .manage-server-info {
        flex-direction: column;
        align-items: center;
    }

    .manage-content {
        padding: 20px 14px;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header h1 {
        font-size: 1.6rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   RESPONSIVE - SMALL PHONES (max 400px)
   ============================================ */

@media (max-width: 400px) {
    html { font-size: 14px; }

    .hero-title-modern { font-size: 1.75rem; }
    .section-title-modern { font-size: 1.5rem; }

    .stats-grid { grid-template-columns: 1fr; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .stats-showcase { grid-template-columns: 1fr; }
}

/* ============================================
   REDUCE MOTION (ACCESSIBILITY)
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PROFILE PAGE
   ============================================ */

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 32px 36px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 20px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(245, 158, 11, 0.4);
    object-fit: cover;
}

.profile-avatar-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid #0a0a0a;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.profile-discriminator {
    font-size: 0.85rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 6px;
}

.profile-id,
.profile-email {
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 4px;
    font-family: monospace;
}

.profile-email i {
    margin-right: 5px;
    color: rgba(245, 158, 11, 0.5);
}

.profile-badges {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

.badge-user {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #8b9cf7;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: #10b981;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #ef4444;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: start;
}

/* Profile Cards */
.profile-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    background: rgba(245, 158, 11, 0.04);
}

.profile-card-header i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.profile-card-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    flex: 1;
}

.card-header-count {
    font-size: 0.68rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 20px;
}

.profile-card-body {
    padding: 20px 22px;
}

/* Info Rows */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.info-value {
    font-size: 0.78rem;
    color: #e2e8f0;
    font-weight: 600;
    text-align: right;
}

.info-mono {
    font-family: monospace;
    font-size: 0.7rem;
    color: #94a3b8;
}

.badge-free {
    display: inline-flex;
    padding: 3px 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fbbf24;
}

/* Quick Links */
.quick-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 11px;
    transition: all 0.2s;
    margin-bottom: 4px;
    text-decoration: none;
}

.quick-link:hover {
    background: rgba(245, 158, 11, 0.07);
}

.quick-link-danger:hover {
    background: rgba(239, 68, 68, 0.07);
}

.quick-link-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 9px;
    color: #fbbf24;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.quick-link-danger .quick-link-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.quick-link-text {
    flex: 1;
}

.quick-link-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2px;
}

.quick-link-text small {
    font-size: 0.68rem;
    color: #64748b;
}

.quick-link-arrow {
    font-size: 0.65rem;
    color: #475569;
}

/* Guild List */
.guild-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guild-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 11px;
    transition: all 0.2s;
}

.guild-item:hover {
    background: rgba(245, 158, 11, 0.06);
}

.guild-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.guild-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guild-icon-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #000;
}

.guild-info {
    flex: 1;
    min-width: 0;
}

.guild-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guild-role {
    font-size: 0.65rem;
    color: #fbbf24;
}

.guild-manage-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 7px;
    color: #fbbf24;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
    flex-shrink: 0;
    text-decoration: none;
}

.guild-manage-btn:hover {
    background: rgba(245, 158, 11, 0.18);
}

.more-servers {
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
    padding: 12px 0 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 30px 20px;
    color: #64748b;
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
    color: #334155;
}

.empty-state p {
    font-size: 0.8rem;
}

/* Premium Card */
.profile-premium-card {
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(22, 18, 10, 0.85);
}

.premium-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.premium-status {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(245, 158, 11, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.premium-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    flex-shrink: 0;
}

.premium-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.premium-text p {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.5;
}

.premium-perks {
    margin-bottom: 18px;
}

.premium-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.78rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-perks li:last-child {
    border-bottom: none;
}

.premium-perks li i {
    color: #10b981;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ============================================
   PROFILE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
        gap: 18px;
    }

    .profile-badges {
        justify-content: center;
    }

    .profile-actions {
        flex-direction: row;
        width: 100%;
    }

    .profile-actions .btn,
    .profile-actions .btn-danger {
        flex: 1;
        justify-content: center;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HERO (features, commands, premium)
   ============================================ */

.page-hero {
    padding: 130px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-hero-glow,
.premium-hero-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 16px 0 20px;
    letter-spacing: -0.02em;
}

.page-hero-desc {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.page-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PREMIUM PAGE
   ============================================ */

.premium-hero {
    padding: 130px 0 70px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.premium-hero-content {
    position: relative;
    z-index: 1;
}

.premium-hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 16px 0 20px;
    letter-spacing: -0.02em;
}

.premium-hero-desc {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.premium-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 16px;
}

.trust-stat {
    font-size: 0.78rem;
    color: #94a3b8;
}

.trust-stat span {
    font-size: 1rem;
    font-weight: 800;
    color: #fbbf24;
    margin-right: 4px;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.billing-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.billing-label.active {
    color: #fbbf24;
}

.billing-save {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.6rem;
    color: #10b981;
    margin-left: 6px;
    font-weight: 700;
}

.billing-switch {
    width: 50px;
    height: 26px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.billing-switch-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #f59e0b;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    transition: all 0.3s;
}

.billing-switch-thumb.active {
    left: 27px;
}

/* Pricing Cards New */
.pricing-section-main {
    padding: 0 0 90px;
    position: relative;
    z-index: 1;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1150px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card-new {
    position: relative;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.35s;
}

.pricing-card-new:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.28);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.1);
}

.pricing-card-featured {
    border: 2px solid rgba(245, 158, 11, 0.45);
    background: rgba(22, 16, 5, 0.95);
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.plan-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.62rem;
    font-weight: 800;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.plan-icon-free { background: rgba(100, 116, 139, 0.15); color: #94a3b8; }
.plan-icon-premium { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.plan-icon-enterprise { background: rgba(99, 102, 241, 0.15); color: #818cf8; }

.plan-name-new {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-desc-new {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 20px;
}

.plan-price-new {
    margin-bottom: 6px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fbbf24;
    transition: all 0.3s;
}

.price-period {
    font-size: 0.78rem;
    color: #64748b;
    margin-left: 4px;
}

.plan-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 22px 0;
}

.plan-features-new {
    margin-bottom: 28px;
}

.plan-features-new li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.78rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features-new li:last-child { border-bottom: none; }

.feature-yes i { color: #10b981; font-size: 0.7rem; }
.feature-no { opacity: 0.4; }
.feature-no i { color: #ef4444; font-size: 0.7rem; }

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.plan-btn-free {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.plan-btn-free:hover { background: rgba(255, 255, 255, 0.1); }

.plan-btn-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}
.plan-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
}

.plan-btn-enterprise {
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.28);
    color: #818cf8;
}
.plan-btn-enterprise:hover { background: rgba(99, 102, 241, 0.2); }

.pricing-note {
    text-align: center;
    font-size: 0.72rem;
    color: #475569;
    margin-top: 40px;
    line-height: 2;
}

.pricing-note i { color: #fbbf24; margin-right: 5px; }

/* Premium Features Big */
.premium-features-showcase {
    padding: 90px 0;
    background: rgba(245, 158, 11, 0.025);
}

.premium-features-big-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.premium-feature-big {
    display: flex;
    gap: 18px;
    padding: 26px 22px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    transition: all 0.3s;
    align-items: flex-start;
}

.premium-feature-big:hover {
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-3px);
}

.pfb-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.pfb-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.pfb-content p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    padding: 90px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.25);
}

.faq-item.open {
    border-color: rgba(245, 158, 11, 0.35);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 0.88rem;
    font-weight: 600;
}

.faq-icon {
    color: #fbbf24;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.7;
    padding: 0 22px;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.cta-crown {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    margin: 0 auto 24px;
}

/* ============================================
   FEATURES PAGE
   ============================================ */

.features-nav-section {
    padding: 0 0 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
}

.features-category-nav {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.cat-btn:hover {
    border-color: rgba(245, 158, 11, 0.28);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.06);
}

.cat-btn.active {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: #fbbf24;
}

.features-full-section {
    padding: 70px 0;
}

.features-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-full-card {
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
}

.feature-full-card:hover {
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.1);
}

.ffc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ffc-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ffc-orange { background: rgba(245, 158, 11, 0.14); color: #f59e0b; }
.ffc-blue   { background: rgba(59, 130, 246, 0.14); color: #60a5fa; }
.ffc-green  { background: rgba(16, 185, 129, 0.14); color: #10b981; }
.ffc-yellow { background: rgba(234, 179, 8, 0.14);  color: #eab308; }
.ffc-purple { background: rgba(139, 92, 246, 0.14); color: #a78bfa; }
.ffc-red    { background: rgba(239, 68, 68, 0.14);  color: #f87171; }
.ffc-teal   { background: rgba(20, 184, 166, 0.14); color: #2dd4bf; }
.ffc-pink   { background: rgba(236, 72, 153, 0.14); color: #f472b6; }

.ffc-badge {
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ffc-badge-premium {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.28);
    color: #a78bfa;
}

.feature-full-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-full-card p {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}

.ffc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ffc-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    font-size: 0.65rem;
    color: #94a3b8;
}

.ffc-features span i {
    color: #10b981;
    font-size: 0.6rem;
}

/* Features Stats Bar */
.features-stats-bar {
    padding: 50px 0;
    background: rgba(245, 158, 11, 0.04);
    border-top: 1px solid rgba(245, 158, 11, 0.08);
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
}

.stats-bar-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.stats-bar-item i {
    font-size: 1.4rem;
    color: #fbbf24;
}

.stats-bar-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

/* ============================================
   COMMANDS PAGE
   ============================================ */

.commands-search-wrapper {
    max-width: 580px;
    margin: 32px auto 0;
}

.commands-search {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 14px;
    transition: all 0.3s;
}

.commands-search:focus-within {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.08);
}

.commands-search i {
    color: #64748b;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.commands-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.88rem;
}

.commands-search input::placeholder { color: #475569; }

.commands-search kbd {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.65rem;
    color: #64748b;
    font-family: inherit;
}

.commands-filter-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    position: sticky;
    top: 58px;
    z-index: 50;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
}

.commands-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.commands-category-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.commands-category-tabs::-webkit-scrollbar { display: none; }

.cmd-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.cmd-tab:hover {
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.25);
}

.cmd-tab.active {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: #fbbf24;
}

.cmd-tab-count {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: 0.62rem;
}

.cmd-tab.active .cmd-tab-count {
    background: rgba(245, 158, 11, 0.2);
}

.commands-filter-info {
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
    flex-shrink: 0;
}

.commands-filter-info span {
    color: #fbbf24;
    font-weight: 700;
}

.commands-list-section {
    padding: 50px 0 90px;
}

.commands-category-block {
    margin-bottom: 50px;
}

.commands-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.commands-cat-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.commands-cat-orange { background: rgba(245, 158, 11, 0.14); color: #f59e0b; }
.commands-cat-blue   { background: rgba(59, 130, 246, 0.14); color: #60a5fa; }
.commands-cat-green  { background: rgba(16, 185, 129, 0.14); color: #10b981; }
.commands-cat-yellow { background: rgba(234, 179, 8, 0.14);  color: #eab308; }
.commands-cat-purple { background: rgba(139, 92, 246, 0.14); color: #a78bfa; }
.commands-cat-teal   { background: rgba(20, 184, 166, 0.14); color: #2dd4bf; }

.commands-category-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.commands-cat-count {
    font-size: 0.7rem;
    color: #64748b;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.command-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 13px;
    padding: 18px 18px 14px;
    transition: all 0.25s;
    gap: 12px;
}

.command-card:hover {
    border-color: rgba(245, 158, 11, 0.28);
    background: rgba(20, 16, 5, 0.95);
    transform: translateY(-2px);
}

.command-name-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.command-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
    padding: 3px 10px;
    border-radius: 7px;
    font-family: 'Courier New', monospace;
}

.command-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 20px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #a78bfa;
}

.command-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.command-usage {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.usage-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.usage-code {
    font-size: 0.7rem;
    color: #64748b;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 8px;
    border-radius: 6px;
}

.commands-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: #475569;
    text-align: center;
    gap: 14px;
}

.commands-no-results i {
    font-size: 3rem;
    color: #334155;
}

.commands-no-results h3 {
    font-size: 1.1rem;
    color: #64748b;
}

.commands-no-results p {
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE - PREMIUM/FEATURES/COMMANDS
   ============================================ */

@media (max-width: 1024px) {
    .pricing-cards-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pricing-card-featured { transform: scale(1); }
    .pricing-card-featured:hover { transform: translateY(-6px); }
    .premium-features-big-grid { grid-template-columns: repeat(2, 1fr); }
    .features-full-grid { grid-template-columns: repeat(2, 1fr); }
    .commands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-hero-title, .premium-hero-title { font-size: 2.1rem; }
    .page-hero-btns { flex-direction: column; align-items: center; }
    .pricing-cards-grid { grid-template-columns: 1fr; max-width: 100%; }
    .premium-features-big-grid { grid-template-columns: 1fr; }
    .features-full-grid { grid-template-columns: 1fr; }
    .commands-grid { grid-template-columns: 1fr; }
    .premium-trust-row { gap: 16px; }
    .stats-bar-grid { gap: 28px; }
    .commands-filter-row { flex-direction: column; align-items: flex-start; }
    .features-category-nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
}

/* ============================================
   LEGAL PAGES (privacy, terms)
   ============================================ */

.legal-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.legal-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
}

.legal-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.legal-meta {
    display: flex;
    gap: 22px;
    justify-content: center;
    font-size: 0.72rem;
    color: #64748b;
    flex-wrap: wrap;
}

.legal-meta i {
    color: #fbbf24;
    margin-right: 5px;
}

.legal-section {
    padding: 60px 0 90px;
    position: relative;
    z-index: 1;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.legal-sidebar {
    position: sticky;
    top: 80px;
}

.legal-toc {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
}

.legal-toc h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-toc h4 i {
    color: #fbbf24;
}

.toc-link {
    display: block;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.2s;
    margin-bottom: 2px;
    border-left: 2px solid transparent;
}

.toc-link:hover,
.toc-link.active {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.07);
    border-left-color: #fbbf24;
}

.legal-sidebar-card {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
}

.legal-sidebar-card > i {
    font-size: 1.8rem;
    color: #fbbf24;
    margin-bottom: 12px;
    display: block;
}

.legal-sidebar-card h5 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-sidebar-card p {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 14px;
}

.legal-sidebar-btn {
    display: block;
    padding: 9px 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 9px;
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 600;
    transition: all 0.2s;
    word-break: break-all;
}

.legal-sidebar-btn:hover {
    background: rgba(245, 158, 11, 0.2);
}

/* Content */
.legal-content {
    min-width: 0;
}

.legal-notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 22px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 12px;
    margin-bottom: 36px;
    font-size: 0.82rem;
    color: #93c5fd;
    line-height: 1.6;
}

.legal-notice i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.legal-block {
    margin-bottom: 52px;
    scroll-margin-top: 90px;
}

.legal-block-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.legal-block-num {
    font-size: 0.65rem;
    font-weight: 800;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 8px;
    padding: 5px 10px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.legal-block h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.legal-block p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-list {
    margin: 14px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.82rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.6;
}

.legal-list li:last-child { border-bottom: none; }

.legal-list li i {
    color: #10b981;
    font-size: 0.75rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list-prohibited li i {
    color: #ef4444;
}

.legal-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6ee7b7;
    line-height: 1.6;
}

.legal-highlight i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.legal-highlight-warning {
    background: rgba(245, 158, 11, 0.07);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fde68a;
}

/* Data Grid */
.legal-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.legal-data-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s;
}

.legal-data-item:hover {
    border-color: rgba(245, 158, 11, 0.24);
}

.ldi-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1rem;
    flex-shrink: 0;
}

.legal-data-item h5 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.legal-data-item p {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

/* Security Grid */
.legal-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.legal-security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
    font-weight: 600;
}

.legal-security-item i {
    font-size: 1.4rem;
    color: #fbbf24;
}

/* Table */
.legal-table-wrapper {
    overflow-x: auto;
    margin-top: 14px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.legal-table thead {
    background: rgba(245, 158, 11, 0.07);
}

.legal-table th {
    padding: 13px 18px;
    text-align: left;
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.legal-table td {
    padding: 12px 18px;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:hover td { background: rgba(245, 158, 11, 0.03); }

.legal-table code {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-family: monospace;
}

/* Contact Box */
.legal-contact-box {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
}

.legal-contact-row i {
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.legal-contact-row a {
    color: #fbbf24;
    font-weight: 600;
    transition: color 0.2s;
}

.legal-contact-row a:hover { color: #f59e0b; }

.legal-link {
    color: #fbbf24;
    font-weight: 600;
    border-bottom: 1px dashed rgba(245, 158, 11, 0.4);
    transition: all 0.2s;
}

.legal-link:hover { border-bottom-color: #fbbf24; }

/* ============================================
   STATUS PAGE
   ============================================ */

.status-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.status-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 16px 0 12px;
}

.status-all-good { color: #10b981; }
.status-all-good i { margin-right: 10px; }
.status-degraded { color: #f59e0b; }
.status-degraded i { margin-right: 10px; }
.status-outage { color: #ef4444; }
.status-outage i { margin-right: 10px; }

.status-hero-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

.status-summary-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.status-summary-item {
    padding: 16px 28px;
    border-radius: 14px;
    text-align: center;
    min-width: 110px;
}

.status-summary-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.status-summary-item label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    cursor: default;
}

.status-ok    { background: rgba(16, 185, 129, 0.1);  border: 1px solid rgba(16, 185, 129, 0.22);  }
.status-ok span    { color: #10b981; }
.status-ok label   { color: #6ee7b7; }

.status-warn  { background: rgba(245, 158, 11, 0.1);  border: 1px solid rgba(245, 158, 11, 0.22);  }
.status-warn span  { color: #f59e0b; }
.status-warn label { color: #fde68a; }

.status-err   { background: rgba(239, 68, 68, 0.1);   border: 1px solid rgba(239, 68, 68, 0.22);   }
.status-err span   { color: #ef4444; }
.status-err label  { color: #fca5a5; }

.status-total { background: rgba(255,255,255,0.04);   border: 1px solid rgba(255,255,255,0.08);     }
.status-total span { color: #fff; }
.status-total label{ color: #64748b; }

/* Services */
.status-services-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.status-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.status-section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.status-refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 9px;
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.status-refresh-btn:hover {
    background: rgba(245, 158, 11, 0.18);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.status-services-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.status-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 14px;
    transition: all 0.3s;
    gap: 16px;
}

.status-service-card:hover {
    background: rgba(20, 20, 20, 0.95);
    border-color: rgba(245, 158, 11, 0.22);
}

.status-card-operational { border-left: 3px solid #10b981; }
.status-card-degraded    { border-left: 3px solid #f59e0b; }
.status-card-outage      { border-left: 3px solid #ef4444; }

.ssc-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.ssc-icon {
    width: 46px;
    height: 46px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ssc-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.ssc-info p {
    font-size: 0.72rem;
    color: #64748b;
}

.ssc-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

.ssc-metrics {
    display: flex;
    gap: 24px;
}

.ssc-metric {
    text-align: right;
}

.ssc-metric span {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.ssc-metric label {
    font-size: 0.6rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: default;
}

.ssc-status-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.ssc-badge-operational {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.ssc-badge-degraded {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #f59e0b;
}

.ssc-badge-outage {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.ssc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s infinite;
    display: inline-block;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Uptime Bar */
.status-uptime-block {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 28px;
}

.status-uptime-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.status-uptime-header h3 {
    font-size: 1rem;
    font-weight: 700;
}

.uptime-overall-pct {
    font-size: 0.82rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 5px 13px;
    border-radius: 20px;
}

.uptime-bar-grid {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 42px;
    margin-bottom: 10px;
}

.uptime-bar {
    flex: 1;
    border-radius: 3px;
    cursor: default;
    transition: all 0.2s;
    height: 100%;
}

.uptime-bar:hover { transform: scaleY(1.15); }

.uptime-up      { background: #10b981; }
.uptime-partial { background: #f59e0b; }
.uptime-down    { background: #ef4444; }

.uptime-bar-legend {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.68rem;
    color: #64748b;
}

.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 5px;
}

.legend-up      { background: #10b981; }
.legend-partial { background: #f59e0b; }
.legend-down    { background: #ef4444; }

.uptime-bar-dates {
    margin-left: auto;
    display: flex;
    gap: 16px;
    font-size: 0.65rem;
    color: #475569;
}

/* Uptime Tooltip */
.uptime-tooltip {
    position: absolute;
    z-index: 9999;
    background: #111;
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.7rem;
    color: #fbbf24;
    white-space: nowrap;
    pointer-events: none;
}

/* Incidents */
.status-incidents-section {
    padding: 0 0 70px;
    position: relative;
    z-index: 1;
}

.status-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.incidents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.incident-card {
    padding: 22px 24px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 14px;
    border-left: 3px solid #64748b;
}

.incident-resolved { border-left-color: #10b981; }
.incident-ongoing  { border-left-color: #f59e0b; }

.incident-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.incident-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.incident-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

.incident-resolved .incident-status-dot { background: #10b981; }
.incident-ongoing  .incident-status-dot { background: #f59e0b; animation: pulse-dot 1.5s infinite; }

.incident-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.incident-date {
    font-size: 0.7rem;
    color: #64748b;
}

.incident-desc {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 12px;
}

.incident-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

.incident-badge-resolved {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.incident-badge-ongoing {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #f59e0b;
}

.status-no-incidents {
    text-align: center;
    padding: 50px 20px;
    color: #10b981;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.status-no-incidents i {
    font-size: 2.5rem;
}

/* Subscribe */
.status-subscribe-section {
    padding: 0 0 90px;
    position: relative;
    z-index: 1;
}

.status-subscribe-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 20px;
    flex-wrap: wrap;
}

.status-subscribe-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.status-subscribe-text {
    flex: 1;
    min-width: 200px;
}

.status-subscribe-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.status-subscribe-text p {
    font-size: 0.78rem;
    color: #94a3b8;
}

.status-subscribe-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE - LEGAL + STATUS
   ============================================ */

@media (max-width: 1024px) {
    .legal-security-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-data-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-title { font-size: 2.2rem; }

    .legal-security-grid { grid-template-columns: repeat(2, 1fr); }

    .status-hero-title { font-size: 1.7rem; }

    .status-service-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .ssc-right {
        width: 100%;
        justify-content: space-between;
    }

    .ssc-metrics { gap: 16px; }

    .status-subscribe-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .status-subscribe-actions {
        width: 100%;
        justify-content: center;
    }

    .uptime-bar-grid { gap: 2px; }

    .status-summary-bar { gap: 10px; }
    .status-summary-item { padding: 12px 16px; min-width: 80px; }

    .incident-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    padding: 130px 0 70px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-mission-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 14px 0 18px;
}

.about-mission-left p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-mission-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.ams-item {
    text-align: center;
    padding: 16px 10px;
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
}

.ams-item span {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.ams-item label {
    font-size: 0.62rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: default;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-value-card {
    padding: 24px 20px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    transition: all 0.3s;
}

.about-value-card:hover {
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-3px);
}

.avc-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 14px;
}

.about-value-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.about-value-card p {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Timeline */
.about-timeline-section {
    padding: 80px 0;
    background: rgba(245, 158, 11, 0.02);
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.3), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 40px;
    position: relative;
}

.timeline-item.timeline-right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-content {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 14px;
    padding: 22px 24px;
    max-width: 340px;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-2px);
}

.timeline-year {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.timeline-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.65;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 22px;
    width: 14px;
    height: 14px;
    background: rgba(245, 158, 11, 0.3);
    border: 2px solid #f59e0b;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-dot-current {
    background: #f59e0b;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
    animation: pulse-dot 2s infinite;
}

/* Team */
.about-team-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.team-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: rgba(245, 158, 11, 0.28);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    font-weight: 800;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.72rem;
    color: #fbbf24;
    margin-bottom: 12px;
}

.team-discord {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    color: #64748b;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.18);
    padding: 4px 12px;
    border-radius: 20px;
}

.team-discord i {
    color: #8b9cf7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 60px 0 90px;
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 36px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    margin-bottom: 14px;
    transition: all 0.3s;
    align-items: flex-start;
}

.contact-info-card:hover {
    border-color: rgba(245, 158, 11, 0.26);
    transform: translateX(4px);
}

.cic-icon {
    width: 46px;
    height: 46px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cic-icon-blue   { background: rgba(59, 130, 246, 0.12); color: #60a5fa; }
.cic-icon-green  { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.cic-icon-purple { background: rgba(139, 92, 246, 0.12); color: #a78bfa; }

.cic-content h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cic-content p {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 7px;
}

.cic-link {
    font-size: 0.74rem;
    color: #fbbf24;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.cic-link:hover { gap: 8px; }
.cic-link i { font-size: 0.6rem; }

.contact-response-times {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    padding: 20px;
    margin-top: 4px;
}

.contact-response-times h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-response-times h4 i { color: #fbbf24; }

.response-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 0.75rem;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.response-time-row:last-child { border-bottom: none; }

.rt-fast   { color: #10b981; font-weight: 700; }
.rt-medium { color: #f59e0b; font-weight: 700; }

/* Contact Form */
.contact-form-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.14);
    border-radius: 18px;
    padding: 36px 32px;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-desc {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 26px;
}

.contact-type-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.contact-type-opt input { display: none; }

.contact-type-opt span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-type-opt input:checked + span {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.32);
    color: #fbbf24;
}

.contact-type-opt span:hover {
    border-color: rgba(245, 158, 11, 0.22);
    color: #94a3b8;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 10px;
    color: #fff;
    font-size: 0.82rem;
    resize: vertical;
    min-height: 140px;
    transition: all 0.3s;
    font-family: inherit;
    line-height: 1.6;
}

.contact-form textarea:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.07);
}

.required { color: #ef4444; margin-left: 2px; }
.optional { color: #475569; font-size: 0.7rem; font-weight: 400; margin-left: 4px; }

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.88rem;
    margin-top: 6px;
}

.contact-success {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    margin-bottom: 22px;
    color: #10b981;
}

.contact-success i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-success h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-success p {
    font-size: 0.78rem;
    opacity: 0.85;
}

/* FAQ Quick Links */
.contact-faq-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

.contact-faq-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.contact-faq-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.25s;
    text-decoration: none;
}

.contact-faq-card:hover {
    border-color: rgba(245, 158, 11, 0.28);
    color: #fbbf24;
    transform: translateY(-2px);
}

.contact-faq-card > i:first-child {
    color: #fbbf24;
    width: 20px;
    text-align: center;
}

.contact-faq-card > i:last-child {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.5;
}

/* ============================================
   COOKIES PAGE EXTRAS
   ============================================ */

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.cookie-type-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 22px;
}

.cookie-type-essential { border-top: 2px solid rgba(16, 185, 129, 0.5); }
.cookie-type-functional { border-top: 2px solid rgba(59, 130, 246, 0.5); }
.cookie-type-analytics  { border-top: 2px solid rgba(245, 158, 11, 0.5); }

.ctc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ctc-icon {
    width: 38px;
    height: 38px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ctc-header h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.ctc-badge {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ctc-required {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.ctc-optional {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
    color: #fbbf24;
}

.cookie-type-card > p {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 14px;
}

.cookie-detail-list {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.cookie-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.68rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cookie-detail-row:last-child { border-bottom: none; }

.cookie-detail-row code {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.cookie-detail-row span {
    color: #64748b;
}

.cookie-detail-row span:last-child {
    margin-left: auto;
    color: #475569;
    flex-shrink: 0;
}

.browser-links-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.browser-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 0.75rem;
    color: #94a3b8;
    transition: all 0.2s;
    text-decoration: none;
}

.browser-link:hover {
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

/* ============================================
   GDPR PAGE EXTRAS
   ============================================ */

.gdpr-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.gdpr-overview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
    transition: all 0.3s;
}

.gdpr-overview-item:hover {
    border-color: rgba(245, 158, 11, 0.24);
    color: #fbbf24;
}

.gdpr-overview-item i {
    font-size: 1.3rem;
    color: #fbbf24;
}

.gdpr-rights-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gdpr-right-item {
    display: flex;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 13px;
    align-items: flex-start;
    transition: all 0.3s;
}

.gdpr-right-item:hover {
    border-color: rgba(245, 158, 11, 0.22);
    transform: translateX(4px);
}

.gri-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gri-blue   { background: rgba(59, 130, 246, 0.12); color: #60a5fa; }
.gri-green  { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.gri-red    { background: rgba(239, 68, 68, 0.12);  color: #f87171; }
.gri-yellow { background: rgba(234, 179, 8, 0.12);  color: #facc15; }
.gri-purple { background: rgba(139, 92, 246, 0.12); color: #a78bfa; }
.gri-teal   { background: rgba(20, 184, 166, 0.12); color: #2dd4bf; }

.gri-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gri-content p {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.65;
}

.gdpr-authority-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 10px;
    color: #fbbf24;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 12px;
    text-decoration: none;
    display: inline-flex;
}

.gdpr-authority-link:hover {
    background: rgba(245, 158, 11, 0.12);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;
    z-index: 9998;
    transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.visible {
    bottom: 24px;
}

.cookie-banner.hiding {
    bottom: -200px;
    transition: bottom 0.4s ease-in;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(12, 12, 12, 0.97);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 16px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(20px);
}

.cookie-banner-icon {
    font-size: 1.8rem;
    color: #fbbf24;
    flex-shrink: 0;
    animation: cookieWobble 3s ease-in-out infinite;
}

@keyframes cookieWobble {
    0%, 100% { transform: rotate(0deg); }
    25%  { transform: rotate(-10deg); }
    75%  { transform: rotate(10deg); }
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
}

.cookie-banner-text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cookie-banner-text p {
    font-size: 0.73rem;
    color: #94a3b8;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn-settings {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn-settings:hover {
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

.cookie-btn-deny {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.24);
    border-radius: 9px;
    color: #ef4444;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn-deny:hover {
    background: rgba(239, 68, 68, 0.18);
}

.cookie-btn-accept {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 9px;
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cookie-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: #0d0d0d;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s;
    overflow: hidden;
}

.cookie-modal-overlay.active .cookie-modal {
    transform: scale(1) translateY(0);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.cookie-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-modal-title i {
    font-size: 1.3rem;
    color: #fbbf24;
}

.cookie-modal-title h3 {
    font-size: 1rem;
    font-weight: 700;
}

.cookie-modal-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-modal-close:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.24);
    color: #ef4444;
}

.cookie-modal-body {
    padding: 22px 24px;
}

.cookie-modal-intro {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-pref-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 14px;
}

.cookie-pref-item:last-child { border-bottom: none; }

.cookie-pref-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.cookie-pref-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cookie-pref-icon-blue   { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.cookie-pref-icon-green  { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.cookie-pref-info h5 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cookie-pref-info p {
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.5;
}

.cookie-always-on {
    font-size: 0.65rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Cookie Toggle Switch */
.cookie-toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 25px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle-switch input { display: none; }

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    background: #64748b;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: all 0.3s;
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: transparent;
}

.cookie-toggle-switch input:checked + .cookie-toggle-slider::before {
    left: 25px;
    background: #000;
}

.cookie-modal-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Cookie Toast */
.cookie-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(60px);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
}

.cookie-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-toast-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.cookie-toast-info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* ============================================
   RESPONSIVE - ALL NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
    .about-mission-grid   { grid-template-columns: 1fr; gap: 40px; }
    .about-mission-stats  { grid-template-columns: repeat(2, 1fr); }
    .team-grid            { grid-template-columns: repeat(2, 1fr); }
    .contact-layout       { grid-template-columns: 1fr; }
    .cookie-types-grid    { grid-template-columns: 1fr; }
    .gdpr-overview-grid   { grid-template-columns: repeat(3, 1fr); }
    .contact-faq-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* About */
    .about-values-grid  { grid-template-columns: 1fr; }
    .about-mission-stats { grid-template-columns: repeat(2, 1fr); }
    .team-grid          { grid-template-columns: 1fr; }
    .timeline::before   { left: 20px; }
    .timeline-item,
    .timeline-item.timeline-right {
        padding: 0 0 0 56px;
        justify-content: flex-start;
    }
    .timeline-dot { left: 20px; }
    .timeline-content { max-width: 100%; }

    /* Contact */
    .contact-form-row   { grid-template-columns: 1fr; }
    .contact-faq-grid   { grid-template-columns: repeat(2, 1fr); }
    .contact-type-selector { flex-wrap: wrap; }
    .contact-form-card  { padding: 24px 18px; }

    /* GDPR */
    .gdpr-overview-grid { grid-template-columns: repeat(2, 1fr); }

    /* Cookie Banner */
    .cookie-banner { width: calc(100% - 24px); }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 16px 18px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-banner-actions button {
        flex: 1;
        min-width: 80px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-faq-grid  { grid-template-columns: 1fr; }
    .gdpr-overview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   NAVBAR — COMPLETE
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 68px;
    background: rgba(8, 8, 8, 0.85);
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    height: 58px;
    background: rgba(6, 6, 6, 0.96);
    border-bottom-color: rgba(245, 158, 11, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.nav-brand:hover img {
    transform: rotate(-8deg) scale(1.1);
}

.nav-brand span {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

/* Nav Menu (desktop) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links-group {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: 8px;
}

/* Nav Links */
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

.nav-link.active i {
    opacity: 1;
}

/* Premium link special style */
.nav-link-premium {
    color: #fbbf24 !important;
}

.nav-link-premium:hover {
    background: rgba(245, 158, 11, 0.12) !important;
}

.nav-link-premium.active {
    background: rgba(245, 158, 11, 0.16) !important;
}

/* Auth Section */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-guest-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-login:hover {
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.06);
}

.btn-add-discord {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border: none;
    border-radius: 9px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(88, 101, 242, 0.3);
}

.btn-add-discord:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.5);
}

/* User Dropdown */
.nav-user-dropdown {
    position: relative;
}

.nav-user-button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px 6px 6px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.nav-user-button:hover {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.3);
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-user-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fbbf24;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-chevron {
    font-size: 0.6rem;
    color: #fbbf24;
    opacity: 0.7;
    transition: transform 0.25s;
}

.nav-user-button[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.97);
    transition: all 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.nav-user-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 12px;
}

.user-menu-header img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    object-fit: cover;
}

.user-menu-header strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.user-menu-header span {
    font-size: 0.65rem;
    color: #64748b;
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 4px 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.18s;
}

.user-menu-item i {
    width: 16px;
    text-align: center;
    font-size: 0.75rem;
}

.user-menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.user-menu-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Scroll Progress Bar */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile: hidden elements on desktop */
.nav-close,
.nav-mobile-brand,
.nav-mobile-extra {
    display: none;
}

/* Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 0 10px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.mobile-toggle:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #94a3b8;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fbbf24;
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fbbf24;
}

/* ============================================================
   MOBILE NAVBAR — ≤ 768px
   ============================================================ */

@media (max-width: 768px) {
    .navbar { padding: 0 16px; }

    .mobile-toggle { display: flex; }

    /* Nav menu becomes a slide-in drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(8, 8, 8, 0.99);
        border-left: 1px solid rgba(245, 158, 11, 0.14);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 0 30px;
        gap: 0;
        z-index: 999;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        backdrop-filter: blur(30px);
    }

    .nav-menu.open {
        right: 0;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.7);
    }

    /* Close button */
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 18px 20px 10px;
        background: none;
        border: none;
        color: #64748b;
        font-size: 1.1rem;
        cursor: pointer;
        transition: color 0.2s;
    }

    .nav-close:hover { color: #ef4444; }

    /* Mobile brand inside drawer */
    .nav-mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 20px 18px;
        border-bottom: 1px solid rgba(245, 158, 11, 0.08);
        margin-bottom: 8px;
    }

    .nav-mobile-brand img {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }

    .nav-mobile-brand span {
        font-size: 0.95rem;
        font-weight: 800;
        color: #fff;
    }

    /* Links group */
    .nav-links-group {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0 12px;
        margin-right: 0;
    }

    .nav-link {
        padding: 12px 14px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    /* Extra links */
    .nav-mobile-extra {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0 12px;
        margin-top: 6px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 12px;
    }

    .nav-mobile-extra-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #64748b;
        border-radius: 9px;
        text-decoration: none;
        transition: all 0.2s;
    }

    .nav-mobile-extra-link:hover,
    .nav-mobile-extra-link.active {
        color: #fbbf24;
        background: rgba(245, 158, 11, 0.07);
    }

    .nav-mobile-extra-link i {
        width: 16px;
        text-align: center;
        font-size: 0.8rem;
    }

    /* Auth section */
    .nav-auth {
        padding: 14px 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 10px;
    }

    .nav-guest-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn-login,
    .btn-add-discord {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    /* User dropdown in mobile */
    .nav-user-dropdown { width: 100%; }

    .nav-user-button {
        width: 100%;
        border-radius: 10px;
        padding: 10px 14px;
        justify-content: flex-start;
    }

    .nav-user-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(245, 158, 11, 0.1);
        margin-top: 8px;
        display: none;
    }

    .nav-user-menu.open { display: block; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Stats Bar */
.footer-stats-bar {
    background: rgba(245, 158, 11, 0.04);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    border-bottom: 1px solid rgba(245, 158, 11, 0.07);
    padding: 22px 0;
}

.footer-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.footer-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 40px;
}

.footer-stat-item i {
    font-size: 1rem;
    color: #fbbf24;
    opacity: 0.8;
}

.footer-stat-item span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.footer-stat-item label {
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: default;
}

.footer-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

/* Main Footer */
.footer-main {
    padding: 64px 0 40px;
    background: rgba(5, 5, 5, 0.98);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 280px;
}

/* Status Badge */
.footer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #10b981;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}

.footer-status-badge:hover {
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.35);
}

.footer-status-badge i {
    font-size: 0.55rem;
    opacity: 0.6;
}

.footer-status-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

/* Footer Columns */
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(245, 158, 11, 0.15);
}

/* Footer Nav Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748b;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.footer-nav-link i {
    font-size: 0.7rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.6;
    transition: all 0.2s;
}

.footer-nav-link:hover {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.07);
    padding-left: 13px;
}

.footer-nav-link:hover i {
    opacity: 1;
    color: #fbbf24;
}

.footer-nav-link.active {
    color: #fbbf24;
}

.footer-nav-link.active i {
    opacity: 1;
}

/* Premium nav link */
.footer-nav-premium {
    color: rgba(251, 191, 36, 0.7) !important;
}

.footer-nav-badge {
    display: inline-block;
    margin-left: auto;
    padding: 2px 7px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 20px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

/* Cookie button */
.footer-cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding: 8px 13px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #475569;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.footer-cookie-btn:hover {
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.06);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(3, 3, 3, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.72rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom-left p a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-bottom-left p a:hover { color: #fbbf24; }

.footer-bottom-sub {
    font-size: 0.62rem !important;
    color: #334155 !important;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
}

.footer-made-with {
    font-size: 0.7rem;
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-heart {
    color: #ef4444;
    animation: heartbeat 1.6s ease-in-out infinite;
    font-size: 0.65rem;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1);    }
    14%       { transform: scale(1.25); }
    28%       { transform: scale(1);    }
    42%       { transform: scale(1.2);  }
    56%       { transform: scale(1);    }
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.footer-bottom-right a {
    font-size: 0.7rem;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom-right a:hover { color: #fbbf24; }

.footer-bottom-dot {
    color: #1e293b;
    font-size: 0.8rem;
    line-height: 1;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    color: #fbbf24;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 990;
    opacity: 0;
    transform: translateY(16px);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: inherit;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

/* ============================================================
   ANIMATE-IN (scroll reveal)
   ============================================================ */

.feature-full-card,
.pricing-card-new,
.team-card,
.about-value-card,
.gdpr-right-item,
.status-service-card,
.timeline-content,
.contact-info-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-tagline { max-width: 100%; }
}

@media (max-width: 768px) {
    .footer-stats-grid { gap: 0; }

    .footer-stat-item {
        padding: 8px 18px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .footer-stat-item i { display: none; }

    .footer-main { padding: 44px 0 30px; }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-left { text-align: center; }
    .footer-bottom-center { order: -1; }

    .back-to-top { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; }

    .footer-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: rgba(255,255,255,0.05);
    }

    .footer-stat-item {
        background: rgba(5, 5, 5, 0.98);
        padding: 14px 10px;
    }

    .footer-stat-divider { display: none; }

    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   DOCS PAGE
   ============================================ */

.docs-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 62px; /* navbar height */
}

/* ============================================
   DOCS PAGE — FULL LAYOUT
   ============================================ */

/* Isolate docs page from global section rule */
.docs-page-root {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 1;
    background: #000;
}

/* Hide background canvas on docs page */
.docs-page-root ~ #gradient-canvas,
.docs-page-root ~ .floating-shapes {
    display: none;
}

/* Prevent global section padding from leaking in */
.docs-page-root section,
.docs-page-root .docs-section {
    padding: 0 !important;
    width: auto !important;
}

/* ── Sidebar ─────────────────────────────── */
.docs-sidebar {
    width: 272px;
    height: 100%;
    background: #080808;
    border-right: 1px solid rgba(245, 158, 11, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 200;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.docs-sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Search */
.docs-search-wrap {
    position: relative;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.docs-search-box {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    padding: 9px 12px;
}

.docs-search-box i {
    color: #64748b;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.docs-search-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.75rem;
}

.docs-search-box input::placeholder { color: #475569; }

.docs-search-box kbd {
    font-size: 0.58rem;
    color: #475569;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2px 5px;
    flex-shrink: 0;
}

.docs-search-results {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    left: 14px;
    right: 14px;
    background: #111;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    z-index: 300;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.docs-search-results.active { display: block; }

.docs-search-result-item {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 0.75rem;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.docs-search-result-item:hover {
    background: rgba(245, 158, 11, 0.08);
    color: #fbbf24;
}

.docs-search-no-result {
    padding: 12px 14px;
    font-size: 0.72rem;
    color: #64748b;
}

/* Nav */
.docs-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.2) transparent;
}

.docs-nav::-webkit-scrollbar { width: 4px; }
.docs-nav::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.2);
    border-radius: 4px;
}

.docs-nav-group { margin-bottom: 22px; }

.docs-nav-group-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    padding: 0 8px 8px;
}

.docs-nav-list { list-style: none; }

.docs-nav-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #64748b;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.docs-nav-link i {
    font-size: 0.72rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.docs-nav-link span { flex: 1; }

.docs-nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
}

.docs-nav-link.active {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    font-weight: 600;
}

.docs-nav-badge {
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2px 6px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    border-radius: 20px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

/* Sidebar footer */
.docs-sidebar-footer {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.docs-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
}

.docs-sidebar-cta:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.docs-sidebar-cta-discord:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.25);
    color: #7289da;
}

/* ── Main content ────────────────────────── */
.docs-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 0;
    background: #000;
    position: relative;
}

/* Top bar */
.docs-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 36px;
    height: 54px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.07);
    flex-shrink: 0;
}

.docs-sidebar-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    color: #fbbf24;
    cursor: pointer;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.docs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #475569;
    flex: 1;
}

.docs-breadcrumb i { font-size: 0.55rem; }
#docs-breadcrumb-current { color: #cbd5e1; font-weight: 600; }

.docs-topbar-right { margin-left: auto; }

.btn-docs-invite {
    padding: 8px 16px !important;
    font-size: 0.72rem !important;
}

/* Progress bar */
.docs-progress {
    position: sticky;
    top: 54px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    z-index: 99;
    transition: width 0.1s linear;
    flex-shrink: 0;
}

/* Content */
.docs-content {
    flex: 1;
    padding: 40px 48px 60px;
    max-width: 900px;
    width: 100%;
}

/* ── Sections ─────────────────────────────── */
.docs-section {
    display: none;
    animation: fadeIn 0.25s ease;
}

.docs-section.active {
    display: block !important;
}

.docs-section-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.08);
}

.docs-section-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 4px;
}

.docs-section h1 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.docs-section-lead {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.docs-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.docs-section p {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 14px;
}

.docs-link {
    color: #fbbf24;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.docs-link:hover { color: #f59e0b; }

code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 0.78em;
    color: #fbbf24;
}

/* ── Callouts ────────────────────────────── */
.docs-callout {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 0.8rem;
    line-height: 1.65;
}

.docs-callout i { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.docs-callout strong { display: block; margin-bottom: 3px; font-size: 0.82rem; }

.docs-callout-info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.22);
    color: #93c5fd;
}
.docs-callout-info i { color: #60a5fa; }

.docs-callout-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.22);
    color: #fcd34d;
}
.docs-callout-warning i { color: #fbbf24; }

.docs-callout-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #fca5a5;
}
.docs-callout-danger i { color: #f87171; }

.docs-callout-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    color: #6ee7b7;
}
.docs-callout-success i { color: #34d399; }

/* ── Tables ──────────────────────────────── */
.docs-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    margin: 18px 0;
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.docs-table thead {
    background: rgba(245, 158, 11, 0.06);
}

.docs-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #64748b;
    white-space: nowrap;
}

.docs-table td {
    padding: 11px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    vertical-align: top;
}

.docs-table tr:hover td { background: rgba(245, 158, 11, 0.02); }

.docs-cmd-table .cmd-name {
    color: #fbbf24;
    font-size: 0.8em;
    white-space: nowrap;
}

.docs-cmd-table .cmd-args {
    color: #94a3b8;
    font-size: 0.75em;
}

.docs-cmd-table .cmd-none { color: #334155; }

/* ── Lists ───────────────────────────────── */
.docs-list {
    list-style: none;
    margin: 10px 0 18px;
}

.docs-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.8rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.docs-list li:last-child { border-bottom: none; }
.docs-list li i { color: #10b981; font-size: 0.65rem; margin-top: 3px; flex-shrink: 0; }

/* ── Steps ───────────────────────────────── */
.docs-steps {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.docs-step {
    display: flex;
    gap: 18px;
    padding-bottom: 28px;
    position: relative;
}

.docs-step::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: rgba(245, 158, 11, 0.12);
}

.docs-step:last-child::before { display: none; }

.docs-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.docs-step-body { flex: 1; padding-top: 4px; }
.docs-step-body h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.docs-step-body p  { font-size: 0.78rem; color: #94a3b8; line-height: 1.65; margin: 0; }

/* ── Cards grid ──────────────────────────── */
.docs-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.docs-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    padding: 18px 16px;
    transition: all 0.2s;
}

.docs-card:hover {
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(22, 18, 10, 0.8);
}

.docs-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.docs-card strong { display: block; font-size: 0.85rem; margin-bottom: 5px; }
.docs-card p { font-size: 0.72rem; color: #64748b; line-height: 1.5; margin: 0; }

/* ── Page nav (prev/next) ────────────────── */
.docs-page-nav {
    padding: 24px 48px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.docs-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.docs-nav-btn:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.docs-nav-btn-next { margin-left: auto; }

/* ── Code blocks ─────────────────────────── */
.docs-code-block {
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 14px 0;
    overflow-x: auto;
}

.docs-code-block pre {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.78rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.docs-code-copy {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.65rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.docs-code-copy:hover {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.2);
}

/* ── Footer note ─────────────────────────── */
.docs-footer-note {
    font-size: 0.72rem;
    color: #334155;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Sidebar overlay (mobile) ────────────── */
.docs-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 199;
}

.docs-sidebar-overlay.active { display: block; }

/* ============================================
   DOCS — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .docs-page-root {
        overflow: hidden;
    }

    .docs-sidebar {
        position: fixed;
        top: 62px;
        left: 0;
        height: calc(100vh - 62px);
        transform: translateX(-100%);
        z-index: 201;
    }

    .docs-sidebar.open {
        transform: translateX(0);
    }

    .docs-sidebar-toggle {
        display: flex;
    }

    .docs-content {
        padding: 24px 20px 40px;
        max-width: 100%;
    }

    .docs-page-nav {
        padding: 20px 20px 30px;
    }

    .docs-topbar {
        padding: 0 18px;
    }
}

@media (max-width: 600px) {
    .docs-topbar-right {
        display: none;
    }

    .docs-card-grid {
        grid-template-columns: 1fr;
    }
}
