/* ==========================================================================
   HEATHWORLD — ULTRA-CLEAN MODERN MINECRAFT STORE STYLES
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-base: #08090D;
    --bg-surface: #0F1118;
    --bg-surface-2: #161922;
    --bg-card: rgba(18, 21, 30, 0.85);
    --bg-card-hover: rgba(25, 29, 42, 0.95);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --border-active: #3B9EFF;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A5B5;
    --text-muted: #6B7280;

    /* Accents */
    --accent-blue: #3B9EFF;
    --accent-blue-glow: rgba(59, 158, 255, 0.25);
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --accent-red: #EF4444;

    /* Typography */
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, monospace;

    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-ui);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #3B9EFF 0%, #2563EB 100%);
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--accent-blue-glow);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 158, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 9, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 0 16px rgba(59, 158, 255, 0.25);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #FFFFFF;
}

.brand-badge {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav-item:hover, .nav-item.active {
    color: #FFFFFF;
}

.nav-item-tg {
    color: var(--accent-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* IP Chip */
.ip-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 7px 14px;
    color: var(--text-primary);
    cursor: pointer;
    font-family: var(--font-ui);
    transition: all 0.2s ease;
}

.ip-chip:hover {
    background: rgba(59, 158, 255, 0.08);
    border-color: rgba(59, 158, 255, 0.35);
}

.ip-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.ip-address {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.ip-online {
    font-size: 12px;
    color: var(--text-muted);
    border-left: 1px solid var(--border-subtle);
    padding-left: 8px;
}

/* Profile Button */
.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 6px 12px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-ui);
    transition: all 0.2s ease;
}

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

.profile-avatar {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    image-rendering: pixelated;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Mobile Drawer */
.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-subtle);
    z-index: 9999;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    transform: translateX(-300px);
}

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.15s ease;
}

.drawer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.drawer-link-tg {
    color: var(--accent-blue);
    background: rgba(59, 158, 255, 0.08);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 70px 0 50px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.18) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 75%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 6px var(--accent-green);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 20%, #3B9EFF 70%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Player Bar in Hero */
.player-bar-wrap {
    width: 100%;
    max-width: 480px;
    margin-bottom: 36px;
}

.player-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: border-color 0.2s ease;
}

.player-bar:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(59, 158, 255, 0.15);
}

.hero-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    image-rendering: pixelated;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.player-input-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.player-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14.5px;
    font-weight: 600;
    width: 100%;
}

.player-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.player-btn {
    padding: 9px 16px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hero Chips */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: border-color 0.2s;
}

.hero-chip:hover {
    border-color: var(--border-hover);
    color: #FFFFFF;
}

.chip-icon {
    font-size: 15px;
}

/* Store Section */
.store-section {
    padding: 50px 0 80px;
}

.store-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

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

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.text-center {
    text-align: center;
}

/* Store Category Tabs */
.store-tabs {
    display: flex;
    background: var(--bg-surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 4px;
    gap: 4px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tab-btn:hover {
    color: #FFFFFF;
}

.tab-btn.active {
    background: var(--accent-blue);
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(59, 158, 255, 0.35);
}

/* Period Bar */
.period-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.period-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.period-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.period-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    color: var(--text-secondary);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.period-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.period-pill.active {
    background: rgba(59, 158, 255, 0.12);
    border-color: var(--accent-blue);
    color: #FFFFFF;
}

.discount-tag {
    font-size: 11px;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 2px 6px;
    border-radius: 4px;
}

.discount-tag.hot {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

/* Product Cards Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    background: #111420;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s, box-shadow 0.28s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-accent, rgba(255, 255, 255, 0.35));
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.75), 0 0 35px var(--card-glow, transparent);
}

.product-card.featured {
    border-color: var(--card-accent, var(--accent-blue));
}

/* 3D Character Art / Illustration Container */
.card-art-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.03) 0%, #0a0d16 80%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-art-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-art-glow {
    opacity: 1;
}

/* Badges Row */
.card-badges-row {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.card-corner-badge {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card-discount-badge {
    background: rgba(239, 68, 68, 0.22);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ff5252;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: var(--font-mono);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* 3D Artwork Image */
.card-art-img-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.card-art-img {
    max-height: 185px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.75));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-art-img.cover-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-art-img.case-img {
    max-height: 135px;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.85));
}

.product-card:hover .card-art-img {
    transform: scale(1.06) translateY(-4px);
}

/* Card Body */
.card-body {
    padding: 16px 4px 4px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.3px;
    margin: 0;
}

.card-rank-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    font-family: var(--font-mono);
    letter-spacing: 0.2px;
}

/* Mini Perks */
.card-perks-mini {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-perks-mini li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.35;
}

.mini-check {
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

/* Case Packages Pills */
.card-case-packs {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.case-pack-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 11.5px;
    color: var(--text-secondary);
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Card Bottom Price & Action Row */
.card-bottom-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.card-price-block {
    display: flex;
    flex-direction: column;
}

.card-old-price-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
}

.old-price-label {
    font-size: 10.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.old-price-strike {
    text-decoration: line-through;
    color: #ff6b6b;
    font-weight: 600;
    font-family: var(--font-mono);
}

.card-current-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

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

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

.card-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-card-perks {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 8px 11px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font-ui);
    transition: all 0.2s;
}

.btn-card-perks:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-card-buy {
    background: linear-gradient(135deg, var(--btn-accent, var(--accent-blue)) 0%, #1e3a8a 100%);
    border: none;
    color: #FFFFFF;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--font-ui);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.btn-card-buy:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--card-glow, rgba(59, 158, 255, 0.4));
}

/* Features Section */
.features-section {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.faq-support-card {
    background: rgba(59, 158, 255, 0.05);
    border: 1px solid rgba(59, 158, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
}

.support-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(59, 158, 255, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

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

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

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

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

/* Footer */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

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

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

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.96);
    transition: transform 0.2s ease;
}

.modal-backdrop.open .modal-box {
    transform: scale(1);
}

.modal-box-large {
    max-width: 580px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
}

.modal-close:hover {
    background: rgba(255, 0, 80, 0.2);
    border-color: rgba(255, 0, 80, 0.4);
    color: #FFFFFF;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-badge-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

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

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

/* Inputs & Form Controls */
.input-group {
    margin-bottom: 16px;
}

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

.text-input, .select-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 11px 14px;
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
}

.text-input:focus, .select-input:focus {
    border-color: var(--accent-blue);
    background: rgba(59, 158, 255, 0.04);
}

.select-input option {
    background: var(--bg-surface);
    color: #FFFFFF;
}

.nick-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-avatar-img {
    position: absolute;
    left: 10px;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    image-rendering: pixelated;
    z-index: 1;
}

.nick-padded-input {
    padding-left: 44px;
}

.promo-input-row {
    display: flex;
    gap: 8px;
}

.promo-feedback {
    font-size: 12px;
    margin-top: 5px;
}

.promo-feedback.success {
    color: var(--accent-green);
}

.promo-feedback.error {
    color: var(--accent-red);
}

/* Payment Methods Grid */
.pay-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pay-method-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease;
}

.pay-method-card:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.06);
}

.pay-method-card.active {
    border-color: var(--accent-blue);
    background: rgba(59, 158, 255, 0.1);
}

.pay-radio {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}

.pay-method-card.active .pay-radio {
    background: var(--accent-blue);
    box-shadow: 0 0 8px var(--accent-blue);
}

.pay-method-name {
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
}

/* Checkout Price Box */
.checkout-price-box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 20px 0 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

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

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

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

/* Perks Scrollable in Modal */
.perks-scrollable {
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 6px;
}

.perks-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.kit-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 8px;
}

.kit-item-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
}

.kit-item-icon {
    font-size: 18px;
}

.commands-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.command-line {
    font-size: 12.5px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

/* Rules List */
.rules-list {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 6px;
}

.rule-entry h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.rule-entry p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Direct SBP Payment Modal */
.modal-sbp-box {
    max-width: 440px;
    padding: 28px 24px;
    text-align: center;
}

.sbp-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 158, 255, 0.12);
    border: 1px solid rgba(59, 158, 255, 0.35);
    color: #38bdf8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
}

.sbp-badge-header .sbp-icon {
    font-size: 13px;
}

.sbp-qr-wrapper {
    margin: 18px auto 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sbp-qr-card {
    background: #FFFFFF;
    padding: 12px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 158, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.2s ease;
}

.sbp-qr-card:hover {
    transform: scale(1.02);
}

.sbp-qr-image {
    width: 175px;
    height: 175px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.sbp-qr-caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 320px;
    line-height: 1.4;
}

.sbp-mobile-btn-wrap {
    margin: 12px 0 16px;
}

.btn-sbp-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13.5px;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid rgba(56, 189, 248, 0.45);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
    transition: all 0.2s ease;
}

.btn-sbp-direct:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.55);
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #FFFFFF;
}

.sbp-btn-arrow {
    font-size: 15px;
    opacity: 0.8;
}

.sbp-details-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    margin-bottom: 16px;
}

.sbp-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    padding: 3px 0;
}

.sbp-detail-row.highlight {
    background: rgba(59, 158, 255, 0.08);
    border: 1px solid rgba(59, 158, 255, 0.2);
    padding: 7px 10px;
    border-radius: 8px;
}

.sbp-detail-label {
    color: var(--text-muted);
    font-size: 12px;
}

.sbp-detail-value {
    color: #FFFFFF;
    font-size: 12.5px;
    text-align: right;
}

.sbp-copy-val-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sbp-detail-value-price {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 800;
    color: #34d399;
}

.sbp-detail-value-nick {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #FFFFFF;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-copy-chip:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.sbp-confirm-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-sbp-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #FFFFFF;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(52, 211, 153, 0.4);
    transition: all 0.2s ease;
}

.btn-sbp-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.55);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #FFFFFF;
}

.sbp-help-note {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Toast */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(18, 21, 30, 0.95);
    border: 1px solid rgba(59, 158, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100000;
    font-size: 13.5px;
    font-weight: 600;
    color: #FFFFFF;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

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

.toast-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 40px;
    }

    .store-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .ip-address {
        display: none;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 14.5px;
    }

    .player-bar {
        flex-wrap: wrap;
    }

    .player-btn {
        width: 100%;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }

    .pay-methods-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}
