* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Roboto, Arial, sans-serif; line-height: 1.6; color: #333; background: #f4f6fa; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.top-header { background: linear-gradient(135deg, #2a3a8f 0%, #3949ab 100%); color: #fff; padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.logo { font-size: 26px; font-weight: 800; color: #ffc107; letter-spacing: 1px; }
.logo span { color: #fff; }
nav ul { display: flex; list-style: none; gap: 8px; flex-wrap: wrap; }
nav ul li a { padding: 8px 14px; border-radius: 4px; color: #e8eaf6; font-size: 14px; font-weight: 500; transition: all 0.3s; }
nav ul li a:hover, nav ul li a.active { background: rgba(255,193,7,0.2); color: #ffc107; }
.auth-btns { display: flex; gap: 8px; }
.btn { padding: 8px 18px; border-radius: 4px; font-weight: 600; font-size: 14px; transition: all 0.3s; cursor: pointer; border: none; }
.btn-login { background: transparent; color: #ffc107; border: 1px solid #ffc107; }
.btn-register { background: #ffc107; color: #2a3a8f; }
.btn-login:hover { background: #ffc107; color: #2a3a8f; }
.btn-register:hover { background: #ffb300; }

/* Hero */
.hero { background: linear-gradient(135deg, #2a3a8f 0%, #3949ab 100%); color: #fff; padding: 50px 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.hero h1 { font-size: 36px; line-height: 1.3; margin-bottom: 18px; color: #ffc107; }
.hero p { font-size: 16px; margin-bottom: 22px; color: #e8eaf6; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: #ffc107; color: #2a3a8f; padding: 12px 26px; font-size: 15px; border-radius: 4px; font-weight: 700; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid #fff; padding: 12px 26px; font-size: 15px; border-radius: 4px; font-weight: 600; }

/* Sections */
section { padding: 50px 0; }
.section-light { background: #fff; }
.section-gray { background: #f4f6fa; }
.section-dark { background: linear-gradient(135deg, #2a3a8f 0%, #3949ab 100%); color: #fff; }
.section-yellow { background: #ffc107; color: #2a3a8f; }
.section-title { text-align: center; font-size: 28px; margin-bottom: 35px; color: #2a3a8f; font-weight: 700; }
.section-dark .section-title { color: #ffc107; }
.section-yellow .section-title { color: #2a3a8f; }

/* Intro */
.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.intro-text p { margin-bottom: 14px; font-size: 15px; }
.intro-img img { border-radius: 8px; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: #fff; padding: 25px 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.feature-card img { width: 80px; height: 80px; margin: 0 auto 15px; border-radius: 50%; object-fit: cover; }
.feature-card h3 { font-size: 16px; color: #2a3a8f; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: #666; }

/* Games */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.game-card { background: #fff; padding: 14px; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.game-card img { width: 100%; max-width: 170px; margin: 0 auto 10px; border-radius: 6px; }
.game-card h4 { font-size: 14px; color: #2a3a8f; }
.games-cta { text-align: center; margin-top: 30px; }

/* Promo */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promo-card { background: rgba(255,255,255,0.08); padding: 14px; border-radius: 8px; border: 1px solid rgba(255,193,7,0.3); }
.promo-card img { width: 100%; border-radius: 4px; margin-bottom: 10px; }
.promo-card h3 { color: #ffc107; font-size: 15px; margin-bottom: 6px; }
.promo-card p { font-size: 13px; color: #e8eaf6; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: #fff; padding: 25px; border-radius: 8px; text-align: center; border-top: 4px solid #ffc107; }
.step-num { width: 50px; height: 50px; background: #ffc107; color: #2a3a8f; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 14px; }
.step-card h3 { font-size: 16px; color: #2a3a8f; margin-bottom: 8px; }

/* App */
.app-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.app-grid h2 { color: #ffc107; font-size: 26px; margin-bottom: 14px; }
.app-grid p { color: #e8eaf6; margin-bottom: 18px; }
.app-thumbs { display: flex; gap: 14px; align-items: center; }
.app-thumbs img { width: 90px; border-radius: 6px; }
.app-img img { border-radius: 8px; width: 100%; }

/* Responsible */
.resp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.resp-grid img { border-radius: 8px; }
.resp-grid ul { margin: 14px 0 14px 22px; }
.resp-grid li { margin-bottom: 6px; font-size: 14px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #2a3a8f; margin-bottom: 12px; border-radius: 6px; overflow: hidden; }
.faq-item h4 { padding: 14px 18px; color: #ffc107; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item h4::after { content: '+'; font-size: 22px; }
.faq-item p { padding: 0 18px 16px; color: #e8eaf6; font-size: 14px; display: block; }

/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: #fff; padding: 18px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.news-meta { font-size: 12px; color: #888; margin-bottom: 8px; }
.news-meta span { background: #ffc107; color: #2a3a8f; padding: 2px 8px; border-radius: 3px; margin-right: 8px; font-weight: 600; }
.news-card h3 { font-size: 15px; color: #2a3a8f; margin-bottom: 8px; }
.news-card p { font-size: 13px; color: #666; margin-bottom: 10px; }
.news-card a { color: #3949ab; font-size: 13px; font-weight: 600; }

/* CTA */
.cta-section { text-align: center; }
.cta-section p { font-size: 16px; margin: 12px 0 22px; }
.cta-section .btn-primary { background: #2a3a8f; color: #ffc107; padding: 14px 36px; font-size: 16px; }

/* Footer */
footer { background: #1a237e; color: #c5cae9; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #ffc107; font-size: 15px; margin-bottom: 14px; }
.footer-col p, .footer-col a { font-size: 13px; color: #c5cae9; margin-bottom: 6px; display: block; }
.footer-col a:hover { color: #ffc107; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; text-align: center; font-size: 12px; color: #9fa8da; }
.footer-bottom strong { color: #ffc107; }

@media (max-width: 768px) {
  .header-inner { flex-direction: column; }
  nav ul { justify-content: center; }
  .hero-inner, .intro-grid, .app-grid, .resp-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .features-grid, .promo-grid, .steps-grid, .news-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 22px; }
}
.step-num img{width:100%;height:100%;object-fit:cover;object-position:center}