* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #1a1a1a; color: #e8e8e8; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Header */
.top-header { background: #0d0d0d; border-bottom: 2px solid #f9b115; padding: 10px 0; position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 26px; font-weight: 900; color: #f9b115; letter-spacing: 1px; text-transform: lowercase; }
.logo span { color: #ffffff; }
.main-nav { display: flex; gap: 5px; flex-wrap: wrap; }
.main-nav a { padding: 8px 14px; color: #cfcfcf; font-size: 14px; font-weight: 500; border-radius: 4px; transition: all .2s; }
.main-nav a:hover { background: #2a2a2a; color: #f9b115; }
.main-nav a.active { background: #f9b115; color: #0d0d0d; font-weight: 700; }
.auth-buttons { display: flex; gap: 8px; }
.btn { padding: 8px 18px; border-radius: 4px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; }
.btn-login { background: #f9b115; color: #0d0d0d; }
.btn-register { background: #d83a3a; color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, #2c1810 0%, #1a0a0a 100%); padding: 40px 15px; text-align: center; border-bottom: 3px solid #f9b115; }
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero h1 { font-size: 36px; color: #f9b115; margin-bottom: 15px; font-weight: 900; letter-spacing: 1px; }
.hero p { font-size: 17px; color: #e0e0e0; max-width: 800px; margin: 0 auto 25px; }
.hero-cta { display: inline-block; background: #f9b115; color: #0d0d0d; padding: 14px 34px; border-radius: 6px; font-weight: 800; font-size: 16px; }

/* Section base */
section { padding: 40px 15px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
h2 { font-size: 26px; color: #f9b115; margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid #2a2a2a; }
h3 { font-size: 19px; color: #ffffff; margin: 14px 0 8px; }
h4 { font-size: 16px; color: #f9b115; margin: 10px 0 6px; }
p { margin-bottom: 12px; color: #d0d0d0; font-size: 15px; }

/* Game Grid */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 20px; }
.game-card { background: #232323; border-radius: 8px; overflow: hidden; border: 1px solid #2f2f2f; transition: transform .2s, border-color .2s; }
.game-card:hover { transform: translateY(-4px); border-color: #f9b115; }
.game-card img { width: 100%; height: 160px; object-fit: cover; }
.game-card-body { padding: 10px 12px; }
.game-card-body h3 { font-size: 15px; margin: 0 0 4px; color: #f9b115; }
.game-card-body p { font-size: 13px; margin: 0; color: #aaa; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 20px 0; }
.stat-box { background: #232323; padding: 22px 16px; border-radius: 8px; text-align: center; border-left: 3px solid #f9b115; }
.stat-box .num { display: block; font-size: 28px; color: #f9b115; font-weight: 900; margin-bottom: 6px; }
.stat-box .lbl { font-size: 13px; color: #bbb; }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.two-col img { border-radius: 8px; width: 100%; height: auto; object-fit: cover; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* Features bullet */
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px dashed #333; color: #d0d0d0; font-size: 14px; }
.feature-list li::before { content: "★"; position: absolute; left: 0; color: #f9b115; font-size: 16px; }

/* FAQ */
.faq-item { background: #232323; border-radius: 6px; padding: 16px 18px; margin-bottom: 10px; border-left: 3px solid #f9b115; }
.faq-item h4 { color: #f9b115; margin-bottom: 8px; font-size: 16px; }
.faq-item p { color: #ccc; margin: 0; font-size: 14px; }
.faq-item ul { margin: 6px 0 0 20px; color: #ccc; font-size: 14px; }

/* Testimonial */
.testimonial { background: linear-gradient(90deg, #2a1f10, #1a1a1a); padding: 22px 20px; border-radius: 8px; margin-top: 22px; border: 1px solid #3a2e1a; font-style: italic; color: #e8d8b0; }
.testimonial strong { color: #f9b115; font-style: normal; }

/* Mini Banner Row */
.banner-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; margin-top: 18px; }
.banner-row .b-item { background: #232323; border-radius: 8px; overflow: hidden; }
.banner-row .b-item img { width: 100%; height: auto; object-fit: cover; }
.banner-row .b-item .b-cap { padding: 12px; }
.banner-row .b-item .b-cap h3 { margin: 0 0 4px; color: #f9b115; font-size: 16px; }
.banner-row .b-item .b-cap p { font-size: 13px; margin: 0; color: #aaa; }

/* Live Casino Showcase */
.showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 18px; }
.showcase-card { background: #232323; border-radius: 8px; overflow: hidden; border: 1px solid #2f2f2f; }
.showcase-card img { width: 100%; height: 150px; object-fit: cover; }
.showcase-card div { padding: 12px; }
.showcase-card h3 { font-size: 15px; color: #fff; margin: 0 0 4px; }
.showcase-card p { font-size: 12px; color: #999; margin: 0; }

/* Footer */
footer { background: #0d0d0d; color: #aaa; padding: 36px 15px 18px; border-top: 3px solid #f9b115; margin-top: 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.footer-col h4 { color: #f9b115; font-size: 15px; margin-bottom: 12px; border-bottom: 1px solid #2a2a2a; padding-bottom: 6px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; font-size: 13px; }
.footer-col ul li a:hover { color: #f9b115; }
.footer-col p { font-size: 13px; color: #999; margin-bottom: 6px; }
.footer-bottom { max-width: 1200px; margin: 22px auto 0; padding-top: 16px; border-top: 1px solid #2a2a2a; text-align: center; font-size: 12px; color: #888; }
.footer-bottom .age-tag { display: inline-block; background: #d83a3a; color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: 700; margin-bottom: 8px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .header-inner { justify-content: center; }
  .main-nav { width: 100%; justify-content: center; order: 3; }
  .auth-buttons { order: 2; }
  h2 { font-size: 22px; }
  .game-card img { height: 130px; }
}