* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; background: #f4f4f4; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-header { background: #2d1f6e; color: #fff; padding: 10px 0; }
.top-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 28px; font-weight: 900; color: #f9b923; letter-spacing: 2px; font-style: italic; }
.auth-buttons { display: flex; gap: 10px; }
.btn-login, .btn-register { padding: 8px 22px; border-radius: 4px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: all 0.3s; }
.btn-login { background: #fff; color: #2d1f6e; border: 1px solid #fff; }
.btn-login:hover { background: transparent; color: #fff; }
.btn-register { background: #f97316; color: #fff; }
.btn-register:hover { background: #ea580c; }

/* Nav */
.main-nav { background: linear-gradient(180deg, #ff8c1a 0%, #f97316 100%); padding: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.nav-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; }
.nav-list li { position: relative; }
.nav-list li a { display: block; padding: 14px 22px; color: #fff; font-weight: 700; font-size: 15px; transition: background 0.2s; text-transform: uppercase; }
.nav-list li a:hover, .nav-list li a.active { background: rgba(255,255,255,0.2); }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; padding: 12px; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #8b1a1a 0%, #5b1010 100%); padding: 40px 15px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.hero-text h1 { color: #fbbf24; font-size: 42px; font-weight: 900; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); line-height: 1.2; }
.hero-text p { color: #fff; font-size: 17px; margin-bottom: 20px; }
.hero-text .badge { display: inline-block; background: #fbbf24; color: #5b1010; padding: 8px 20px; border-radius: 4px; font-weight: 900; font-size: 18px; margin-bottom: 12px; }
.hero-cta { background: #f97316; color: #fff; padding: 14px 36px; border-radius: 30px; font-weight: 800; font-size: 16px; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero-cta:hover { background: #ea580c; }
.hero-image img { border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* Welcome bar */
.welcome-bar { background: #2d1f6e; color: #fff; padding: 10px 15px; text-align: center; font-size: 14px; }

/* Sections */
.section { max-width: 1200px; margin: 30px auto; padding: 0 15px; }
.section-title { font-size: 22px; font-weight: 800; color: #2d1f6e; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #f97316; }

/* Promo banner */
.promo-banner { background: linear-gradient(90deg, #1e3a8a 0%, #2d1f6e 100%); border-radius: 10px; overflow: hidden; padding: 20px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; align-items: center; }
.promo-banner img { border-radius: 8px; }
.promo-text h3 { color: #fbbf24; font-size: 26px; margin-bottom: 10px; font-weight: 900; }
.promo-text p { color: #fff; margin-bottom: 12px; }
.promo-text .cta { background: #f97316; color: #fff; padding: 10px 26px; border-radius: 25px; display: inline-block; font-weight: 700; }

/* Game grid */
.game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.game-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.1); transition: transform 0.2s; position: relative; }
.game-card:hover { transform: translateY(-4px); }
.game-card .img-wrap { width: 100%; aspect-ratio: 1; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f0f0f0; }
.game-card img { width: 100%; height: 100%; object-fit: cover; }
.game-card .name { padding: 10px; text-align: center; font-weight: 700; font-size: 14px; color: #2d1f6e; }
.game-card .tag-live { position: absolute; top: 8px; left: 8px; background: #22c55e; color: #fff; padding: 2px 8px; font-size: 11px; font-weight: 700; border-radius: 3px; }

/* Live matches */
.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.live-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.live-card .img-wrap { width: 100%; height: 140px; overflow: hidden; background: #1a1a1a; display:flex; align-items:center; justify-content:center;}
.live-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.live-card .info { padding: 14px; }
.live-card .label { display: inline-block; background: #22c55e; color: #fff; padding: 2px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.live-card h4 { color: #2d1f6e; font-size: 16px; margin-bottom: 8px; }
.live-card .time { color: #666; font-size: 13px; margin-bottom: 10px; }
.live-card .teams { display: flex; justify-content: space-between; font-size: 14px; color: #333; }
.live-card .teams span { font-weight: 700; }
.live-card .odds { color: #f97316; font-weight: 900; }

/* Content blocks */
.content-block { background: #fff; padding: 26px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 20px; }
.content-block h2 { color: #2d1f6e; font-size: 22px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #f97316; }
.content-block h3 { color: #1e3a8a; font-size: 18px; margin: 16px 0 10px; }
.content-block p { margin-bottom: 12px; color: #444; }
.content-block ul { padding-left: 22px; margin-bottom: 12px; }
.content-block ul li { margin-bottom: 6px; color: #444; }

/* Two col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin: 20px 0; }
.stat-box { background: linear-gradient(135deg, #2d1f6e, #1e3a8a); color: #fff; padding: 22px; border-radius: 10px; text-align: center; }
.stat-box .num { font-size: 26px; font-weight: 900; color: #fbbf24; display: block; }
.stat-box .lbl { font-size: 13px; margin-top: 6px; }

/* FAQ */
.faq-item { background: #fff; padding: 18px 22px; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); border-left: 4px solid #f97316; }
.faq-item h4 { color: #2d1f6e; font-size: 16px; margin-bottom: 8px; }
.faq-item p { color: #555; font-size: 14px; }
.faq-item ul { padding-left: 20px; margin-top: 6px; }

/* Testimonial */
.testimonial { background: #fff7ed; border-left: 5px solid #f97316; padding: 18px 22px; border-radius: 6px; margin: 16px 0; font-style: italic; color: #555; }

/* Footer */
.footer { background: #1a1a2e; color: #ccc; padding: 40px 15px 20px; margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-bottom: 26px; }
.footer-col h5 { color: #fbbf24; font-size: 15px; margin-bottom: 12px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col ul li a:hover { color: #fbbf24; }
.footer-col p { font-size: 13px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #333; padding-top: 18px; text-align: center; font-size: 13px; color: #888; }
.footer-bottom .age { display: inline-block; background: #dc2626; color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: 700; margin-right: 10px; }
.brand-footer { color: #fbbf24; font-weight: 900; font-style: italic; font-size: 22px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .promo-banner, .two-col { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 28px; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .live-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: block; }
  .nav-list { display: none; flex-direction: column; width: 100%; }
  .nav-list.show { display: flex; }
  .nav-list li a { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.15); }
}
@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 24px; }
  .section-title { font-size: 18px; }
}