* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #1a1a1a; color: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* Header */
header { background: #0d0d0d; border-bottom: 2px solid #e63946; position: sticky; top: 0; z-index: 1000; }
.nav-wrap { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: 900; color: #e63946; letter-spacing: 2px; text-transform: uppercase; }
nav ul { display: flex; list-style: none; gap: 5px; flex-wrap: wrap; }
nav ul li a { padding: 10px 16px; display: block; color: #ddd; font-weight: 600; font-size: 14px; transition: 0.3s; text-transform: uppercase; }
nav ul li a:hover, nav ul li a.active { color: #fff; background: #e63946; border-radius: 4px; }
.auth-btns { display: flex; gap: 8px; }
.btn { padding: 9px 22px; border-radius: 4px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; display: inline-block; }
.btn-login { background: #333; color: #fff; border: 1px solid #555; }
.btn-register { background: #e63946; color: #fff; }
.btn-login:hover { background: #444; }
.btn-register:hover { background: #c82a37; }

/* Hero */
.hero { background: linear-gradient(135deg, #2b0000 0%, #1a1a1a 100%); padding: 60px 20px; text-align: center; }
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero h1 { font-size: 42px; color: #e63946; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.hero p.lead { font-size: 18px; color: #ccc; margin-bottom: 25px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-img { max-width: 100%; height: auto; margin: 20px auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(230,57,70,0.3); }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 25px; }
.btn-cta { padding: 14px 38px; font-size: 16px; background: #e63946; color: #fff; border-radius: 30px; font-weight: 700; text-transform: uppercase; }
.btn-cta.alt { background: transparent; border: 2px solid #e63946; color: #e63946; }

/* Sections */
section { padding: 50px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 30px; color: #e63946; margin-bottom: 12px; text-transform: uppercase; }
.section-sub { text-align: center; color: #aaa; margin-bottom: 35px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Intro Block */
.intro-block { background: #222; padding: 40px 30px; border-radius: 10px; border-left: 5px solid #e63946; }
.intro-block p { margin-bottom: 15px; color: #ddd; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.stat-box { background: #2a2a2a; padding: 25px 15px; text-align: center; border-radius: 8px; border-top: 3px solid #e63946; }
.stat-num { font-size: 32px; color: #e63946; font-weight: 900; display: block; }
.stat-lbl { color: #bbb; font-size: 14px; margin-top: 6px; }

/* Game grid */
.game-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.game-card { background: #262626; padding: 12px; border-radius: 8px; text-align: center; transition: 0.3s; }
.game-card:hover { transform: translateY(-5px); background: #2f2f2f; }
.game-card img { width: 100%; height: auto; max-width: 170px; border-radius: 6px; display: block; margin: 0 auto; }
.game-card h4 { margin-top: 10px; color: #fff; font-size: 15px; }
.game-card span { color: #e63946; font-size: 12px; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature-card { background: #222; padding: 28px 22px; border-radius: 8px; border-bottom: 3px solid #e63946; }
.feature-card h3 { color: #e63946; font-size: 19px; margin-bottom: 12px; }
.feature-card p { color: #ccc; font-size: 14px; }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; }
.two-col img { max-width: 100%; height: auto; border-radius: 8px; }
.two-col-text h3 { color: #e63946; font-size: 24px; margin-bottom: 14px; }
.two-col-text p { color: #ccc; margin-bottom: 12px; }
.two-col-text ul { color: #ccc; padding-left: 20px; margin-top: 10px; }
.two-col-text ul li { margin-bottom: 8px; }
@media(max-width:768px){ .two-col { grid-template-columns: 1fr; } }

/* App banner */
.app-banner { background: #2b0000; padding: 45px 30px; border-radius: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.app-banner img { max-width: 100%; height: auto; border-radius: 6px; }
.app-banner h3 { color: #fff; font-size: 26px; margin-bottom: 14px; }
.app-banner p { color: #ddd; margin-bottom: 16px; }
@media(max-width:768px){ .app-banner { grid-template-columns: 1fr; text-align: center; } }

/* Promotion */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.promo-card { background: #1f1f1f; padding: 20px; border-radius: 8px; display: flex; gap: 18px; align-items: center; border: 1px solid #333; }
.promo-card img { max-width: 170px; height: auto; border-radius: 6px; }
.promo-card h4 { color: #e63946; font-size: 18px; margin-bottom: 8px; }
.promo-card p { color: #bbb; font-size: 14px; }
@media(max-width:768px){ .promo-grid { grid-template-columns: 1fr; } .promo-card { flex-direction: column; text-align: center; } }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: #222; margin-bottom: 14px; padding: 22px 25px; border-radius: 8px; border-left: 4px solid #e63946; }
.faq-item h4 { color: #e63946; font-size: 17px; margin-bottom: 10px; }
.faq-item p { color: #ccc; font-size: 14px; }
.faq-item ul { color: #ccc; padding-left: 20px; margin-top: 8px; font-size: 14px; }

/* Review */
.review-box { background: linear-gradient(135deg, #2b0000, #1a1a1a); padding: 35px; border-radius: 10px; text-align: center; max-width: 900px; margin: 0 auto; border: 1px solid #e63946; }
.review-box p { font-style: italic; color: #eee; font-size: 16px; }

/* Footer */
footer { background: #0a0a0a; padding: 45px 20px 20px; border-top: 3px solid #e63946; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-col h4 { color: #e63946; font-size: 16px; margin-bottom: 14px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: 0.3s; }
.footer-col ul li a:hover { color: #e63946; }
.footer-col p { color: #aaa; font-size: 14px; margin-bottom: 8px; }
.footer-bottom { text-align: center; padding-top: 25px; margin-top: 30px; border-top: 1px solid #222; color: #777; font-size: 13px; }
.footer-bottom strong { color: #e63946; }

@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 22px; }
  nav ul { width: 100%; justify-content: center; order: 3; margin-top: 10px; }
  .auth-btns { order: 2; }
}