/* ============================================================
   GAME TURBO 5.0 — styles.css
   Brand Color: #2072B3 (Blue)
   ============================================================ */

/* =================== CSS VARIABLES =================== */
:root {
    --primary-color: #2072B3;
    --primary-dark: #195a8f;
    --primary-light: #4d9ecf;
    --primary-glow: rgba(32, 114, 179, 0.35);

    --secondary-color: #1a1a2e;
    --secondary-dark: #0d0d1a;
    --secondary-light: #2d2d4e;

    --accent-color: #3d90cc;
    --accent-green: #22c55e;

    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: #94a3b8;

    --background-light: #f8f8fc;
    --background-dark: #0d0d1a;
    --card-bg: #ffffff;
    --card-bg-dark: #1a1a2e;
    --card-shadow: rgba(0, 0, 0, 0.10);
    --card-shadow-hover: rgba(32, 114, 179, 0.2);

    --border-color: rgba(32, 114, 179, 0.2);

    --header-height: 76px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --section-padding: 90px 0;
    --transition-speed: 0.3s;
}

/* Dark Theme Variables */
.dark-theme {
    --text-dark: #e2e8f0;
    --text-muted: #64748b;
    --background-light: #0d0d1a;
    --card-bg: #1a1a2e;
    --card-shadow: rgba(0, 0, 0, 0.4);
    --border-color: rgba(32, 114, 179, 0.15);
}

/* =================== RESET & BASE =================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

p { margin-bottom: 1rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
a:hover { color: var(--primary-dark); }

section { padding: var(--section-padding); }
img { max-width: 100%; height: auto; }

/* =================== UTILITY =================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-align: center;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.15);
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.25);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* =================== LOADING SCREEN =================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.phone-loader {
    width: 300px;
    background: #1a1a2e;
    border-radius: 28px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(32,114,179,0.1);
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(32,114,179,0.15);
    font-size: 0.75rem;
    color: var(--primary-color);
}

.status-icons { display: flex; gap: 6px; }

.phone-screen-content {
    padding: 30px 20px;
    text-align: center;
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.loader-icon {
    font-size: 2.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.loading-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    animation: progress 2.5s ease-in-out forwards;
}

.loading-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@keyframes progress {
    0%   { width: 0%; }
    40%  { width: 50%; }
    80%  { width: 85%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}

/* =================== HEADER =================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.dark-theme header {
    background-color: rgba(13, 13, 26, 0.98);
}

header.scrolled {
    height: 60px;
    box-shadow: 0 4px 24px rgba(32,114,179,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link { text-decoration: none; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

.logo h1, .logo .logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    transition: font-size var(--transition-speed) ease;
}

header.scrolled .logo h1,
header.scrolled .logo .logo-name { font-size: 1.25rem; }

nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

nav ul li a {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-dark);
    background-color: var(--primary-color);
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(32,114,179,0.12);
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    background-color: var(--primary-color);
    color: var(--secondary-dark);
    transform: rotate(20deg);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(32,114,179,0.1);
    color: var(--primary-color);
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    color: var(--secondary-dark);
}

/* =================== HERO SECTION =================== */
.hero-section {
    padding-top: calc(var(--header-height) + 0px);
    padding-bottom: 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #0f172a 50%, #1a1a2e 100%);
    color: var(--text-light);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animated background particles */
.hero-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    animation: float-particle 8s infinite;
}

.hero-bg-particles span:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 9s;  }
.hero-bg-particles span:nth-child(2)  { left: 25%; animation-delay: 2s;   animation-duration: 7s;  width: 4px; height: 4px; }
.hero-bg-particles span:nth-child(3)  { left: 40%; animation-delay: 4s;   animation-duration: 10s; }
.hero-bg-particles span:nth-child(4)  { left: 55%; animation-delay: 1s;   animation-duration: 8s;  width: 3px; height: 3px; }
.hero-bg-particles span:nth-child(5)  { left: 70%; animation-delay: 3s;   animation-duration: 7s;  }
.hero-bg-particles span:nth-child(6)  { left: 80%; animation-delay: 5s;   animation-duration: 9s;  width: 5px; height: 5px; }
.hero-bg-particles span:nth-child(7)  { left: 15%; animation-delay: 6s;   animation-duration: 11s; width: 4px; height: 4px; }
.hero-bg-particles span:nth-child(8)  { left: 90%; animation-delay: 1.5s; animation-duration: 8s;  }
.hero-bg-particles span:nth-child(9)  { left: 60%; animation-delay: 3.5s; animation-duration: 6s;  width: 3px; height: 3px; }
.hero-bg-particles span:nth-child(10) { left: 35%; animation-delay: 7s;   animation-duration: 9s;  }

@keyframes float-particle {
    0%   { bottom: -10px; opacity: 0; }
    10%  { opacity: 0.5; }
    90%  { opacity: 0.3; }
    100% { bottom: 110%; opacity: 0; }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    flex: 1;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(32,114,179,0.15);
    border: 1px solid rgba(32,114,179,0.4);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.hero-text h1 .highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-features-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.hero-features-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

.trust-item i { color: var(--primary-color); }

/* ---- Phone Mockup ---- */
.hero-phone {
    position: relative;
    flex-shrink: 0;
}

.phone-mockup {
    width: 260px;
    background: #0a0a14;
    border-radius: 36px;
    border: 3px solid rgba(32,114,179,0.5);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 6px rgba(32,114,179,0.07),
        0 30px 60px rgba(0,0,0,0.6),
        0 0 80px rgba(32,114,179,0.15);
    animation: phone-float 4s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.phone-notch {
    width: 80px;
    height: 22px;
    background: #0a0a14;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-bottom: 2px solid rgba(32,114,179,0.15);
}

.phone-screen {
    padding: 0 14px 8px;
}

.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.7rem;
    color: #64748b;
}

.app-status-icons { display: flex; gap: 5px; }

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(32,114,179,0.15);
    margin-bottom: 12px;
}

.app-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.active-badge {
    background: var(--accent-green);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.app-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.stat-box {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.stat-box.fps  { border-color: rgba(34,197,94,0.3);  }
.stat-box.ram  { border-color: rgba(59,130,246,0.3);  }
.stat-box.ping { border-color: rgba(32,114,179,0.3);   }
.stat-box.temp { border-color: rgba(239,68,68,0.3);   }

.stat-label {
    display: block;
    font-size: 0.6rem;
    color: #64748b;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 2px;
}

.stat-box.fps  .stat-value { color: #22c55e; }
.stat-box.ping .stat-value { color: var(--primary-color); }
.stat-box.temp .stat-value { color: #ef4444; }

.stat-unit {
    display: block;
    font-size: 0.55rem;
    color: #475569;
}

.app-boost-btn {
    margin-bottom: 10px;
}

.boost-btn-inner {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-dark);
    font-weight: 800;
    font-size: 0.85rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.boost-btn-inner:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.boost-btn-inner.boosting {
    animation: boost-pulse 0.5s ease 3;
}

@keyframes boost-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.05); background: var(--primary-light); }
}

.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.6rem;
    color: #475569;
}

.app-bottom-nav span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-home-bar {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 8px auto 10px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* ---- Stats Ribbon ---- */
.stats-ribbon {
    width: 100%;
    background: rgba(32,114,179,0.1);
    border-top: 1px solid rgba(32,114,179,0.2);
    border-bottom: 1px solid rgba(32,114,179,0.2);
    position: relative;
    z-index: 2;
}

.stats-ribbon-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.ribbon-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.ribbon-stat strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.ribbon-stat span {
    font-size: 0.75rem;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.ribbon-divider {
    width: 1px;
    height: 35px;
    background: rgba(32,114,179,0.25);
}

/* =================== FEATURES SECTION =================== */
.features-section {
    background-color: var(--background-light);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: 0 4px 20px var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.dark-theme .feature-card {
    background-color: var(--card-bg-dark);
    border-color: var(--border-color);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--card-shadow-hover);
    border-color: rgba(32,114,179,0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.feature-badge {
    display: inline-flex;
    background: rgba(32,114,179,0.12);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    border: 1px solid rgba(32,114,179,0.25);
}

.dark-theme .feature-badge { color: var(--primary-color); }

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-list li i {
    color: var(--accent-green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* =================== WHY CHOOSE SECTION =================== */
.why-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #0f172a 100%);
    color: var(--text-light);
}

.why-section .section-header h2 { color: var(--text-light); }
.why-section .section-header p   { color: #64748b; }

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(32,114,179,0.15);
    border-radius: var(--border-radius-lg);
    padding: 30px 24px;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.why-card:hover {
    background: rgba(32,114,179,0.06);
    border-color: rgba(32,114,179,0.4);
    transform: translateY(-6px);
}

.why-number {
    position: absolute;
    top: -14px;
    left: 24px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: var(--secondary-dark);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.compat-strip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.compat-strip span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(32,114,179,0.1);
    border: 1px solid rgba(32,114,179,0.25);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =================== GAMES SECTION =================== */
.games-section {
    background-color: var(--background-light);
}

.games-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 0;
    pointer-events: none;
}

.carousel-control {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px var(--primary-glow);
    pointer-events: all;
}

.carousel-control:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.carousel-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    gap: 20px;
}

.game-card {
    flex: 0 0 auto;
    width: 200px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.dark-theme .game-card {
    background-color: var(--card-bg-dark);
    border-color: var(--border-color);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px var(--card-shadow-hover);
}

.game-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image-placeholder {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
}

.game-info {
    padding: 14px;
    text-align: center;
}

.game-info h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-dark);
    line-height: 1.3;
}

.game-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.game-turbo-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.6rem;
    color: var(--primary-dark);
    background: rgba(32,114,179,0.12);
    border: 1px solid rgba(32,114,179,0.3);
    padding: 2px 7px;
    border-radius: 50px;
    margin-top: 5px;
    font-weight: 600;
}

/* =================== DOWNLOAD SECTION =================== */
.download-section {
    background: var(--background-light);
}

.download-main {
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 0 20px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.download-card-main {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: 0 8px 40px var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.06);
}

.dark-theme .download-card-main {
    background: var(--card-bg-dark);
    border-color: var(--border-color);
}

.download-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.dark-theme .download-card-top { border-bottom-color: var(--border-color); }

.download-app-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px var(--primary-glow);
    flex-shrink: 0;
}

.download-app-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.download-meta i { color: var(--primary-color); }

.download-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.download-rating span { color: var(--text-muted); }

.download-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.download-features li i { color: var(--accent-green); }

.download-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.download-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(0,0,0,0.04);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.06);
}

.dark-theme .download-trust-badges span {
    background: rgba(255,255,255,0.05);
    border-color: var(--border-color);
}

.download-trust-badges i { color: var(--primary-color); }

.btn-download-main {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: var(--border-radius);
    letter-spacing: 0.3px;
}

.system-requirements {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 4px 20px var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.06);
    min-width: 280px;
}

.dark-theme .system-requirements {
    background: var(--card-bg-dark);
    border-color: var(--border-color);
}

.system-requirements h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.system-requirements h3 i { color: var(--primary-color); }

.system-requirements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.system-requirements ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: 12px;
}

.dark-theme .system-requirements ul li { border-bottom-color: var(--border-color); }
.system-requirements ul li:last-child { border-bottom: none; }

.req-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.req-label i { color: var(--primary-color); font-size: 0.8rem; }

.req-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

/* Download Steps */
.download-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-steps h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -12%;
    width: 24%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =================== REVIEWS SECTION =================== */
.reviews-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #0f172a 100%);
    color: var(--text-light);
}

.reviews-section .section-header h2 { color: var(--text-light); }
.reviews-section .section-header p  { color: #64748b; }

.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 56px;
    padding: 0 20px;
}

.review-summary-item {
    text-align: center;
}

.review-summary-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 4px;
}

.review-summary-item span {
    font-size: 0.82rem;
    color: #64748b;
}

.review-summary-item.highlight strong { color: var(--primary-color); }

.stars { color: var(--primary-color); font-size: 1rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    transition: all var(--transition-speed) ease;
}

.review-card:hover {
    background: rgba(32,114,179,0.06);
    border-color: rgba(32,114,179,0.25);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-dark);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info { flex: 1; }

.reviewer-info h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.reviewer-device {
    font-size: 0.75rem;
    color: #64748b;
}

.review-stars {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-card > p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic;
}

.review-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.review-tags span {
    font-size: 0.7rem;
    background: rgba(32,114,179,0.1);
    border: 1px solid rgba(32,114,179,0.25);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* =================== ABOUT / WHAT IS SECTION =================== */
.about-section {
    background: var(--background-light);
}

/* --- INTRO BANNER --- */
.about-intro {
    background: #ffffff;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.about-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(32,114,179,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(32,114,179,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-intro-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(32,114,179,0.15);
    color: var(--primary-color);
    border: 1px solid rgba(32,114,179,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-intro-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-intro-text p {
    font-size: 0.96rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-intro-text strong {
    color: var(--text-dark);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: #f8f8fc;
    border: 1px solid rgba(32,114,179,0.2);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(32,114,179,0.12);
}

.about-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- SHARED BLOCK STYLES --- */
.about-block {
    background: var(--background-light);
    padding: 80px 24px;
}

.about-block-inner,
.about-how-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.about-block-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-block-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(32,114,179,0.08);
    color: var(--primary-color);
    border: 1px solid rgba(32,114,179,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-block-header h3 {
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-block-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* --- WHAT'S NEW GRID --- */
.about-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-new-card {
    background: var(--card-bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-new-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-new-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(32,114,179,0.12);
    border-color: rgba(32,114,179,0.2);
}

.about-new-card:hover::after {
    transform: scaleX(1);
}

.dark-theme .about-new-card {
    background: var(--card-bg-dark);
    border-color: var(--border-color);
}

.about-new-icon {
    width: 48px;
    height: 48px;
    background: rgba(32,114,179,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: background 0.25s ease;
}

.about-new-card:hover .about-new-icon {
    background: var(--primary-color);
    color: #fff;
}

.about-new-card h4 {
    font-size: 0.97rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-new-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- HOW IT WORKS TIMELINE --- */
.about-how {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #0f172a 50%, #1a1a2e 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.about-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(32,114,179,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(32,114,179,0.07) 0%, transparent 50%);
    pointer-events: none;
}

.about-how-inner {
    position: relative;
    z-index: 1;
}

.about-how .about-block-header h3 { color: #fff; }
.about-how .about-block-header p  { color: rgba(255,255,255,0.55); }
.about-how .about-block-tag       { background: rgba(32,114,179,0.15); border-color: rgba(32,114,179,0.3); }

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(32,114,179,0.1));
}

.about-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.about-tl-step {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(32,114,179,0.2);
}

.about-tl-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    flex: 1;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-tl-item:hover .about-tl-content {
    background: rgba(32,114,179,0.1);
    border-color: rgba(32,114,179,0.3);
    box-shadow: 0 4px 20px rgba(32,114,179,0.12);
}

.about-tl-icon {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.about-tl-text h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}

.about-tl-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
}

.about-how-note {
    max-width: 800px;
    margin: 32px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(32,114,179,0.1);
    border: 1px solid rgba(32,114,179,0.3);
    border-radius: var(--border-radius);
    padding: 18px 24px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.about-how-note i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-how-note strong { color: #fff; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-intro-text h2 { font-size: 1.5rem; }
    .about-new-grid      { grid-template-columns: 1fr; }
    .about-timeline::before { left: 22px; }
    .about-tl-step { width: 46px; height: 46px; min-width: 46px; font-size: 0.95rem; }
    .about-tl-content { flex-direction: column; gap: 10px; }
}

/* =================== FAQ SECTION =================== */
.faq-section {
    background: var(--background-light);
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.dark-theme .faq-item {
    background: var(--card-bg-dark);
    border-color: var(--border-color);
}

.faq-item.open {
    border-color: rgba(32,114,179,0.35);
    box-shadow: 0 4px 16px rgba(32,114,179,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: background var(--transition-speed) ease;
}

.faq-question:hover { background: rgba(32,114,179,0.04); }
.faq-item.open .faq-question { background: rgba(32,114,179,0.05); }

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-icon { color: var(--primary-color); font-size: 1rem; flex-shrink: 0; }

.faq-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: transform var(--transition-speed) ease;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =================== FOOTER =================== */
footer {
    background: #080811;
    color: var(--text-light);
    text-align: center;
    padding: 52px 24px 40px;
    border-top: 3px solid var(--primary-color);
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-logo-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.footer-logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.footer-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-bottom: 28px;
}

.footer-links-row a {
    font-size: 0.875rem;
    color: #6b7280;
    transition: color var(--transition-speed) ease;
}

.footer-links-row a:hover {
    color: var(--primary-color);
}

.footer-copy {
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: #374151;
    line-height: 1.7;
}

@media (max-width: 576px) {
    footer { padding: 40px 20px 32px; }
    .footer-links-row { gap: 8px 18px; }
}

/* =================== MODAL =================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 2000;
    overflow: auto;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal.show { display: flex; }

.modal-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(32,114,179,0.2);
    position: relative;
    animation: modalOpen 0.3s ease forwards;
}

.dark-theme .modal-content { background: var(--card-bg-dark); }

@keyframes modalOpen {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-speed) ease;
    z-index: 1;
    background: transparent;
    border: none;
}

.close-modal:hover { color: var(--primary-color); }

.modal-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.dark-theme .modal-header { border-bottom-color: var(--border-color); }

.modal-header h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.modal-header h2 i { color: var(--primary-color); }

.modal-body { padding: 24px 28px 28px; }

.download-message {
    font-size: 1rem;
    margin-bottom: 22px;
    color: var(--text-dark);
    text-align: center;
}

.download-progress-container {
    width: 100%;
    height: 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.dark-theme .download-progress-container { background: rgba(255,255,255,0.08); }

.download-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.download-status {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

#start-download {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    font-size: 1rem;
    border-radius: var(--border-radius);
}

.download-notes p {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.download-notes i { color: var(--primary-color); flex-shrink: 0; margin-top: 2px; }

/* =================== PRIVACY POLICY PAGE =================== */
.privacy-policy-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: calc(100vh - 200px);
}

.privacy-content {
    max-width: 860px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: 0 4px 30px var(--card-shadow);
}

.dark-theme .privacy-content {
    background: var(--card-bg-dark);
    border: 1px solid var(--border-color);
}

.effective-date {
    background: rgba(32,114,179,0.08);
    border: 1px solid rgba(32,114,179,0.2);
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.privacy-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dark-theme .privacy-content h3 { border-bottom-color: var(--border-color); }

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.privacy-content ul li {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
    margin: 10px auto 0;
}

/* =================== MOBILE NAVIGATION =================== */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }

    .logo h1, .logo .logo-name {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 55vw;
    }

    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(13,13,26,0.98);
        backdrop-filter: blur(20px);
        padding: 16px 20px;
        transform: translateY(-110%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, visibility 0.35s ease;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }

    /* Keep nav flush with header when it shrinks on scroll */
    header.scrolled nav { top: 60px; }

    nav.mobile-nav-open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 4px;
    }

    nav ul li a {
        display: block;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 1rem;
    }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 2.6rem; }
    .hero-content { gap: 40px; }
    .phone-mockup { width: 230px; }
}

@media (max-width: 860px) {
    :root { --section-padding: 70px 0; }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px 40px;
        gap: 50px;
    }

    .hero-text { max-width: 100%; }
    .hero-text h1 { font-size: 2.4rem; }

    .hero-features-list { text-align: left; display: inline-flex; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }

    .hero-phone {
        order: -1;
    }

    .phone-mockup { width: 220px; }

    .section-header h2 { font-size: 2rem; }

    .download-main { flex-direction: column; }
    .download-side { width: 100%; }
    .system-requirements { min-width: 0; width: 100%; padding: 22px 20px; }
    .system-requirements h3 { font-size: 1.05rem; margin-bottom: 14px; }
    .system-requirements ul li { padding: 10px 0; }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step { width: 100%; max-width: 360px; }
    .step:not(:last-child)::after { display: none; }

    .games-carousel { padding: 0 48px; }
}

@media (max-width: 576px) {
    :root {
        --header-height: 60px;
        --section-padding: 56px 0;
    }

    .logo h1, .logo .logo-name { font-size: 1rem; max-width: 52vw; }
    .logo-icon { height: 28px !important; }

    .hero-text h1 { font-size: 1.9rem; }
    .hero-text > p { font-size: 1rem; }

    .btn { padding: 12px 22px; font-size: 0.95rem; }

    .features-container { grid-template-columns: 1fr; }
    .why-container      { grid-template-columns: 1fr; }
    .reviews-grid       { grid-template-columns: 1fr; }
    .download-features  { grid-template-columns: 1fr; }

    .system-requirements { padding: 18px 14px; }
    .system-requirements ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    .req-value { text-align: left; font-size: 0.9rem; }
    .req-label { font-size: 0.82rem; }

    .games-carousel { padding: 0 40px; }
    .carousel-control { width: 36px; height: 36px; font-size: 0.85rem; }

    .stats-ribbon-inner {
        gap: 0;
        justify-content: space-around;
    }
    .ribbon-stat { padding: 0 10px; }
    .ribbon-stat strong { font-size: 1.1rem; }
    .ribbon-divider { display: none; }

    .section-header h2 { font-size: 1.7rem; }

    .privacy-content { padding: 28px 20px; }

    .phone-mockup { width: 200px; }

    .footer-content { flex-direction: column; }
}

/* =================== COMPARISON TABLE SECTION =================== */
.comparison-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.comparison-table-wrap {
    max-width: 900px;
    margin: 0 auto 32px;
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.95rem;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #1a1a2e 100%);
}

.comparison-table thead th {
    padding: 16px 20px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table thead th.col-v4 {
    color: var(--primary-color);
}

.badge-new {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(32,114,179,0.04);
}

.comparison-table tbody td {
    padding: 14px 20px;
    color: #374151;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid #f0f0f0;
}

.win-cell {
    color: #16a34a !important;
    font-weight: 500;
}

.win-cell i { color: #16a34a; margin-right: 6px; }

.lose-cell {
    color: #9ca3af !important;
}

.lose-cell i { color: #d1d5db; margin-right: 6px; }

.neutral-cell {
    color: #6b7280 !important;
}

.comparison-verdict {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(32,114,179,0.08) 0%, rgba(32,114,179,0.04) 100%);
    border: 1px solid rgba(32,114,179,0.25);
    border-radius: var(--border-radius);
    padding: 18px 28px;
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.6;
}

.comparison-verdict i {
    color: #f59e0b;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .comparison-section { padding-left: 14px; padding-right: 14px; }
    .comparison-table-wrap { margin: 0 0 24px; border-radius: var(--border-radius); }
    .comparison-table { font-size: 0.8rem; min-width: 520px; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 10px 10px; }
    .comparison-table tbody td:first-child { white-space: nowrap; }
    .comparison-verdict { margin: 0; padding: 14px 16px; }
}

