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

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #d97706;
    --dark-bg: #0f0f1e;
    --card-bg: #1a1a2e;
    --text-light: #e5e7eb;
    --text-gray: #9ca3af;
    --accent-purple: #a78bfa;
    --accent-gold: #fbbf24;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0b2e 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--card-bg);
    padding: 1rem;
    gap: 0.5rem;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(139, 92, 246, 0.2);
}

.mobile-nav.active {
    display: flex;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    min-height: 600px;
}

.hero-left {
    padding: 2rem;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.badge-icon {
    font-size: 1.5rem;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.games-grid h2,
.why-choose h2,
.faq-section h2,
.reviews-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.game-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.game-link {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.game-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.vip-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(217, 119, 6, 0.1));
    border: 2px solid var(--accent-gold);
}

.why-choose {
    margin: 4rem 0;
}

.benefits {
    margin-bottom: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.benefit-card p {
    color: var(--text-gray);
}

.faq-section {
    margin: 4rem 0;
}

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

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.faq-item p {
    color: var(--text-gray);
}

.reviews-section {
    margin: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info strong {
    color: var(--accent-purple);
    font-size: 1.1rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.review-card p {
    color: var(--text-gray);
    font-style: italic;
}

footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-color);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section ul {
    color: var(--text-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--text-gray);
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #ef4444;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .split-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 1rem;
    }

    main {
        padding: 1rem;
    }
}

