* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', 'Helvetica', sans-serif; background: #f0f4fb; color: #1f2a44; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 15px; }

/* Top Header */
.top-bar { background: linear-gradient(180deg, #0a2a6e 0%, #143b96 100%); color: #fff; padding: 10px 0; }
.top-bar .inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 32px; font-weight: 900; color: #ffd84d; letter-spacing: 1px; font-style: italic; }
.logo span { color: #fff; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.top-actions .promo { font-size: 13px; color: #ffd84d; margin-right: 12px; }
.btn { display: inline-block; padding: 8px 22px; border-radius: 20px; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn-login { background: #2ecc71; color: #fff; box-shadow: 0 3px 0 #1f9c55; }
.btn-register { background: #ff5e3a; color: #fff; box-shadow: 0 3px 0 #c43a18; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,.25); }

/* Nav */
nav.main-nav { background: #fff; border-bottom: 2px solid #ffd84d; box-shadow: 0 2px 8px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 100; }
.nav-list { display: flex; flex-wrap: wrap; justify-content: center; }
.nav-list a { padding: 14px 22px; font-weight: 700; font-size: 15px; color: #143b96; transition: background .2s, color .2s; }
.nav-list a:hover, .nav-list a.active { background: #ffd84d; color: #0a2a6e; }

/* Hero */
.hero { background: linear-gradient(135deg, #143b96 0%, #0a2a6e 50%, #ff5e3a 100%); padding: 30px 0; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; align-items: center; }
.hero-text h1 { font-size: 40px; color: #ffd84d; line-height: 1.2; text-shadow: 2px 2px 0 #0a2a6e; margin-bottom: 12px; }
.hero-text p { color: #fff; font-size: 16px; margin-bottom: 18px; }
.hero-text .jackpot { background: #b91c1c; color: #ffd84d; padding: 14px 22px; border-radius: 12px; font-size: 28px; font-weight: 900; display: inline-block; border: 3px solid #ffd84d; box-shadow: 0 6px 16px rgba(0,0,0,.4); }
.hero-img { border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.hero-img img { width: 100%; height: auto; }

/* Section base */
section { padding: 30px 0; }
.section-title { font-size: 22px; color: #0a2a6e; margin-bottom: 18px; padding-left: 12px; border-left: 5px solid #ff5e3a; font-weight: 800; text-transform: uppercase; }

/* Bonus banners */
.bonus-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.bonus-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(20,59,150,.1); transition: transform .2s; }
.bonus-card:hover { transform: translateY(-4px); }
.bonus-card img { width: 100%; height: auto; }
.bonus-card .meta { padding: 12px; }
.bonus-card .meta h3 { font-size: 15px; color: #0a2a6e; margin-bottom: 6px; }
.bonus-card .meta p { font-size: 13px; color: #5b6478; }

/* Supplier list */
.supplier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.supplier-card { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 3px 10px rgba(0,0,0,.12); }
.supplier-card img { width: 100%; height: 100%; object-fit: cover; }
.supplier-card .label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(180deg, transparent 0%, rgba(10,42,110,.9) 100%); color: #ffd84d; padding: 18px 12px 10px; font-weight: 800; font-size: 14px; text-align: center; text-transform: uppercase; }

/* Hottest games */
.game-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.game-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 8px rgba(0,0,0,.1); text-align: center; transition: transform .2s; }
.game-card:hover { transform: scale(1.04); }
.game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.game-card .name { padding: 8px 4px; font-size: 12px; font-weight: 700; color: #0a2a6e; background: #fff7d6; }
.game-card .tag { font-size: 10px; background: #ff5e3a; color: #fff; padding: 2px 6px; border-radius: 4px; margin-top: 4px; display: inline-block; }

/* About-intro */
.intro-block { background: #fff; padding: 24px; border-radius: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.intro-block p { margin-bottom: 14px; font-size: 15px; color: #2c3e64; }
.intro-block .highlight { background: #fff7d6; padding: 12px; border-left: 4px solid #ffd84d; border-radius: 6px; font-style: italic; margin: 14px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0; }
.stat-box { background: linear-gradient(135deg, #143b96, #0a2a6e); color: #fff; padding: 18px 12px; border-radius: 10px; text-align: center; }
.stat-box .num { font-size: 26px; font-weight: 900; color: #ffd84d; display: block; }
.stat-box .lbl { font-size: 12px; margin-top: 4px; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.feature-card img { width: 100%; height: 180px; object-fit: cover; }
.feature-card .body { padding: 16px; }
.feature-card h3 { color: #ff5e3a; font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #4a5468; }

/* FAQ */
.faq-list { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.faq-item { border-bottom: 1px solid #e5e9f2; padding: 14px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { color: #0a2a6e; font-size: 16px; margin-bottom: 8px; }
.faq-item h4::before { content: "Q. "; color: #ff5e3a; font-weight: 900; }
.faq-item p { color: #4a5468; font-size: 14px; }
.faq-item ul { margin: 8px 0 0 22px; color: #4a5468; font-size: 14px; }

/* Testimonial */
.testimonial { background: linear-gradient(135deg, #fff7d6 0%, #fff 100%); border-left: 5px solid #ff5e3a; padding: 18px 22px; border-radius: 10px; margin-top: 20px; font-style: italic; color: #2c3e64; }
.testimonial strong { color: #0a2a6e; font-style: normal; }

/* Download */
.download-block { background: linear-gradient(135deg, #0a2a6e, #143b96); color: #fff; padding: 28px; border-radius: 14px; display: grid; grid-template-columns: 2fr 1fr; gap: 22px; align-items: center; }
.download-block h2 { color: #ffd84d; font-size: 24px; margin-bottom: 10px; }
.download-block p { font-size: 14px; margin-bottom: 14px; }
.download-buttons .btn { margin-right: 8px; background: #2ecc71; color: #fff; padding: 10px 22px; }
.download-block img { border-radius: 10px; }

/* Footer */
footer { background: #0a2a6e; color: #c8d2eb; padding: 30px 0 18px; margin-top: 30px; }
.foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 22px; }
.foot-grid h4 { color: #ffd84d; margin-bottom: 12px; font-size: 15px; }
.foot-grid a { display: block; padding: 4px 0; font-size: 13px; }
.foot-grid a:hover { color: #ffd84d; }
.copyright { text-align: center; padding-top: 16px; border-top: 1px solid #1f3d8a; font-size: 13px; }

@media (max-width: 768px) {
  .hero-grid, .download-block { grid-template-columns: 1fr; }
  .bonus-row, .feature-grid { grid-template-columns: 1fr; }
  .supplier-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-text h1 { font-size: 28px; }
  .nav-list a { padding: 10px 14px; font-size: 13px; }
  .top-actions .promo { display: none; }
}