/* ========== VARIABLES ========== */
:root {
    --black: #050505;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --dark-5: #2a2a2a;
    --orange: #ff6a00;
    --orange-light: #ff8c33;
    --orange-hot: #ff4500;
    --orange-dark: #cc5500;
    --orange-glow: rgba(255, 106, 0, 0.4);
    --fire-red: #ff3300;
    --gold: #ffd700;
    --gold-dark: #b8960f;
    --gold-light: #ffe44d;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-200: #d0d0d0;
    --gray-300: #a0a0a0;
    --gray-400: #777777;
    --gray-500: #555555;
    --gray-600: #333333;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-light); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-lg); }
.text-gradient {
    background: linear-gradient(135deg, var(--orange), var(--gold), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-fire {
    background: linear-gradient(180deg, var(--gold-light), var(--orange), var(--fire-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px var(--orange-glow));
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    box-shadow: 0 4px 20px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    box-shadow: 0 6px 30px rgba(255, 106, 0, 0.6);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold-dark);
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover {
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 106, 0, 0.15);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nav-logo img {
    height: 45px;
    width: auto;
}
.logo-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    -webkit-text-fill-color: var(--black);
    -webkit-text-stroke: 1.5px var(--orange);
    text-shadow:
        2px 2px 0 var(--orange),
        -1px -1px 0 var(--orange),
        1px -1px 0 var(--orange),
        -1px 1px 0 var(--orange),
        0 0 10px var(--orange-glow),
        0 0 20px rgba(255, 106, 0, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.8));
}
.logo-slogan {
    font-size: 0.55rem;
    color: var(--gray-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-links {
    display: flex;
    gap: var(--space-lg);
}
.nav-links a {
    color: var(--gray-300);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: var(--space-md); }
.lang-switch { display: flex; gap: 4px; }
.lang-btn {
    background: var(--dark-3);
    color: var(--gray-400);
    border: 1px solid var(--dark-5);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    border-color: var(--orange);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--black);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(255, 106, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 69, 0, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
    z-index: 3;
}

/* Fire particles */
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.fire-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}
.fire-particle.p1 { width: 3px; height: 3px; background: var(--orange); left: 15%; bottom: 30%; animation: fireFloat 5s ease-in-out infinite 0s; }
.fire-particle.p2 { width: 4px; height: 4px; background: var(--gold); left: 25%; bottom: 20%; animation: fireFloat 4s ease-in-out infinite 0.5s; }
.fire-particle.p3 { width: 2px; height: 2px; background: var(--orange-hot); left: 45%; bottom: 25%; animation: fireFloat 6s ease-in-out infinite 1s; }
.fire-particle.p4 { width: 3px; height: 3px; background: var(--gold-light); left: 65%; bottom: 15%; animation: fireFloat 4.5s ease-in-out infinite 1.5s; }
.fire-particle.p5 { width: 5px; height: 5px; background: var(--orange); left: 80%; bottom: 20%; animation: fireFloat 5.5s ease-in-out infinite 2s; }
.fire-particle.p6 { width: 2px; height: 2px; background: var(--gold); left: 35%; bottom: 10%; animation: fireFloat 4s ease-in-out infinite 2.5s; }
.fire-particle.p7 { width: 3px; height: 3px; background: var(--orange-light); left: 55%; bottom: 35%; animation: fireFloat 5s ease-in-out infinite 3s; }
.fire-particle.p8 { width: 4px; height: 4px; background: var(--fire-red); left: 75%; bottom: 25%; animation: fireFloat 6s ease-in-out infinite 0.8s; }

@keyframes fireFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { transform: translateY(-400px) scale(0); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.hero-title { margin-bottom: var(--space-lg); }
.title-line1 {
    display: block;
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--black);
    -webkit-text-fill-color: var(--black);
    -webkit-text-stroke: 2px var(--orange);
    text-shadow:
        3px 3px 0 var(--orange),
        -1px -1px 0 var(--orange),
        1px -1px 0 var(--orange),
        -1px 1px 0 var(--orange),
        0 0 20px var(--orange-glow),
        0 0 40px rgba(255, 106, 0, 0.3),
        0 0 60px rgba(255, 69, 0, 0.15);
    filter: drop-shadow(4px 4px 3px rgba(0,0,0,0.9));
    line-height: 1;
    animation: fadeInUp 0.6s ease 0.1s both;
}
.title-line2 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--gray-200);
    margin-top: var(--space-sm);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease 0.2s both;
}
.title-line2 .text-gradient {
    font-weight: 700;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-300);
    max-width: 500px;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.3s both;
    line-height: 1.8;
}
.hero-subtitle strong {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(255, 215, 0, 0.04));
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: var(--radius-lg);
    animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--gold-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px var(--orange-glow));
    line-height: 1.1;
}
.stat-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--orange-dark), transparent);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phoenix-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.25), rgba(255, 69, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}
.hero-image-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}
.hero-image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 0 30px var(--orange-glow));
}
.hero-image-placeholder.show-fallback .fallback-content { display: flex; }
.fallback-content {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 2px dashed var(--dark-5);
    border-radius: var(--radius-xl);
    color: var(--gray-500);
    gap: var(--space-sm);
}
.fallback-content .phoenix-icon { font-size: 4rem; }
.fallback-content span { font-weight: 600; font-size: 1.1rem; }
.fallback-content small { font-size: 0.8rem; color: var(--gray-600); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.4;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

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

/* ========== SECTIONS ========== */
.section { padding: var(--space-4xl) 0; position: relative; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 10px var(--orange-glow);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}
.section-desc {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about-section {
    background: var(--dark);
    border-top: 1px solid rgba(255, 106, 0, 0.08);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: var(--space-xl);
}
.about-card {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(255, 106, 0, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
    opacity: 0;
    transition: var(--transition);
}
.about-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.1), 0 0 60px rgba(255, 106, 0, 0.05);
}
.about-card:hover::before { opacity: 1; }
.about-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    box-shadow: 0 5px 20px var(--orange-glow);
}
.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}
.about-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== PROFIT ========== */
.profit-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        var(--black);
}
.profit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}
.profit-card {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid var(--dark-5);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.profit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.1);
}
.profit-card.featured {
    border: 2px solid var(--orange);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), var(--dark-2), rgba(255, 69, 0, 0.05));
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.1);
}
.profit-card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 45px;
    transform: rotate(45deg);
    letter-spacing: 1.5px;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.5);
}
.profit-card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    box-shadow: 0 5px 20px var(--orange-glow);
}
.profit-card-icon.accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}
.profit-card-icon.accent2 {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}
.profit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}
.profit-card p {
    color: var(--gray-400);
    font-size: 0.92rem;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}
.profit-highlight {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
}
.profit-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--gold-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px var(--orange-glow));
}
.profit-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Steps */
.profit-steps {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid var(--dark-5);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
}
.steps-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--space-xl);
    font-weight: 700;
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
    min-width: 200px;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--orange), var(--orange-hot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.step-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}
.step-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}
.step-arrow {
    color: var(--dark-5);
    font-size: 1.2rem;
    margin-top: 6px;
}

/* ========== GAMES ========== */
.games-section {
    background: var(--dark);
    border-top: 1px solid rgba(255, 106, 0, 0.08);
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}
.game-card {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid var(--dark-5);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.game-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
    opacity: 0;
    transition: var(--transition);
}
.game-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.12);
}
.game-card:hover::after { opacity: 1; }
.game-logo {
    width: 130px;
    height: 130px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-5);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.game-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.game-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.game-name-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    background: linear-gradient(180deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.game-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    font-weight: 700;
}
.game-info p {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}
.game-tags { display: flex; gap: var(--space-xs); flex-wrap: wrap; justify-content: center; }
.tag {
    background: rgba(255, 106, 0, 0.12);
    color: var(--orange-light);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255, 106, 0, 0.15);
}
.games-cta {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255, 106, 0, 0.2);
}
.games-cta p {
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

/* ========== PROMOTIONS ========== */
.promo-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
        var(--black);
}
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}
.promo-card {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid var(--dark-5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.promo-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.1);
}
.promo-featured { grid-column: 1 / -1; }
.promo-featured .promo-image { height: 280px; }
.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    z-index: 2;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 10px rgba(255, 51, 51, 0.4);
}
.promo-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    overflow: hidden;
}
.promo-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-image-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-500);
    gap: var(--space-sm);
}
.promo-image-fallback i { font-size: 2.5rem; color: var(--orange); opacity: 0.4; }
.promo-image-fallback span { font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; }
.promo-content { padding: var(--space-xl); }
.promo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}
.promo-content p {
    color: var(--gray-400);
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}
.promo-note {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(255, 215, 0, 0.03));
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: var(--radius-md);
}
.promo-note i { color: var(--orange); font-size: 1.2rem; flex-shrink: 0; }
.promo-note p { color: var(--gray-300); font-size: 0.88rem; }

/* ========== TRUST ========== */
.trust-section {
    background: var(--dark);
    border-top: 1px solid rgba(255, 106, 0, 0.08);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-xl);
}
.trust-item {
    text-align: center;
    padding: var(--space-xl);
    transition: var(--transition);
}
.trust-item:hover { transform: translateY(-5px); }
.trust-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 69, 0, 0.05));
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    transition: var(--transition);
}
.trust-item:hover .trust-icon {
    box-shadow: 0 0 30px var(--orange-glow);
    border-color: rgba(255, 106, 0, 0.4);
}
.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}
.trust-item p {
    color: var(--gray-400);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-section { background: var(--black); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--dark-4);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--white);
    padding: var(--space-lg) 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: var(--font-body);
}
.faq-question:hover { color: var(--orange); }
.faq-question i {
    color: var(--orange);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: var(--space-md);
}
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
    max-height: 300px;
    padding-bottom: var(--space-lg);
}
.faq-answer p {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ========== CTA ========== */
.cta-section {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 106, 0, 0.1), transparent 60%),
        var(--dark);
    border-top: 1px solid rgba(255, 106, 0, 0.15);
    border-bottom: 1px solid rgba(255, 106, 0, 0.15);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 106, 0, 0.04), transparent 50%);
    pointer-events: none;
}
.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: var(--space-md);
    font-weight: 800;
}
.cta-content > p {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}
.cta-buttons { margin-bottom: var(--space-xl); }
.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}
.cta-trust span {
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
}
.cta-trust i { color: var(--gold); margin-right: 4px; }

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--dark-4);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}
.footer-brand .logo-text { font-size: 1.5rem; }
.footer-slogan {
    font-size: 0.7rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
    font-weight: 600;
}
.footer-desc {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}
.footer-social { display: flex; gap: var(--space-sm); }
.social-link {
    width: 42px;
    height: 42px;
    background: var(--dark-3);
    border: 1px solid var(--dark-5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 1.1rem;
}
.social-link:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 3px 15px var(--orange-glow);
}
.footer-links-group h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links-group a {
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links-group a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}
.footer-contact i { color: var(--orange); margin-right: var(--space-sm); }
.footer-bottom {
    border-top: 1px solid var(--dark-4);
    padding-top: var(--space-xl);
    text-align: center;
}
.footer-game-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}
.footer-game-logos span:first-child {
    color: var(--gray-500);
    font-size: 0.8rem;
}
.game-brand {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    background: linear-gradient(180deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: var(--radius-sm);
}
.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.78rem;
    margin-bottom: var(--space-sm);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--orange); }
.footer-disclaimer {
    color: var(--gray-600);
    font-size: 0.72rem;
    font-style: italic;
}

/* ========== FLOATING CHAT (hidden when Tawk.to active) ========== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--orange), var(--orange-hot));
    border-radius: 50%;
    display: none; /* Hidden - using Tawk.to widget instead */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 25px var(--orange-glow);
    transition: var(--transition);
}
.floating-chat:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 35px rgba(255, 106, 0, 0.6);
}
.floating-chat i {
    font-size: 1.5rem;
    color: var(--white);
}
.chat-label { display: none; }
.chat-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    animation: chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; }
    .hero-subtitle { margin: 0 auto var(--space-xl); }
    .hero-stats { justify-content: center; }
    .hero-cta-group { justify-content: center; }
    .hero-image-placeholder { max-width: 380px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid rgba(255, 106, 0, 0.15);
        backdrop-filter: blur(20px);
    }
    .nav-cta { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .promo-featured { grid-column: auto; }
    .step-arrow { display: none; }
    .steps-grid { flex-direction: column; gap: var(--space-lg); }
    .step { min-width: auto; }
}

/* Mobile */
@media (max-width: 640px) {
    .section { padding: var(--space-3xl) 0; }
    .container { padding: 0 var(--space-md); }
    .hero { min-height: auto; padding: 100px 0 var(--space-3xl); }
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }
    .stat-divider { width: 40px; height: 1px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }
    .hero-image-placeholder { max-width: 280px; }
    .title-line1 { letter-spacing: 2px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-trust { flex-direction: column; gap: var(--space-sm); }
    .floating-chat { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .lang-switch { display: none; }
    .profit-cards { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
    .logo-text { font-size: 1.4rem; }
}

/* Large screens */
@media (min-width: 1440px) {
    .container { max-width: 1400px; }
}
