* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #0f0f0f; color: #e8e8e8; line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Header */
header { background: #1a1a1a; border-bottom: 2px solid #ffa500; position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 28px; font-weight: 900; color: #ffa500; letter-spacing: 1px; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 6px; flex-wrap: wrap; }
nav ul li a { padding: 8px 14px; border-radius: 6px; font-size: 14px; color: #d4d4d4; transition: all 0.2s; display: block; }
nav ul li a:hover, nav ul li a.active { background: #2a2a2a; color: #ffa500; }
.auth-buttons { display: flex; gap: 8px; }
.btn { padding: 9px 18px; border-radius: 6px; font-weight: 700; font-size: 13px; cursor: pointer; border: none; display: inline-block; transition: opacity 0.2s; }
.btn-login { background: transparent; color: #ffa500; border: 1px solid #ffa500; }
.btn-register { background: linear-gradient(90deg, #18b04e, #16a34a); color: #fff; }
.btn:hover { opacity: 0.85; }

/* Hero */
.hero { max-width: 1100px; margin: 30px auto; padding: 0 20px; }
.hero-card { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 12px; padding: 30px 20px; text-align: center; }
.hero-card h1 { color: #ffa500; font-size: 32px; margin-bottom: 12px; }
.hero-card p.sub { color: #c0c0c0; margin-bottom: 18px; font-size: 15px; }
.hero-img-wrap { margin: 18px auto; max-width: 100%; }
.hero-img-wrap img { width: 100%; max-width: 1024px; height: auto; border-radius: 10px; }
.btn-cta { background: #ffa500; color: #1a1a1a; padding: 14px 36px; font-size: 16px; border-radius: 8px; margin-top: 18px; font-weight: 800; }
.notice-bar { background: #163d24; color: #c8f0c8; padding: 10px; border-radius: 6px; margin: 18px 0; font-size: 13px; }

/* Sections */
section.block { max-width: 1100px; margin: 30px auto; padding: 0 20px; }
.section-title { text-align: center; color: #ffa500; font-size: 22px; margin-bottom: 22px; font-weight: 700; }

/* Categories grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.cat-card { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 10px; padding: 16px; text-align: center; }
.cat-card img { max-width: 170px; width: 100%; height: auto; border-radius: 8px; margin: 0 auto 12px; display: block; }
.cat-card h3 { color: #ffa500; font-size: 17px; margin-bottom: 8px; }
.cat-card .meta { color: #aaa; font-size: 12px; margin-bottom: 10px; }
.cat-card .stats { display: flex; justify-content: space-around; padding: 8px 0; border-top: 1px solid #2d2d2d; border-bottom: 1px solid #2d2d2d; margin-bottom: 12px; font-size: 12px; color: #c0c0c0; }
.cat-card .btn-small { background: #ffa500; color: #1a1a1a; padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 700; display: inline-block; }

/* Live games */
.live-table { background: #1a1a1a; border-radius: 10px; padding: 16px; border: 1px solid #2d2d2d; }
.live-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 8px; border-bottom: 1px solid #232323; font-size: 14px; flex-wrap: wrap; gap: 8px; }
.live-row:last-child { border-bottom: none; }
.live-teams { flex: 1; min-width: 180px; color: #d4d4d4; }
.live-score { font-weight: 800; color: #ffa500; padding: 0 14px; }
.live-odds { display: flex; gap: 6px; }
.odd-box { background: #232323; padding: 6px 10px; border-radius: 4px; font-size: 12px; color: #ffa500; min-width: 38px; text-align: center; }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.feat-card { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 10px; padding: 18px 14px; text-align: center; }
.feat-card img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 10px; }
.feat-card h4 { color: #ffa500; font-size: 15px; margin-bottom: 6px; }
.feat-card p { color: #b0b0b0; font-size: 12px; }

/* Promotion */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.promo-card { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 10px; padding: 16px; text-align: center; }
.promo-card img { width: 100%; max-width: 200px; height: auto; border-radius: 8px; margin-bottom: 12px; }
.promo-card h4 { color: #ffa500; font-size: 15px; margin-bottom: 6px; }
.promo-card p { font-size: 13px; color: #c0c0c0; }

/* Content article */
.article-block { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 10px; padding: 26px 22px; }
.article-block h2 { color: #ffa500; font-size: 20px; margin: 16px 0 10px; }
.article-block h3 { color: #e8b75c; font-size: 16px; margin: 12px 0 8px; }
.article-block p { margin-bottom: 12px; font-size: 14px; color: #d0d0d0; }
.article-block ul { margin: 10px 0 14px 22px; color: #c0c0c0; font-size: 14px; }
.article-block ul li { margin-bottom: 6px; }

/* FAQ */
.faq-item { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 8px; padding: 16px; margin-bottom: 12px; }
.faq-item h4 { color: #ffa500; font-size: 15px; margin-bottom: 8px; }
.faq-item p { color: #c8c8c8; font-size: 14px; }

/* Bottom CTA */
.bottom-cta { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 10px; padding: 24px; text-align: center; margin: 30px auto; max-width: 1100px; }
.bottom-cta h3 { color: #ffa500; font-size: 20px; margin-bottom: 12px; }
.bottom-cta p { color: #c0c0c0; margin-bottom: 18px; font-size: 14px; }
.bottom-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: #0a0a0a; border-top: 2px solid #ffa500; padding: 30px 20px 18px; margin-top: 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.footer-col h5 { color: #ffa500; font-size: 15px; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 13px; color: #b0b0b0; }
.footer-col ul li a:hover { color: #ffa500; }
.footer-col p { font-size: 13px; color: #b0b0b0; margin-bottom: 6px; }
.footer-bottom { text-align: center; padding-top: 18px; margin-top: 22px; border-top: 1px solid #2d2d2d; color: #888; font-size: 12px; }

@media (max-width: 720px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav ul { width: 100%; }
  .hero-card h1 { font-size: 24px; }
  .live-row { font-size: 12px; }
}