:root {
    --bg-main: #0a0814;
    --bg-card: rgba(22, 17, 43, 0.75);
    --bg-card-hover: rgba(33, 26, 64, 0.85);
    --border-color: rgba(255, 215, 0, 0.18);
    
    --primary-gold: #ffd700;
    --primary-gold-hover: #ffae00;
    --gold-glow: rgba(255, 215, 0, 0.4);
    
    --accent-purple: #7b2cbf;
    --accent-cyan: #00f0ff;
    --accent-telegram: #0088cc;
    --accent-green: #00e676;
    
    --text-main: #ffffff;
    --text-muted: #a09cb0;
    --text-gold: #ffe600;
    
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    padding-bottom: 0;
}

/* Headings & Buttons Font Configuration (Max font-weight 800) */
h1, h2, h3, h4, h5, h6, button, .btn, .download-btn, .main-download-btn, .sticky-btn, .nav-btn, .nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
}

.bg-glow-1 {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.35) 0%, rgba(255, 215, 0, 0.15) 60%, transparent 100%);
}

.bg-glow-2 {
    top: 800px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
}

.bg-glow-3 {
    top: 1800px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, transparent 70%);
}

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

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

.gold-text {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Buttons (Border Radius 7px) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 7px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffe600 0%, #ff9900 100%);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 174, 0, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 35px rgba(255, 174, 0, 0.55);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00b2ff 100%);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 178, 255, 0.4);
}

.btn-telegram:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 178, 255, 0.6);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

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

/* Header & Navbar */
.navbar {
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 8, 20, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

.logo-badge {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #000;
    padding: 3px 8px;
    border-radius: 7px;
    font-size: 1.15rem;
    font-weight: 800;
}

.logo-text .dot { color: var(--primary-gold); }

/* Header Actions Container for Mobile Always-Visible Buttons */
.mobile-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-telegram-btn {
    display: none;
    padding: 8px 14px;
    font-size: 0.92rem;
    border-radius: 7px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 7px;
    cursor: pointer;
    padding: 8px 10px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.2s ease;
    padding: 6px 4px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* HERO SECTION Layout */
.hero-section {
    padding: 40px 0 20px;
}

.hero-top-header {
    margin-bottom: 30px;
    text-align: center;
}

.hero-title-full {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff 20%, #ffd700 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 7px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-box { margin-bottom: 30px; }

.main-download-btn {
    width: 100%;
    padding: 16px 24px;
    justify-content: flex-start;
    border-radius: 7px;
}

.btn-icon {
    background: rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 7px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-caption {
    font-size: 0.82rem;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 700;
}

.btn-main-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.file-meta {
    display: flex;
    gap: 10px;
    font-size: 0.97rem;
    color: var(--text-muted);
    margin-top: 14px;
    align-items: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 14px 10px;
    border-radius: 7px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* User Banner Frame & Styling */
.banner-frame {
    position: relative;
    border: 2px solid var(--primary-gold);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.25);
    transition: transform 0.4s ease;
}

.banner-frame:hover {
    transform: translateY(-4px) scale(1.01);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
}

/* Content Sections */
.content-section { padding: 20px 0; }
.dark-bg {
    background: rgba(14, 11, 28, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header { margin-bottom: 35px; }
.section-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: block;
}

.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }

/* Glass Card & Info Layouts */
.info-glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 30px;
    backdrop-filter: blur(15px);
}

.lead-text { font-size: 1.1rem; line-height: 1.7; margin-bottom: 18px; }

.highlights-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hl-item { display: flex; gap: 12px; align-items: flex-start; }
.hl-icon {
    font-size: 1.8rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px;
    border-radius: 7px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.hl-item h3 { font-size: 1.15rem; margin-bottom: 3px; }
.hl-item p { font-size: 0.92rem; color: var(--text-muted); }

/* FEATURES GRID (COMPACT SINGLE-LINE ICON + TITLE) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 7px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-card:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 0;
}

.feature-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    flex-shrink: 0;
}

.feature-header h3, .feature-card h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* COMPACT STEPS GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 22px;
    border-radius: 7px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.step-num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
}

.step-header h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

/* BONUS CARDS GRID */
.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 26px 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
}

.highlight-border {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.bonus-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ff0055, #ff5500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 7px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 12px rgba(255, 0, 85, 0.45);
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 2;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.highlight-border .bonus-header {
    padding-right: 95px;
}

.bonus-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    flex-shrink: 0;
}

.bonus-header h3 {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.25;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* COMPACT BLOG CARDS (DIRECT REFERRAL LINK CARDS WITH ICON + TITLE IN 1 LINE) */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.game-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.game-badge {
    display: none;
}

.game-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
    padding-right: 0;
    width: 100%;
}

.game-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    flex-shrink: 0;
    margin-bottom: 0;
}

.game-header h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.25;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

.btn-link {
    color: var(--primary-gold);
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: transform 0.2s ease;
}

.btn-link:hover {
    transform: translateX(4px);
    color: var(--primary-gold-hover);
}

/* ULTRA-STYLISH VIP SPECS CARD REDESIGN (Border Radius 7px) */
.vip-specs-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.22);
    backdrop-filter: blur(20px);
}

.vip-specs-header {
    background: linear-gradient(135deg, rgba(30, 22, 60, 0.95), rgba(15, 10, 35, 0.98));
    padding: 22px 26px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.specs-badge {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 7px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    font-family: var(--font-heading);
}

.vip-specs-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.vip-specs-body {
    padding: 12px 26px;
}

.vip-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.vip-spec-row:last-child {
    border-bottom: none;
}

.vip-spec-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.spec-label-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-shrink: 0;
}

.spec-name {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-heading);
}

.spec-val-pill {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    padding: 6px 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cyan-pill {
    color: var(--accent-cyan);
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.08);
}

.gold-pill {
    color: var(--primary-gold);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.green-pill {
    color: var(--accent-green);
    border-color: rgba(0, 230, 118, 0.3);
    background: rgba(0, 230, 118, 0.08);
}

.vip-specs-footer {
    padding: 24px 26px;
    background: rgba(10, 8, 20, 0.7);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.specs-cta-btn {
    padding: 14px 32px;
    font-size: 1.15rem;
    border-radius: 7px;
    box-shadow: 0 10px 25px rgba(255, 174, 0, 0.4);
}

/* FULL WIDTH LIST TYPE COMPARISON SECTION (Border Radius 7px) */
.comp-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.comp-list-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
}

.comp-list-item:hover {
    border-color: var(--primary-gold);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
}

.comp-list-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.comp-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    flex-shrink: 0;
}

.comp-list-header h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.25;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

.comp-list-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 460px;
    flex-shrink: 0;
}

.val-badge {
    padding: 7px 12px;
    border-radius: 7px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.gold-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 174, 0, 0.12));
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.dark-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
}

/* Guide Box */
.guide-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 7px;
}

.guide-content h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--primary-gold); }

.custom-list {
    margin: 16px 0 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
}

.note-box {
    background: rgba(0, 230, 118, 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 12px 16px;
    border-radius: 7px;
    font-size: 0.92rem;
}

/* App Showcase Card */
.app-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 30px;
}

.app-info h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--primary-gold); }
.app-info p { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--primary-gold);
    padding: 6px 14px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: var(--font-heading);
}

/* LSI Keyword Cloud */
.kw-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.kw-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.faq-icon { font-size: 1.3rem; color: var(--primary-gold); transition: transform 0.3s ease; }
.faq-answer { margin-top: 12px; color: var(--text-muted); font-size: 0.95rem; display: none; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Final CTA Section */
.final-cta-card {
    background: linear-gradient(135deg, rgba(30, 22, 60, 0.9), rgba(15, 10, 35, 0.95));
    border: 2px solid var(--border-color);
    padding: 40px 20px;
    border-radius: 7px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.final-cta-card h2 { font-size: 2.2rem; margin-bottom: 12px; }
.final-cta-card p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 24px; }
.final-btn { margin: 0 auto; }

/* Footer (LARGER FONTS & CLEAR VISIBILITY) */
.footer {
    padding: 45px 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #06040d;
}

.footer-links a {
    font-size: 0.97rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-gold) !important;
}

.footer-disclaimer {
    max-width: 750px;
    margin: 18px auto;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.copyright {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* FLOATING ULTRA-STYLISH MOBILE STICKY CTA BUTTON (NO BACKGROUND, NO TOP BORDER, ONLY FLOATING BUTTON) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 12px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 16px calc(4px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 9999;
    box-sizing: border-box;
    pointer-events: none;
}

.sticky-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.sticky-info {
    display: none !important;
}

.sticky-btn {
    pointer-events: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px !important;
    font-size: 1.12rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    border-radius: 7px !important;
    background: linear-gradient(135deg, #ffd700 0%, #ff9900 100%) !important;
    color: #000 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 8px 30px rgba(255, 174, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5) !important;
    animation: ctaGlowPulse 2s infinite ease-in-out;
    text-transform: uppercase;
}

@keyframes ctaGlowPulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 174, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 174, 0, 0.95), 0 0 30px rgba(255, 215, 0, 0.85);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 174, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
}

/* RESPONSIVE BREAKPOINTS & MOBILE NAVIGATION DRAWER */
@media (max-width: 1024px) {
    .hero-title-full { font-size: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
}

@media (max-width: 900px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    .container { padding: 0 10px; max-width: 100% !important; box-sizing: border-box; overflow-x: hidden; }
    .nav-container { padding: 0 10px; max-width: 100% !important; box-sizing: border-box; }

    .vip-specs-card, .comp-list-wrapper, .guide-box, .app-showcase-card, .faq-list {
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .vip-spec-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-title-full {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* 2-COLUMN KEYWORD BUTTONS GRID ON MOBILE */
    .kw-cloud {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .kw-tag {
        font-size: 0.82rem;
        padding: 8px 6px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* SINGLE DOWNLOAD BUTTON ON MOBILE STICKY BAR (REMOVE LEFT TEXT) */
    .sticky-info {
        display: none !important;
    }

    .sticky-inner {
        justify-content: center;
        width: 100%;
    }

    .sticky-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 18px !important;
        font-size: 1.02rem !important;
    }
    
    .mobile-menu-toggle { display: flex; }
    .mobile-telegram-btn { display: inline-flex; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 8, 20, 0.98);
        backdrop-filter: blur(25px);
        border-bottom: 2px solid var(--primary-gold);
        flex-direction: column;
        padding: 20px 10px;
        gap: 16px;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    }
    
    .nav-menu.active { display: flex; }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 12px;
    }
    
    .nav-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-cta-group .btn {
        width: 100%;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-visual-col {
        order: -1;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-subtitle { margin: 0 auto 20px; }
    .main-download-btn { margin: 0 auto; }
    .file-meta { justify-content: center; }
    .hero-title-full { font-size: 2.1rem; }
    .banner-frame { max-width: 500px; margin: 0 auto; }
    .features-grid, .steps-grid, .bonus-cards-grid, .games-grid { grid-template-columns: 1fr; }
    
    .comp-list-item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 14px; }
    .comp-list-details { grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; max-width: 100%; }
    .val-badge { font-size: 0.82rem; padding: 6px 6px; }
}

@media (max-width: 600px) {
    .vip-specs-body { padding: 10px 14px; }
    .vip-specs-header { padding: 18px 14px; }
    .vip-specs-footer { padding: 20px 14px; }
    .vip-spec-row { flex-direction: row; justify-content: space-between; align-items: center; }
    .spec-val-pill { font-size: 0.88rem; padding: 5px 10px; }
    .spec-name { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 10px; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title-full { font-size: 1.7rem; }
    .nav-container { padding: 0 10px; }
    .feature-header h3, .step-header h3, .bonus-header h3, .game-header h3, .comp-list-header h3 { font-size: 1.15rem; }
    .highlight-border .bonus-header { padding-right: 0; }
    .val-badge { font-size: 0.78rem; padding: 6px 4px; letter-spacing: 0; }
    
    .sticky-title { font-size: 0.82rem; }
    .sticky-sub { font-size: 0.72rem; }
    .sticky-btn { font-size: 0.82rem !important; padding: 7px 12px !important; }
}
