* { 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%; display: block; }

/* Top bar */
.top-bar { background: #2a2a4a; color: #fff; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-bar .logo { font-size: 28px; font-weight: 900; color: #ffd700; letter-spacing: 2px; font-style: italic; }
.top-actions { display: flex; gap: 10px; align-items: center; }
.btn-login, .btn-register { padding: 8px 22px; border-radius: 4px; font-weight: bold; font-size: 14px; cursor: pointer; transition: 0.3s; border: 1px solid #fff; }
.btn-login { background: transparent; color: #fff; }
.btn-login:hover { background: #fff; color: #2a2a4a; }
.btn-register { background: #ff6b00; color: #fff; border-color: #ff6b00; }
.btn-register:hover { background: #ff8c1a; }

/* Nav */
.main-nav { background: #ff6b00; padding: 0; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; }
.main-nav a { color: #fff; padding: 15px 25px; font-weight: 600; font-size: 15px; transition: 0.3s; border-right: 1px solid rgba(255,255,255,0.1); }
.main-nav a:hover, .main-nav a.active { background: #e55f00; }

/* Hero */
.hero { background: linear-gradient(135deg, #5b2a06 0%, #8b3a0a 50%, #c4570c 100%); position: relative; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; padding: 20px; gap: 30px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 280px; color: #fff; padding: 30px 0; }
.hero-text h1 { font-size: 42px; color: #ffd700; font-weight: 900; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); line-height: 1.2; }
.hero-text p { font-size: 18px; margin-bottom: 20px; }
.hero-btn { display: inline-block; background: #ffd700; color: #5b2a06; padding: 12px 35px; border-radius: 30px; font-weight: 900; font-size: 16px; transition: 0.3s; }
.hero-btn:hover { background: #ffaa00; transform: scale(1.05); }
.hero-img { flex: 1; min-width: 280px; }
.hero-img img { border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.4); }

/* Welcome strip */
.welcome-strip { background: #4a3a8a; color: #fff; padding: 8px 20px; text-align: center; font-size: 14px; }

/* Section */
.section { max-width: 1200px; margin: 30px auto; padding: 0 20px; }
.section-title { font-size: 22px; color: #2a2a4a; margin-bottom: 20px; padding-left: 12px; border-left: 4px solid #ff6b00; font-weight: 700; }

/* Promo banner */
.promo-banner { background: linear-gradient(90deg, #1a1a4a 0%, #4a1a6a 100%); border-radius: 8px; overflow: hidden; padding: 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: #fff; }
.promo-banner img { max-width: 280px; border-radius: 8px; }
.promo-text { flex: 1; min-width: 250px; }
.promo-text h3 { color: #ffd700; font-size: 26px; margin-bottom: 10px; }
.promo-text p { font-size: 15px; margin-bottom: 12px; }
.promo-text strong { color: #ffd700; font-size: 22px; }

/* Live cards */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.live-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: 0.3s; }
.live-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.live-card .badge { background: #28a745; color: #fff; font-size: 11px; padding: 3px 10px; border-radius: 3px; display: inline-block; margin: 10px; font-weight: 700; }
.live-card .live-tag { background: #d9534f; color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 3px; display: inline-block; margin-left: 5px; font-weight: 700; }
.live-card img { width: 100%; height: 180px; object-fit: cover; }
.live-card-body { padding: 15px; }
.live-card-body h4 { color: #2a2a4a; font-size: 16px; margin-bottom: 8px; }
.live-card-body .time { color: #888; font-size: 13px; margin-bottom: 10px; }
.teams { display: flex; justify-content: space-between; font-size: 13px; }
.teams .odd { color: #ff6b00; font-weight: 700; }

/* Game grid */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.game-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.1); transition: 0.3s; cursor: pointer; }
.game-card:hover { transform: scale(1.05); }
.game-card img { width: 100%; height: auto; object-fit: cover; }
.game-card p { padding: 8px; font-size: 13px; text-align: center; color: #2a2a4a; font-weight: 600; }

/* Content blocks */
.content-block { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 20px; }
.content-block h2 { color: #2a2a4a; margin-bottom: 15px; font-size: 24px; padding-bottom: 10px; border-bottom: 2px solid #ff6b00; }
.content-block h3 { color: #4a3a8a; margin: 20px 0 10px; font-size: 18px; }
.content-block p { margin-bottom: 12px; font-size: 15px; color: #444; }
.content-block ul { margin-left: 25px; margin-bottom: 12px; }
.content-block ul li { margin-bottom: 6px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.feature-card { background: #fff; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.feature-card img { margin: 0 auto 12px; border-radius: 50%; width: 80px; height: 80px; object-fit: cover; }
.feature-card h4 { color: #2a2a4a; margin-bottom: 8px; font-size: 17px; }
.feature-card p { font-size: 13px; color: #666; }

/* FAQ */
.faq-item { background: #fff; padding: 18px 22px; margin-bottom: 12px; border-radius: 6px; border-left: 4px solid #ff6b00; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.faq-item h4 { color: #2a2a4a; margin-bottom: 8px; font-size: 16px; }
.faq-item p { font-size: 14px; color: #555; }

/* Testimonial */
.testimonial { background: linear-gradient(135deg, #fff8e7, #ffe9c4); padding: 25px; border-radius: 8px; border-left: 5px solid #ff6b00; font-style: italic; color: #5b2a06; margin: 20px 0; }

/* Footer */
footer { background: #1f1f3a; color: #b8b8d4; padding: 40px 20px 20px; margin-top: 40px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-col h5 { color: #ffd700; margin-bottom: 15px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col ul li a:hover { color: #ffd700; }
.footer-col p { font-size: 13px; line-height: 1.7; }
.footer-bottom { max-width: 1200px; margin: 25px auto 0; padding-top: 20px; border-top: 1px solid #333355; text-align: center; font-size: 13px; }
.footer-bottom .logo-small { color: #ffd700; font-weight: 900; font-style: italic; font-size: 22px; margin-bottom: 8px; }

@media (max-width: 768px) {
  .hero-text h1 { font-size: 28px; }
  .main-nav a { padding: 12px 15px; font-size: 13px; }
  .section-title { font-size: 18px; }
  .top-bar .logo { font-size: 22px; }
}