* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #ffffff; color: #231f20; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-bar { background: #000; color: #fff; padding: 6px 0; font-size: 13px; }
.top-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: flex-end; gap: 15px; }
.top-bar a { color: #fff; padding: 4px 12px; border-radius: 3px; transition: background 0.2s; }
.top-bar .btn-login { background: transparent; border: 1px solid #fdb913; color: #fdb913; }
.top-bar .btn-register { background: #fdb913; color: #000; font-weight: 700; }
.top-bar .btn-login:hover, .top-bar .btn-register:hover { opacity: 0.85; }

.header { background: #fdb913; padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-size: 28px; font-weight: 900; color: #231f20; letter-spacing: -1px; text-transform: lowercase; }
.logo:hover { color: #000; }

.nav { display: flex; align-items: center; gap: 5px; }
.nav a { padding: 18px 16px; font-weight: 700; font-size: 14px; text-transform: uppercase; color: #231f20; transition: background 0.2s; }
.nav a:hover { background: rgba(0,0,0,0.1); }
.nav a.active { background: #000; color: #fdb913; }

.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: #231f20; }

/* Hero Banner */
.hero { background: #000; color: #fff; padding: 0; position: relative; overflow: hidden; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 40px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.hero-text h1 { font-size: 42px; font-weight: 900; margin-bottom: 18px; line-height: 1.15; color: #fdb913; text-transform: uppercase; }
.hero-text p { font-size: 16px; color: #ccc; margin-bottom: 22px; }
.hero-cta { display: inline-block; background: #fdb913; color: #000; padding: 12px 30px; font-weight: 800; border-radius: 4px; text-transform: uppercase; font-size: 14px; transition: transform 0.2s; }
.hero-cta:hover { transform: translateY(-2px); }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-height: 360px; width: auto; border-radius: 8px; box-shadow: 0 6px 20px rgba(253,185,19,0.25); }

/* Section title */
.section { padding: 50px 20px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h2 { font-size: 30px; font-weight: 800; text-transform: uppercase; color: #231f20; display: inline-block; padding-bottom: 10px; border-bottom: 3px solid #fdb913; }
.section-title p { color: #666; margin-top: 12px; font-size: 15px; }

/* Intro block */
.intro-block { background: #f7f7f7; }
.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.intro-grid h2 { font-size: 26px; margin-bottom: 16px; color: #231f20; }
.intro-grid p { margin-bottom: 14px; color: #444; font-size: 15px; }
.intro-grid img { border-radius: 8px; }

/* Game grid */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.game-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform 0.25s, box-shadow 0.25s; cursor: pointer; }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.game-card-img { display: flex; justify-content: center; align-items: center; background: #f0f0f0; min-height: 180px; }
.game-card-img img { max-width: 100%; max-height: 200px; width: auto; height: auto; }
.game-card-body { padding: 14px; text-align: center; }
.game-card-body h3 { font-size: 15px; color: #231f20; margin-bottom: 6px; font-weight: 700; }
.game-card-body span { font-size: 12px; color: #fdb913; font-weight: 700; text-transform: uppercase; }

/* Feature columns */
.feature-block { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-item { padding: 28px 22px; background: #f9f9f9; border-left: 4px solid #fdb913; border-radius: 4px; }
.feature-item h3 { font-size: 18px; color: #231f20; margin-bottom: 10px; font-weight: 800; }
.feature-item p { color: #555; font-size: 14px; }

/* Provider banner */
.provider-block { background: #231f20; color: #fff; padding: 50px 20px; }
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1280px; margin: 0 auto; }
.provider-card { background: #000; border-radius: 8px; overflow: hidden; border: 1px solid #333; transition: border-color 0.2s; }
.provider-card:hover { border-color: #fdb913; }
.provider-card img { width: 100%; height: auto; }
.provider-card-info { padding: 14px; }
.provider-card-info h3 { font-size: 16px; color: #fdb913; margin-bottom: 6px; }
.provider-card-info p { font-size: 13px; color: #aaa; }

/* News strip */
.news-strip .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.news-card-img { display: flex; justify-content: center; background: #f0f0f0; }
.news-card-img img { max-height: 230px; width: auto; }
.news-card-body { padding: 16px; }
.news-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.news-meta span { color: #fdb913; font-weight: 700; margin-right: 8px; }
.news-card-body h3 { font-size: 16px; margin-bottom: 8px; color: #231f20; }
.news-card-body p { font-size: 13px; color: #555; }

/* Stats */
.stats-block { background: #fdb913; padding: 35px 20px; }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .num { font-size: 34px; font-weight: 900; color: #000; display: block; }
.stat-item .label { font-size: 13px; color: #231f20; text-transform: uppercase; font-weight: 700; }

/* Testimonial */
.testimonial-block { background: #f7f7f7; padding: 50px 20px; }
.testimonial-card { max-width: 800px; margin: 0 auto; background: #fff; padding: 30px; border-radius: 8px; border-left: 5px solid #fdb913; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.testimonial-card p { font-style: italic; color: #444; font-size: 16px; margin-bottom: 12px; }
.testimonial-card cite { font-size: 13px; color: #888; font-style: normal; font-weight: 700; }

/* FAQ */
.faq-block { background: #fff; padding: 50px 20px; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { background: #f9f9f9; margin-bottom: 14px; padding: 20px 24px; border-left: 4px solid #fdb913; border-radius: 4px; }
.faq-item h4 { font-size: 16px; color: #231f20; margin-bottom: 10px; font-weight: 800; }
.faq-item p { color: #555; font-size: 14px; }
.faq-item ul { margin-top: 8px; padding-left: 20px; color: #555; font-size: 14px; }

/* Footer */
.footer { background: #000; color: #ccc; padding: 45px 20px 20px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #fdb913; font-size: 15px; margin-bottom: 15px; text-transform: uppercase; font-weight: 800; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fdb913; }
.footer-col p { font-size: 13px; color: #aaa; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 12px; color: #888; }
.footer-bottom strong { color: #fdb913; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 30px 20px; }
  .hero-text h1 { font-size: 28px; }
  .hero-image img { max-height: 240px; }
  .intro-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .provider-grid, .news-strip .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; background: #fdb913; padding: 10px 0; box-shadow: 0 4px 8px rgba(0,0,0,0.15); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 20px; width: 100%; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .menu-toggle { display: block; }
  .section-title h2 { font-size: 22px; }
  .top-bar-inner { justify-content: center; }
}
@media (max-width: 480px) {
  .game-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 24px; }
}