* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, 'Helvetica Neue', sans-serif; background: #f4f7fb; color: #2c3e50; line-height: 1.6; font-size: 14px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-bar { background: linear-gradient(90deg, #0a2540 0%, #1e4976 100%); color: #fff; padding: 6px 0; font-size: 12px; }
.top-bar-inner { max-width: 1180px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; flex-wrap: wrap; }

header { background: #fff; border-bottom: 3px solid #0a2540; box-shadow: 0 2px 6px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logo { font-size: 26px; font-weight: 900; color: #0a2540; letter-spacing: 1px; }
.logo span { color: #f5a623; }

nav ul { list-style: none; display: flex; gap: 4px; flex-wrap: wrap; }
nav ul li a { padding: 10px 16px; display: block; font-weight: 700; color: #0a2540; font-size: 13px; text-transform: uppercase; border-radius: 4px; transition: all .25s; }
nav ul li a:hover { background: #f5a623; color: #fff; }
nav ul li a.active { background: #0a2540; color: #fff; }

.auth-buttons { display: flex; gap: 8px; }
.btn { display: inline-block; padding: 9px 20px; border-radius: 4px; font-weight: 700; font-size: 13px; text-transform: uppercase; transition: all .25s; cursor: pointer; border: none; }
.btn-login { background: #1e4976; color: #fff; }
.btn-register { background: #f5a623; color: #fff; }
.btn-login:hover, .btn-register:hover { opacity: 0.9; transform: translateY(-1px); }

.menu-toggle { display: none; font-size: 26px; background: none; border: none; color: #0a2540; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #0a2540 0%, #1e4976 50%, #2a6db5 100%); color: #fff; padding: 50px 15px; }
.hero-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 36px; line-height: 1.2; margin-bottom: 18px; color: #f5a623; }
.hero p.lead { font-size: 16px; margin-bottom: 22px; opacity: 0.95; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { padding: 12px 28px; font-size: 14px; }
.hero-img { text-align: center; }
.hero-img img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); margin: 0 auto; }

/* Sections */
section { padding: 50px 15px; }
.container { max-width: 1180px; margin: 0 auto; }
h2 { font-size: 26px; color: #0a2540; margin-bottom: 12px; border-left: 5px solid #f5a623; padding-left: 14px; }
h3 { font-size: 18px; color: #1e4976; margin-bottom: 10px; }
h4 { font-size: 16px; color: #0a2540; margin-bottom: 8px; }
.section-sub { color: #6b7a8f; margin-bottom: 28px; font-size: 14px; }

/* Intro block */
.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.intro-text p { margin-bottom: 14px; }

/* Stats */
.stats-bar { background: #0a2540; color: #fff; padding: 30px 15px; }
.stats-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .num { font-size: 28px; font-weight: 900; color: #f5a623; display: block; }
.stat-item .lbl { font-size: 13px; opacity: 0.85; }

/* 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 .25s; }
.game-card:hover { transform: translateY(-4px); }
.game-card-img { background: #f0f4f8; display: flex; align-items: center; justify-content: center; padding: 12px; min-height: 180px; }
.game-card-img img { max-height: 180px; object-fit: contain; }
.game-card-body { padding: 14px; }
.game-card-body h3 { font-size: 15px; margin-bottom: 6px; }
.game-card-body p { font-size: 13px; color: #6b7a8f; }

/* Features */
.features { background: #fff; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }
.feat-item { padding: 22px; border: 1px solid #e6ebf2; border-radius: 8px; background: #fafcfe; }
.feat-item h3 { color: #f5a623; }

/* Process */
.process-block { background: #f9fbfd; border-left: 4px solid #1e4976; padding: 22px; margin: 18px 0; border-radius: 0 6px 6px 0; }
.process-block ol { margin-left: 22px; margin-top: 10px; }
.process-block ol li { margin-bottom: 8px; }

/* FAQ */
.faq-list { margin-top: 20px; }
.faq-item { background: #fff; border: 1px solid #e6ebf2; border-radius: 6px; padding: 18px 22px; margin-bottom: 12px; }
.faq-item h4 { color: #1e4976; font-size: 15px; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: #4a5a6e; }
.faq-item ul { margin-left: 22px; margin-top: 6px; }

/* Review */
.review-card { background: linear-gradient(135deg, #fff8ee 0%, #fff 100%); border-left: 4px solid #f5a623; padding: 20px; border-radius: 0 6px 6px 0; margin-top: 18px; font-style: italic; color: #5a4a2c; }

/* Promo banner */
.promo-banner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 18px; }
.promo-banner img { width: 100%; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Footer */
footer { background: #0a2540; color: #c5d2e3; padding: 40px 15px 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-col h4 { color: #f5a623; font-size: 15px; margin-bottom: 14px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 13px; }
.footer-col ul li a:hover { color: #f5a623; }
.footer-col p { font-size: 13px; margin-bottom: 8px; }
.footer-bottom { max-width: 1180px; margin: 30px auto 0; padding: 18px 0; border-top: 1px solid #1e4976; text-align: center; font-size: 12px; color: #8a9bb2; }
.footer-bottom .age { display: inline-block; background: #c0392b; color: #fff; padding: 3px 10px; border-radius: 3px; font-weight: 700; margin-right: 6px; }

@media (max-width: 900px) {
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  .menu-toggle { display: block; }
  .header-inner { justify-content: space-between; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .intro-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .promo-banner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}