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

:root {
    --primary: #dc2626;
    --primary-light: #ef4444;
    --secondary: #fbbf24;
    --dark: #18181b;
    --darker: #09090b;
    --light: #fafafa;
    --gray: #71717a;
    --glass: rgba(255,255,255,0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: var(--darker);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navbar */
.navbar {
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.brand span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu a {
    color: #a1a1aa;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background: var(--primary);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top, #3f0d12 0%, var(--darker) 50%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    top: 20%;
    right: -100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.btn-group {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-ghost {
    background: var(--glass);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
}

/* Section */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-desc {
    color: #a1a1aa;
    font-size: 17px;
    max-width: 550px;
}

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

.text-center .section-desc {
    margin: 0 auto;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, var(--glass) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #a1a1aa;
    font-size: 14px;
}

/* Game Cards */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.game-card:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

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

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.game-info p {
    color: #a1a1aa;
    font-size: 14px;
    margin-bottom: 15px;
}

.game-meta {
    display: flex;
    gap: 10px;
}

.meta-tag {
    padding: 5px 12px;
    background: var(--glass);
    border-radius: 6px;
    font-size: 12px;
    color: var(--secondary);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #991b1b 100%);
    padding: 60px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat h3 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat p {
    font-size: 15px;
    opacity: 0.9;
}

/* VIP Section */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vip-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.1) 0%, var(--dark) 30%);
}

.vip-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vip-card:nth-child(1) .vip-badge { background: #78716c; }
.vip-card:nth-child(2) .vip-badge { background: var(--secondary); color: #000; }
.vip-card:nth-child(3) .vip-badge { background: linear-gradient(90deg, #a855f7, #ec4899); }

.vip-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.vip-perks {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.vip-perks li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #a1a1aa;
    font-size: 14px;
}

.vip-perks li::before {
    content: '✓';
    color: var(--secondary);
    margin-right: 10px;
}

/* Tournament List */
.tournament-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tournament-item {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s;
}

.tournament-item:hover {
    border-color: var(--primary);
}

.tournament-item img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.tournament-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.tournament-info p {
    color: #a1a1aa;
    font-size: 14px;
}

.tournament-prize {
    text-align: right;
}

.tournament-prize span {
    display: block;
    font-size: 12px;
    color: #a1a1aa;
}

.tournament-prize strong {
    font-size: 22px;
    color: var(--secondary);
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a0a0a 100%);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.download-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.download-text p {
    color: #a1a1aa;
    margin-bottom: 30px;
}

.download-features {
    list-style: none;
    margin-bottom: 30px;
}

.download-features li {
    padding: 10px 0;
    color: #d4d4d8;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-features li::before {
    content: '★';
    color: var(--secondary);
}

.download-image img {
    width: 100%;
    border-radius: 20px;
}

/* Page Header */
.page-header {
    background: radial-gradient(ellipse at top, #3f0d12 0%, var(--darker) 70%);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    color: #a1a1aa;
    font-size: 18px;
}

/* Footer */
footer {
    background: var(--dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    color: #71717a;
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #71717a;
    font-size: 14px;
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #52525b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content,
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 35px;
    }
    
    .btn-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .games-showcase,
    .vip-tiers {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tournament-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tournament-prize {
        text-align: center;
    }
}
