:root {
    --bg-black: #030305;
    --bg-surface: #09090D;
    --bg-surface-2: #101017;
    --bg-surface-hover: #171722;
    
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.18);
    --border-active: rgba(255, 255, 255, 0.35);
    
    --text-pure: #FFFFFF;
    --text-main: #ECECF0;
    --text-secondary: rgba(236, 236, 240, 0.68);
    --text-muted: rgba(236, 236, 240, 0.42);
    
    --accent-emerald: #3DD68C;
    --accent-cyan: #3B9EFF;
    --accent-orange: #FB7408;
    --accent-pink: #FF0095;
    --accent-gold: #FFDD00;
    --accent-purple: #A855F7;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    --font-pixel: 'Silkscreen', 'Minecraft', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==========================================================================
   AMBIENT LIGHTING & CANVAS
   ========================================================================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 158, 255, 0.05) 0%, rgba(255, 0, 149, 0.03) 40%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.bg-ambient-lights {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    animation: floatAmbient 18s ease-in-out infinite alternate;
}

.ambient-light-1 {
    top: -10%;
    left: 15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(59, 158, 255, 0.15) 0%, transparent 70%);
}

.ambient-light-2 {
    top: 30%;
    right: 5%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(255, 0, 149, 0.12) 0%, transparent 70%);
    animation-delay: -6s;
}

.ambient-light-3 {
    bottom: -15%;
    left: 30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 116, 8, 0.08) 0%, transparent 70%);
    animation-delay: -12s;
}

@keyframes floatAmbient {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(50px) scale(1.08); }
    100% { transform: translateY(-30px) scale(0.95); }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   FLOATING PROGRESSIVE NAVBAR
   ========================================================================== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 14px;
    pointer-events: none;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    pointer-events: auto;
}

.nav-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 14px;
    background: rgba(9, 9, 13, 0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.nav-bar:hover {
    border-color: var(--border-hover);
    box-shadow: 0 28px 70px -15px rgba(0, 0, 0, 0.98), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 0 6px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFFFFF, #B4B4C0);
    color: #000000;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 17px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    position: relative;
}

.nav-logo-brand {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-pure);
    letter-spacing: -0.4px;
}

.nav-logo-badge {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    background: rgba(59, 158, 255, 0.15);
    border: 1px solid rgba(59, 158, 255, 0.3);
    color: var(--accent-cyan);
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s ease;
}

.nav-link:hover {
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link-special {
    background: linear-gradient(135deg, rgba(255, 0, 149, 0.12), rgba(59, 158, 255, 0.12));
    border: 1px solid rgba(255, 0, 149, 0.25);
    color: #FFF;
}

.nav-link-special:hover {
    background: linear-gradient(135deg, rgba(255, 0, 149, 0.22), rgba(59, 158, 255, 0.22));
    border-color: rgba(255, 0, 149, 0.4);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-online-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    background: rgba(61, 214, 140, 0.08);
    border: 1px solid rgba(61, 214, 140, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #4AE499;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-online-pill:hover {
    background: rgba(61, 214, 140, 0.15);
    border-color: rgba(61, 214, 140, 0.4);
}

.sound-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 15px;
}

.sound-toggle-btn:hover {
    color: var(--text-pure);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.btn-sys {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
}

.btn-sys-cta {
    background: #ECECF0;
    color: #070709;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.18);
}

.btn-sys-cta:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 255, 255, 0.35);
}

.btn-sys-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.btn-sys-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    color: var(--text-pure);
    transform: translateY(-1px);
}

.nav-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 10px 3px 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-profile:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.09);
}

.nav-profile-avatar {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    image-rendering: pixelated;
    background: #18181B;
}

.nav-profile-name {
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-profile-logout {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 13px;
    transition: color 0.15s;
}

.nav-profile-logout:hover {
    color: #FF4444;
}

/* ==========================================================================
   LIVE PURCHASES TICKER
   ========================================================================== */
.ticker-wrap {
    margin-top: 86px;
    background: rgba(9, 9, 13, 0.65);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--accent-pink);
    background: rgba(9, 9, 13, 0.95);
    border-right: 1px solid var(--border-subtle);
    height: 100%;
    z-index: 2;
    white-space: nowrap;
}

.ticker-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-pink);
    box-shadow: 0 0 10px var(--accent-pink);
    animation: pulse 1.8s infinite;
}

.ticker-track-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 34s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 12.5px;
    color: var(--text-secondary);
}

.ticker-avatar {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    image-rendering: pixelated;
}

.ticker-time {
    color: var(--text-muted);
    font-size: 11.5px;
}

/* ==========================================================================
   HERO SECTION & 3D HOLOGRAM STAGE
   ========================================================================== */
.hero-section {
    padding: 60px 0 40px;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.hero-pill-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-emerald);
    box-shadow: 0 0 12px var(--accent-emerald);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-badge-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(59, 158, 255, 0.12);
    padding: 2px 7px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.hero-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -1.6px;
    color: var(--text-pure);
    margin-bottom: 20px;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 20%, #3B9EFF 60%, #FF0095 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subheading {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-auth-bar {
    display: flex;
    gap: 10px;
    background: rgba(16, 16, 23, 0.7);
    border: 1px solid var(--border-subtle);
    padding: 6px;
    border-radius: 16px;
    max-width: 480px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.hero-auth-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 12px;
}

.hero-input-icon {
    font-size: 15px;
    opacity: 0.6;
}

.hero-auth-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 14px;
    font-family: var(--font-sans);
}

.hero-auth-input::placeholder {
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-btn-main {
    height: 46px;
    padding: 0 28px;
    font-size: 15px;
}

.hero-btn-sec {
    height: 46px;
    padding: 0 22px;
    font-size: 14.5px;
}

.hero-ip-badge {
    font-family: var(--font-mono);
    font-size: 11.5px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--accent-cyan);
}

.hero-features-row {
    display: flex;
    gap: 20px;
}

.hero-mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
}

.mini-icon {
    font-size: 14px;
}

/* 3D Hologram Skin Stage */
.hero-skin-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-hologram-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59, 158, 255, 0.18) 0%, rgba(255, 0, 149, 0.1) 45%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-skin-card {
    position: relative;
    width: 340px;
    height: 460px;
    background: rgba(16, 16, 23, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    cursor: grab;
    z-index: 2;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.hero-skin-card:hover {
    border-color: rgba(59, 158, 255, 0.35);
    box-shadow: 0 35px 90px -15px rgba(59, 158, 255, 0.25);
}

.skin-aura {
    position: absolute;
    width: 220px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 0, 149, 0.2) 0%, rgba(59, 158, 255, 0.15) 50%, transparent 75%);
    filter: blur(35px);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.skin-aura.off {
    opacity: 0;
}

.hero-skin-img {
    width: 220px;
    height: auto;
    image-rendering: pixelated;
    transition: transform 0.12s ease-out;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
    z-index: 3;
    animation: skinFloat 4s ease-in-out infinite alternate;
}

@keyframes skinFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

/* Cyber Pedestal */
.hero-pedestal-wrap {
    position: absolute;
    bottom: 45px;
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.pedestal-ring-outer {
    position: absolute;
    width: 190px;
    height: 70px;
    border: 2px dashed rgba(59, 158, 255, 0.4);
    border-radius: 50%;
    transform: rotateX(75deg);
    animation: rotatePedestal 20s linear infinite;
    box-shadow: 0 0 25px rgba(59, 158, 255, 0.35);
}

.pedestal-ring-inner {
    position: absolute;
    width: 140px;
    height: 50px;
    border: 1px solid rgba(255, 0, 149, 0.5);
    border-radius: 50%;
    transform: rotateX(75deg);
    animation: rotatePedestalRev 12s linear infinite;
    box-shadow: 0 0 15px rgba(255, 0, 149, 0.3);
}

.pedestal-core {
    position: absolute;
    width: 100px;
    height: 35px;
    background: radial-gradient(ellipse, rgba(59, 158, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotateX(75deg);
    filter: blur(6px);
}

@keyframes rotatePedestal {
    from { transform: rotateX(75deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes rotatePedestalRev {
    from { transform: rotateX(75deg) rotateZ(360deg); }
    to { transform: rotateX(75deg) rotateZ(0deg); }
}

/* Floating Player HUD Card */
.hero-player-hud {
    position: absolute;
    bottom: -18px;
    left: 20px;
    right: 20px;
    background: rgba(9, 9, 13, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 10px 14px;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.hud-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hud-nick {
    font-size: 13.5px;
    font-weight: 700;
    color: #FFFFFF;
}

.hud-rank {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-pink);
    border: 1px solid rgba(255, 0, 149, 0.3);
}

.hud-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

.skin-aura-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 6;
}

.skin-aura-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
}

/* ==========================================================================
   BENTO STATS ROW
   ========================================================================== */
.bento-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.bento-stat-card {
    background: rgba(16, 16, 23, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(16px);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.bento-stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    background: rgba(22, 22, 32, 0.7);
}

.bento-stat-icon {
    font-size: 26px;
    line-height: 1;
}

.bento-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.bento-stat-value {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: var(--font-mono);
    margin-bottom: 2px;
}

.bento-stat-sub {
    font-size: 11.5px;
    color: var(--text-secondary);
}

/* ==========================================================================
   INTERACTIVE MINECRAFT CHAT STUDIO & PREFIX PREVIEW
   ========================================================================== */
.chat-studio-section {
    padding: 80px 0 60px;
    border-top: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.section-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    background: rgba(59, 158, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(59, 158, 255, 0.2);
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.chat-rank-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.rank-pill-btn {
    background: rgba(16, 16, 23, 0.7);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.rank-pill-btn:hover {
    border-color: var(--border-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.rank-pill-btn.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.chat-studio-workspace {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 24px;
}

.studio-panel {
    background: rgba(16, 16, 23, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.panel-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
}

.panel-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-emerald);
    background: rgba(61, 214, 140, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: var(--font-mono);
}

/* Minecraft Tab Simulator */
.tab-simulator-box {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    font-family: var(--font-pixel), var(--font-mono);
    flex: 1;
}

.tab-server-title {
    text-align: center;
    font-size: 12px;
    color: #FFDD00;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.tab-players-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-player-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 13px;
    transition: background 0.15s;
}

.tab-player-item.active-user {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tab-avatar {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    image-rendering: pixelated;
}

.tab-prefix {
    font-weight: 700;
}

.tab-nick {
    color: #FFFFFF;
    flex: 1;
}

.tab-ping-bars {
    font-size: 12px;
    opacity: 0.7;
}

/* Minecraft In-Game Chat Simulator */
.minecraft-chat-window {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px;
    min-height: 200px;
    max-height: 250px;
    overflow-y: auto;
    font-family: var(--font-pixel), var(--font-mono);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.8);
}

.chat-message-line {
    font-size: 13px;
    line-height: 1.45;
    word-break: break-word;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    animation: fadeInMsg 0.25s ease-out;
}

@keyframes fadeInMsg {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message-line.highlighted {
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-pink);
}

.chat-time {
    color: #888888;
    font-size: 11.5px;
}

.chat-prefix {
    font-weight: 700;
}

.chat-nick {
    font-weight: 600;
}

.chat-text {
    color: #FFFFFF;
}

.chat-input-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.chat-input-field {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0 16px;
    height: 42px;
    color: #FFFFFF;
    font-size: 13.5px;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s;
}

.chat-input-field:focus {
    border-color: var(--accent-cyan);
}

.chat-studio-bottom-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 12px 16px;
}

/* ==========================================================================
   MINI-GAME: CASE OPENING ROULETTE
   ========================================================================== */
.roulette-banner {
    background: linear-gradient(135deg, rgba(255, 0, 149, 0.08) 0%, rgba(59, 158, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7);
}

.roulette-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.roulette-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.roulette-info p {
    font-size: 14.5px;
    color: var(--text-secondary);
    max-width: 600px;
}

.roulette-open-btn {
    height: 48px;
    padding: 0 28px;
    font-size: 14.5px;
    flex-direction: column;
    gap: 2px;
}

/* Roulette Inside Modal */
.roulette-modal-dialog {
    max-width: 620px;
    width: 95%;
}

.roulette-container {
    position: relative;
    width: 100%;
    height: 140px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
}

.roulette-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #FFDD00;
    box-shadow: 0 0 16px #FFDD00;
    z-index: 10;
}

.roulette-pointer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #FFDD00;
}

.roulette-pointer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #FFDD00;
}

.roulette-track {
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    will-change: transform;
}

.roulette-item {
    width: 130px;
    height: 110px;
    margin: 0 6px;
    background: rgba(22, 22, 32, 0.85);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.roulette-item-title {
    font-size: 13.5px;
    font-weight: 800;
}

.roulette-item-badge {
    font-size: 10px;
    color: var(--text-muted);
}

.roulette-win-box {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: none;
    animation: fadeInMsg 0.3s ease-out;
}

/* ==========================================================================
   PRICING & BENTO PRODUCT CARDS
   ========================================================================== */
.segmented-control {
    display: inline-flex;
    background: rgba(16, 16, 23, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
}

.segment-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.18s;
}

.segment-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.period-control {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.period-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}

.period-pill:hover {
    border-color: var(--border-hover);
    color: #FFFFFF;
}

.period-pill.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.discount-badge {
    font-size: 10.5px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 100px;
    background: rgba(61, 214, 140, 0.15);
    color: var(--accent-emerald);
}

.discount-hot {
    background: rgba(255, 0, 149, 0.18);
    color: var(--accent-pink);
}

.matrix-open-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-hover);
    border-radius: 14px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.matrix-open-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.sys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.sys-card {
    background: rgba(16, 16, 23, 0.55);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 24px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6);
}

.sys-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-color, var(--accent-cyan));
    opacity: 0.8;
}

.sys-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(var(--card-color-rgb, 59, 158, 255), 0.15);
}

.sys-card.featured {
    background: linear-gradient(180deg, rgba(255, 0, 149, 0.07) 0%, rgba(16, 16, 23, 0.6) 100%);
    border-color: rgba(255, 0, 149, 0.35);
}

.sys-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.sys-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--card-color, #FFFFFF);
    letter-spacing: -0.3px;
}

.sys-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.sys-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.sys-price {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: var(--font-mono);
}

.sys-price-period {
    font-size: 13px;
    color: var(--text-muted);
}

.sys-perks {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sys-perks li {
    font-size: 13.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sys-perks li::before {
    content: '✓';
    color: var(--card-color, var(--accent-emerald));
    font-weight: 900;
    font-size: 12px;
}

.sys-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* ==========================================================================
   MODES & FEATURES
   ========================================================================== */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.mode-card {
    background: rgba(16, 16, 23, 0.55);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.mode-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    background: rgba(22, 22, 32, 0.65);
}

.mode-icon-wrap {
    font-size: 32px;
    margin-bottom: 14px;
}

.mode-title {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.mode-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.mode-command {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}

.mode-command:hover {
    border-color: var(--accent-cyan);
    background: rgba(59, 158, 255, 0.08);
}

.mode-command code {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.copy-hint {
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
}

/* ==========================================================================
   PARTNERSHIP & FAQ
   ========================================================================== */
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.partner-card {
    background: rgba(16, 16, 23, 0.55);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.partner-icon {
    font-size: 26px;
    color: var(--accent-pink);
    margin-bottom: 12px;
}

.partner-title {
    font-size: 19px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.partner-req {
    font-size: 12.5px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.partner-benefits {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.partner-benefits li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    gap: 8px;
}

.partner-benefits li::before {
    content: '⚡';
    font-size: 12px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(16, 16, 23, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.open {
    border-color: var(--border-hover);
    background: rgba(22, 22, 32, 0.7);
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.faq-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.25s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #FFFFFF;
}

.faq-answer {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ==========================================================================
   CONTACT BOX & FOOTER
   ========================================================================== */
.contact-box {
    background: linear-gradient(135deg, rgba(16, 16, 23, 0.8) 0%, rgba(26, 26, 38, 0.6) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.contact-info p {
    font-size: 14.5px;
    color: var(--text-secondary);
    max-width: 550px;
}

.contact-buttons {
    display: flex;
    gap: 12px;
}

.sys-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 40px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.15s;
}

.footer-nav a:hover {
    color: #FFFFFF;
}

.sys-footer p {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   FULL PRIVILEGES COMPARISON MATRIX MODAL
   ========================================================================== */
.matrix-modal-dialog {
    max-width: 1040px;
    width: 95%;
}

.matrix-search-box {
    margin: 16px 0;
}

.matrix-search-box input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0 16px;
    height: 42px;
    color: #FFFFFF;
    font-size: 13.5px;
    outline: none;
}

.matrix-search-box input:focus {
    border-color: var(--accent-cyan);
}

.matrix-table-wrap {
    overflow-x: auto;
    max-height: 520px;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    text-align: center;
}

.matrix-table th, .matrix-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.matrix-table th {
    background: #111117;
    color: #FFFFFF;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 10;
}

.matrix-table th:first-child, .matrix-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    background: #0D0D12;
    position: sticky;
    left: 0;
    z-index: 5;
}

.matrix-table .col-highlight {
    background: rgba(45, 253, 0, 0.05);
}

.matrix-table .col-highlight-gold {
    background: rgba(255, 0, 149, 0.06);
}

.matrix-table .col-highlight-custom {
    background: rgba(251, 149, 0, 0.07);
}

.matrix-check {
    color: var(--accent-emerald);
    font-weight: 900;
}

.matrix-cross {
    color: var(--text-muted);
}

/* ==========================================================================
   MODAL WINDOWS & CHECKOUT
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    place-items: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeInModal 0.2s ease-out;
}

.modal-overlay.active {
    display: grid;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-dialog {
    background: #0D0D13;
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.15s;
}

.modal-close-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
}

.modal-header-badge {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    margin-bottom: 6px;
}

.modal-head-title {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.modal-head-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.field-group {
    margin-bottom: 16px;
}

.field-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.field-input {
    width: 100%;
    height: 42px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 11px;
    padding: 0 14px;
    color: #FFFFFF;
    font-size: 14px;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.15s;
}

.field-input:focus {
    border-color: var(--accent-cyan);
}

.promo-msg {
    font-size: 12px;
    margin-top: 6px;
    font-weight: 600;
}

.promo-msg.success {
    color: var(--accent-emerald);
}

.promo-msg.error {
    color: #FF4444;
}

.payment-methods-box {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.pay-badge-method {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.pay-badge-method.active {
    background: rgba(59, 158, 255, 0.12);
    border-color: rgba(59, 158, 255, 0.4);
    color: #FFFFFF;
}

.original-price-strike {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Toast */
.sys-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(16, 16, 23, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.sys-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-dot {
    color: var(--accent-emerald);
}

/* Mobile Quick Bar */
.mobile-quick-bar {
    position: fixed;
    bottom: 14px;
    left: 16px;
    right: 16px;
    background: rgba(10, 10, 14, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 8px;
    display: none;
    gap: 8px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.mobile-bar-btn {
    flex: 1;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.mobile-bar-btn.cta {
    background: #FFFFFF;
    color: #000000;
}

.mobile-bar-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-skin-stage {
        order: -1;
    }

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

    .chat-studio-workspace {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
    }

    .mobile-quick-bar {
        display: flex;
    }

    .sys-footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 640px) {
    .hero-heading {
        font-size: 38px;
    }

    .bento-stats {
        grid-template-columns: 1fr;
    }

    .roulette-banner {
        flex-direction: column;
        text-align: center;
    }

    .roulette-open-btn {
        width: 100%;
    }

    .hero-features-row {
        flex-direction: column;
        gap: 8px;
    }
}
