* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #f5f5f5; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-bar { background: #1a1a1a; color: #ccc; font-size: 12px; padding: 6px 20px; text-align: right; }
.top-bar a { margin-left: 15px; color: #ccc; }
.top-bar a:hover { color: #00a826; }

header { background: #003d1e; padding: 12px 20px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.header-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: 900; color: #ffd700; letter-spacing: 1px; text-transform: uppercase; }
.logo:hover { color: #fff; }

nav.main-nav { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
nav.main-nav a { color: #fff; padding: 10px 16px; font-size: 14px; font-weight: 600; border-radius: 4px; transition: all 0.3s; }
nav.main-nav a:hover, nav.main-nav a.active { background: #00a826; color: #fff; }

.auth-buttons { display: flex; gap: 10px; }
.btn-login { background: transparent; color: #fff; border: 1px solid #fff; padding: 8px 20px; border-radius: 4px; font-weight: 600; font-size: 13px; }
.btn-login:hover { background: #fff; color: #003d1e; }
.btn-register { background: #ffd700; color: #003d1e; border: none; padding: 8px 20px; border-radius: 4px; font-weight: 700; font-size: 13px; }
.btn-register:hover { background: #fff; }

/* Hero */
.hero { position: relative; background: linear-gradient(135deg, #003d1e, #00a826); color: #fff; overflow: hidden; }
.hero-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 40px 20px; flex-wrap: wrap; gap: 30px; }
.hero-text { flex: 1; min-width: 280px; }
.hero-text h1 { font-size: 38px; line-height: 1.2; margin-bottom: 16px; text-transform: uppercase; }
.hero-text p { font-size: 16px; margin-bottom: 20px; opacity: 0.95; }
.hero-btn { display: inline-block; background: #ffd700; color: #003d1e; padding: 14px 32px; font-weight: 800; border-radius: 4px; text-transform: uppercase; font-size: 15px; }
.hero-btn:hover { background: #fff; }
.hero-image { flex: 1; min-width: 280px; max-width: 500px; }
.hero-image img { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.hero-note { background: rgba(0,0,0,0.3); padding: 8px 20px; font-size: 11px; text-align: center; }

/* Categories */
.welcome { background: #fff; padding: 50px 20px; text-align: center; }
.welcome h2 { font-size: 28px; color: #003d1e; margin-bottom: 8px; text-transform: uppercase; }
.welcome p { color: #666; margin-bottom: 30px; }
.cat-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.cat-item { text-align: center; }
.cat-icon { width: 70px; height: 70px; background: #003d1e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-size: 28px; color: #ffd700; }
.cat-item span { font-size: 13px; font-weight: 600; color: #333; }

/* Promo */
.section { padding: 50px 20px; max-width: 1300px; margin: 0 auto; }
.section-title { font-size: 24px; color: #003d1e; margin-bottom: 25px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.section-title::before { content: "🎁"; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.promo-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform 0.3s; }
.promo-card:hover { transform: translateY(-4px); }
.promo-card img { width: 100%; height: 180px; object-fit: cover; }
.promo-body { padding: 20px; }
.promo-tag { font-size: 12px; color: #00a826; font-weight: 600; }
.promo-body h3 { font-size: 18px; margin: 8px 0; color: #003d1e; text-transform: uppercase; }
.promo-body p { font-size: 13px; color: #666; margin-bottom: 15px; }
.promo-link { display: inline-block; background: #00a826; color: #fff; padding: 10px 24px; border-radius: 4px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.promo-link:hover { background: #003d1e; }
.tc { font-size: 11px; color: #999; margin-top: 10px; }

.center-cta { text-align: center; margin-top: 30px; }
.btn-all { background: #00a826; color: #fff; padding: 14px 40px; font-weight: 700; border-radius: 4px; text-transform: uppercase; font-size: 14px; display: inline-block; }
.btn-all:hover { background: #003d1e; }

/* Games */
.games-section { background: #fff; }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 15px; }
.game-card { background: #f5f5f5; border-radius: 8px; overflow: hidden; text-align: center; transition: transform 0.3s; }
.game-card:hover { transform: scale(1.04); }
.game-card img { width: 100%; height: 160px; object-fit: cover; }
.game-card p { padding: 10px; font-size: 13px; font-weight: 600; color: #003d1e; }

/* Safer */
.safer { background: #eaf5ee; padding: 50px 20px; text-align: center; }
.safer h2 { font-size: 24px; color: #003d1e; margin-bottom: 10px; text-transform: uppercase; }
.safer p { color: #555; max-width: 700px; margin: 0 auto 25px; }
.safer-icons { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.safer-item { text-align: center; }
.safer-circle { width: 60px; height: 60px; background: #003d1e; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: #ffd700; font-size: 24px; }
.safer-item a { font-size: 13px; color: #003d1e; font-weight: 600; text-decoration: underline; }

/* About */
.about-strip { background: #fff; padding: 50px 20px; }
.about-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.about-img { flex: 1; min-width: 280px; }
.about-img img { border-radius: 8px; }
.about-text { flex: 1.5; min-width: 280px; }
.about-text h2 { color: #003d1e; font-size: 26px; margin-bottom: 15px; }
.about-text p { color: #555; margin-bottom: 12px; font-size: 14px; }

/* Stats */
.stats { background: #003d1e; color: #fff; padding: 40px 20px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.stat-num { font-size: 36px; color: #ffd700; font-weight: 900; }
.stat-label { font-size: 13px; opacity: 0.9; margin-top: 5px; }

/* FAQ */
.faq { background: #f5f5f5; padding: 50px 20px; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq h2 { color: #003d1e; font-size: 26px; margin-bottom: 25px; text-align: center; text-transform: uppercase; }
.faq-item { background: #fff; padding: 20px; border-radius: 8px; margin-bottom: 15px; border-left: 4px solid #00a826; }
.faq-item h4 { color: #003d1e; font-size: 16px; margin-bottom: 10px; }
.faq-item p { color: #555; font-size: 14px; }
.faq-item ul { margin-top: 8px; padding-left: 20px; color: #555; font-size: 14px; }

/* Review */
.review-block { background: #fff; padding: 40px 20px; text-align: center; }
.review-card { max-width: 700px; margin: 0 auto; background: #eaf5ee; padding: 25px; border-radius: 8px; font-style: italic; color: #003d1e; }

/* Content article */
.content-article { background: #fff; padding: 50px 20px; }
.content-article-inner { max-width: 900px; margin: 0 auto; }
.content-article h2 { color: #003d1e; font-size: 24px; margin: 20px 0 12px; }
.content-article h3 { color: #00a826; font-size: 18px; margin: 18px 0 10px; }
.content-article p { color: #555; margin-bottom: 14px; font-size: 14px; }

/* Footer */
footer { background: #1a1a1a; color: #ccc; padding: 40px 20px 20px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-col h4 { color: #ffd700; margin-bottom: 15px; font-size: 15px; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; color: #ccc; font-size: 13px; padding: 4px 0; }
.footer-col a:hover { color: #00a826; }
address { font-style: normal; font-size: 13px; color: #ccc; line-height: 1.8; }
.footer-bottom { max-width: 1300px; margin: 30px auto 0; border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 12px; color: #888; }
.age-warn { color: #ffd700; font-weight: 700; margin-top: 8px; }

@media (max-width: 768px) {
  .hero-text h1 { font-size: 26px; }
  nav.main-nav { width: 100%; justify-content: center; margin-top: 10px; }
  nav.main-nav a { padding: 8px 10px; font-size: 12px; }
  .logo { font-size: 22px; }
  .auth-buttons { width: 100%; justify-content: center; margin-top: 10px; }
  .section-title { font-size: 20px; }
  .cat-grid { gap: 15px; }
  .cat-icon { width: 55px; height: 55px; font-size: 22px; }
}
.cat-icon img{width:100%;height:100%;object-fit:cover;object-position:center}
.safer-circle img{width:100%;height:100%;object-fit:cover;object-position:center}