* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #1a1a1a; color: #e8e8e8; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header */
header { background: #0d0d0d; border-bottom: 2px solid #e63946; position: sticky; top: 0; z-index: 100; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: 900; color: #e63946; letter-spacing: 2px; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
nav ul li a { padding: 8px 14px; font-weight: 600; color: #fff; transition: 0.3s; border-radius: 4px; font-size: 14px; }
nav ul li a:hover, nav ul li a.active { background: #e63946; color: #fff; }
.auth-btns { display: flex; gap: 10px; }
.btn { padding: 9px 22px; border-radius: 6px; font-weight: 700; cursor: pointer; border: none; transition: 0.3s; font-size: 14px; display: inline-block; }
.btn-login { background: #333; color: #fff; }
.btn-register { background: linear-gradient(135deg, #e63946, #ff5e69); color: #fff; }
.btn-login:hover { background: #555; }
.btn-register:hover { transform: translateY(-2px); }

/* Hero */
.hero { background: linear-gradient(135deg, #2a0a0e, #1a1a1a); padding: 50px 0; text-align: center; }
.hero h1 { font-size: 38px; color: #e63946; margin-bottom: 15px; line-height: 1.3; }
.hero p { font-size: 17px; max-width: 850px; margin: 0 auto 25px; color: #ccc; }
.hero-img { margin: 25px auto; max-width: 700px; border: 3px solid #e63946; border-radius: 10px; overflow: hidden; }
.hero-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 20px; }
.btn-primary { background: #e63946; color: #fff; padding: 14px 36px; font-size: 16px; }
.btn-outline { background: transparent; border: 2px solid #e63946; color: #e63946; padding: 12px 34px; font-size: 16px; }

/* Sections */
section { padding: 55px 0; border-bottom: 1px solid #2a2a2a; }
.section-title { text-align: center; font-size: 30px; color: #e63946; margin-bottom: 12px; }
.section-sub { text-align: center; color: #aaa; margin-bottom: 35px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-box { background: #252525; padding: 25px; border-radius: 8px; text-align: center; border-left: 4px solid #e63946; }
.stat-num { font-size: 32px; font-weight: 800; color: #e63946; }
.stat-label { color: #ccc; font-size: 14px; margin-top: 6px; }

/* Game Grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.game-card { background: #252525; padding: 14px; border-radius: 8px; text-align: center; transition: 0.3s; }
.game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(230,57,70,0.3); }
.game-card img { margin: 0 auto 10px; border-radius: 6px; }
.game-card h4 { color: #e63946; font-size: 15px; margin-bottom: 5px; }
.game-card p { font-size: 12px; color: #aaa; }

/* Features 2 col */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-bottom: 40px; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row img { border-radius: 10px; border: 2px solid #333; }
.feature-text h3 { color: #e63946; font-size: 22px; margin-bottom: 12px; }
.feature-text p { color: #ccc; margin-bottom: 10px; font-size: 15px; }
.feature-text ul { margin-left: 20px; color: #ccc; }
.feature-text ul li { margin-bottom: 6px; }

/* Banner mid */
.promo-banner { background: linear-gradient(90deg, #3a0d12, #1a1a1a); padding: 40px 25px; border-radius: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: center; margin: 30px 0; }
.promo-banner h3 { color: #ffcd3c; font-size: 26px; margin-bottom: 10px; }
.promo-banner p { color: #ddd; margin-bottom: 15px; }

/* Testimonial */
.testimonial { background: #252525; padding: 30px; border-left: 5px solid #e63946; border-radius: 8px; max-width: 850px; margin: 30px auto; font-style: italic; color: #ddd; }
.testimonial-author { display: block; margin-top: 12px; color: #e63946; font-weight: 700; font-style: normal; }

/* FAQ */
.faq-item { background: #252525; padding: 18px 22px; border-radius: 8px; margin-bottom: 12px; border-left: 3px solid #e63946; }
.faq-item h4 { color: #e63946; margin-bottom: 8px; font-size: 17px; }
.faq-item p { color: #ccc; font-size: 14px; }
.faq-item ul { margin: 8px 0 0 20px; color: #ccc; }

/* Comparison Table */
.compare-table { width: 100%; border-collapse: collapse; background: #252525; border-radius: 8px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px; text-align: left; border-bottom: 1px solid #333; font-size: 14px; }
.compare-table th { background: #e63946; color: #fff; }
.compare-table tr:hover { background: #2a2a2a; }

/* Footer */
footer { background: #0a0a0a; padding: 45px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #e63946; margin-bottom: 14px; font-size: 16px; }
.footer-col p, .footer-col a { color: #aaa; font-size: 14px; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: #e63946; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #2a2a2a; color: #777; font-size: 13px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .feature-row, .promo-banner, .footer-grid { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  nav ul { gap: 8px; }
  nav ul li a { padding: 6px 10px; font-size: 13px; }
  .section-title { font-size: 24px; }
}