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

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --accent: #f97316;
    --gold: #fbbf24;
    --dark: #171717;
    --darker: #0a0a0a;
    --surface: #262626;
    --border: #404040;
    --text: #fafafa;
    --muted: #a3a3a3;
}

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

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

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

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

/* Header */
.header {
    background: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.brand {
    font-size: 26px;
    font-weight: 800;
}

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

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

.nav-menu a {
    color: var(--muted);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

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

/* Hero */
.hero-section {
    background: radial-gradient(ellipse at top center, rgba(220, 38, 38, 0.12) 0%, transparent 55%);
    padding: 90px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--surface);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-section h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-section h1 em {
    font-style: normal;
    color: var(--primary);
}

.hero-section p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 80px rgba(220, 38, 38, 0.1);
}

.btn-row {
    display: flex;
    gap: 12px;
}

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

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

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(220, 38, 38, 0.1);
}

/* Section */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

/* Stats */
.stats-strip {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    padding: 50px 0;
}

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

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

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

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    transition: all 0.4s;
}

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

.feature-card img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-card p {
    font-size: 13px;
    color: var(--muted);
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.content-text p {
    color: var(--muted);
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.content-img img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* Steps */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-box img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    margin: 12px 0;
}

.step-box h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.step-box p {
    font-size: 12px;
    color: var(--muted);
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

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

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

.game-card-body {
    padding: 20px;
}

.game-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.game-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.game-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}

/* Pros Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pros-box, .cons-box {
    background: var(--surface);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
}

.pros-box { border-top: 3px solid #22c55e; }
.cons-box { border-top: 3px solid var(--accent); }

.pros-box h3, .cons-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box li, .cons-box li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.pros-box li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; }
.cons-box li::before { content: '✗'; position: absolute; left: 0; color: var(--accent); }

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 14px;
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--muted);
}

/* Page Top */
.page-top {
    background: radial-gradient(ellipse at top, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    padding: 130px 0 60px;
    text-align: center;
}

.page-top h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-top p {
    color: var(--muted);
    font-size: 17px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 0 25px;
    border-top: 1px solid var(--border);
}

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

.footer-col h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.footer-col a {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: #525252;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .content-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section p { margin: 0 auto 28px; }
    .btn-row { justify-content: center; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .game-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-section h1 { font-size: 32px; }
    .feature-grid, .game-grid, .pros-cons, .steps-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
