/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-blue: #3b82f6;
    --color-pink: #ec4899;
    --color-green: #10b981;
    --color-orange: #f97316;
    --color-purple: #a855f7;
    --color-cyan: #06b6d4;
    --color-yellow: #eab308;
    --color-red: #ef4444;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-gray: #2a2a2a;
    --gray: #9ca3af;
    --light: #f3f4f6;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-blue), var(--color-pink), var(--color-green), var(--color-orange)) 1;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
    color: var(--dark);
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 900;
}

.navbar {
    display: flex;
    gap: 8px;
}

.nav-item {
    padding: 10px 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
}

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

.btn-header-login,
.btn-header-register {
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-header-login {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--color-blue);
}

.btn-header-login:hover {
    background: var(--color-blue);
}

.btn-header-register {
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-header-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-blue), var(--color-pink), var(--color-green)) 1;
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse-rainbow 2s ease-in-out infinite;
}

@keyframes pulse-rainbow {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--color-green); }
    50% { opacity: 0.5; transform: scale(1.3); box-shadow: 0 0 20px var(--color-green); }
}

.hero-wrapper h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.rainbow-text {
    background: linear-gradient(90deg, var(--color-blue), var(--color-pink), var(--color-green), var(--color-orange), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 5s ease-in-out infinite;
}

@keyframes rainbow-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(60deg); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 20px 44px;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.6);
}

.btn-primary-hero:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-arrow {
    transition: var(--transition);
    font-size: 1.3rem;
}

.btn-secondary-hero {
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    color: var(--white);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5);
}

.btn-secondary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.6);
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}

.feature-emoji {
    font-size: 1.5rem;
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink), var(--color-green), var(--color-orange));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.95;
}

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.title-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.title-badge.white {
    background: var(--white);
    color: var(--dark);
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}

.section-title.light h2 {
    background: linear-gradient(90deg, var(--color-blue), var(--color-pink), var(--color-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== WHY US ===== */
.why {
    padding: 100px 0;
    background: var(--dark-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    padding: 40px 32px;
    background: var(--dark-gray);
    border-radius: 16px;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.card-blue { border-color: var(--color-blue); }
.card-blue:hover { box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4); }

.card-pink { border-color: var(--color-pink); }
.card-pink:hover { box-shadow: 0 16px 48px rgba(236, 72, 153, 0.4); }

.card-green { border-color: var(--color-green); }
.card-green:hover { box-shadow: 0 16px 48px rgba(16, 185, 129, 0.4); }

.card-orange { border-color: var(--color-orange); }
.card-orange:hover { box-shadow: 0 16px 48px rgba(249, 115, 22, 0.4); }

.card-purple { border-color: var(--color-purple); }
.card-purple:hover { box-shadow: 0 16px 48px rgba(168, 85, 247, 0.4); }

.card-cyan { border-color: var(--color-cyan); }
.card-cyan:hover { box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4); }

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===== GAMES ===== */
.games {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.game-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3);
}

.game-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.game-emoji-big {
    font-size: 5rem;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.game-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 28px;
}

.game-highlights {
    display: flex;
    justify-content: space-around;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.highlight {
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.highlight span {
    font-size: 0.85rem;
    color: var(--gray);
}

.game-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
}

.game-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.5);
}

/* ===== BONUSES ===== */
.bonuses {
    padding: 100px 0;
    background: var(--dark-light);
}

.bonus-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

.bonus-hero {
    padding: 50px 44px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    border-radius: 20px;
    color: var(--white);
}

.bonus-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-percent {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.bonus-hero h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.bonus-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 32px;
}

.bonus-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.btn-bonus-main {
    width: 100%;
    padding: 20px;
    background: var(--white);
    color: var(--color-blue);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    display: block;
}

.btn-bonus-main:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.bonus-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-mini {
    padding: 24px;
    background: var(--dark-gray);
    border-radius: 12px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.bonus-mini:hover {
    background: var(--dark);
    transform: translateX(8px);
}

.mini-emoji {
    font-size: 2.5rem;
}

.mini-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--white);
}

.mini-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--dark);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-block {
    margin-bottom: 16px;
    background: var(--dark-light);
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: var(--transition);
}

.faq-block.active {
    border-color: var(--color-blue);
}

.faq-btn {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-icon {
    font-size: 2rem;
    color: var(--color-blue);
    transition: var(--transition);
    font-weight: 300;
}

.faq-block.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-block.active .faq-content {
    max-height: 500px;
    padding: 0 28px 28px;
}

.faq-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--dark-light);
}

.cta-wrapper {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink), var(--color-green), var(--color-orange));
    border-radius: 24px;
    text-align: center;
    color: var(--white);
}

.cta-wrapper h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-big {
    padding: 22px 56px;
    background: var(--white);
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-block;
}

.btn-cta-big:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 32px;
    background: var(--dark);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-blue), var(--color-pink), var(--color-green), var(--color-orange)) 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
    margin: 20px 0;
}

.footer-license {
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--color-blue);
    color: var(--color-blue);
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-blue);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== SCROLL UP ===== */
.scroll-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-pink));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
    z-index: 999;
}

.scroll-up.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-up:hover {
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-showcase {
        grid-template-columns: 1fr;
    }
    .bonus-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .navbar,
    .header-buttons {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
}
