* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; background: #1a0e08; color: #e8d5b7; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background: #0f0805; border-bottom: 2px solid #3a1f10; position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-size: 26px; font-weight: bold; color: #f5b041; letter-spacing: 1px; }
nav ul { list-style: none; display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }
nav ul li a { color: #e8d5b7; font-size: 15px; padding: 6px 10px; transition: color 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #f5b041; }
.auth-buttons { display: flex; gap: 10px; }
.btn-login { background: #f5b041; color: #1a0e08; padding: 8px 18px; border-radius: 4px; font-weight: bold; font-size: 14px; }
.btn-register { background: transparent; color: #f5b041; padding: 8px 18px; border: 1px solid #f5b041; border-radius: 4px; font-weight: bold; font-size: 14px; }
.btn-login:hover, .btn-register:hover { opacity: 0.85; }

/* Hero */
.hero { background: linear-gradient(135deg, #2a1810 0%, #1a0e08 100%); padding: 60px 20px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 36px; color: #f5b041; margin-bottom: 20px; line-height: 1.3; }
.hero-text p { font-size: 16px; margin-bottom: 25px; color: #d0b89a; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.btn-primary { background: #f5b041; color: #1a0e08; padding: 12px 28px; border-radius: 4px; font-weight: bold; }
.btn-secondary { background: transparent; color: #f5b041; padding: 12px 28px; border: 1px solid #f5b041; border-radius: 4px; font-weight: bold; }
.hero-stats { display: flex; gap: 25px; flex-wrap: wrap; }
.stat-item { text-align: left; }
.stat-num { font-size: 22px; color: #f5b041; font-weight: bold; }
.stat-label { font-size: 13px; color: #a89178; }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-width: 380px; border-radius: 12px; box-shadow: 0 8px 30px rgba(245,176,65,0.25); }

/* Sections */
section { padding: 50px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 28px; color: #f5b041; margin-bottom: 35px; }

/* Welcome block */
.welcome-block { background: #0f0805; }
.welcome-block p { font-size: 15px; color: #d0b89a; margin-bottom: 18px; text-align: justify; }

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: #2a1810; padding: 22px 18px; border-radius: 6px; text-align: center; }
.feature-card h3 { color: #f5b041; font-size: 16px; margin-bottom: 12px; text-transform: uppercase; }
.feature-card p { font-size: 13px; color: #c0a888; }

/* Steps */
.steps-section { background: #0f0805; }
.step-block { background: #2a1810; padding: 20px; border-radius: 6px; margin-bottom: 18px; }
.step-block h3 { color: #f5b041; font-size: 15px; margin-bottom: 8px; text-transform: uppercase; }
.step-block p { font-size: 14px; color: #c0a888; }

/* Game showcase */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 15px; }
.game-card { background: #2a1810; border-radius: 6px; overflow: hidden; text-align: center; padding-bottom: 12px; }
.game-card img { width: 100%; height: auto; object-fit: cover; }
.game-card h4 { color: #f5b041; font-size: 14px; margin: 10px 5px 4px; }
.game-card span { font-size: 12px; color: #a89178; }

/* Why section */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: #2a1810; padding: 22px; border-radius: 6px; }
.why-card h3 { color: #f5b041; font-size: 16px; margin-bottom: 10px; text-transform: uppercase; }
.why-card p { font-size: 13px; color: #c0a888; }

/* Testimonial */
.testimonial { background: #2a1810; padding: 30px; border-left: 4px solid #f5b041; border-radius: 4px; margin: 30px auto; max-width: 800px; font-style: italic; color: #d0b89a; }

/* FAQ */
.faq-section { background: #0f0805; }
.faq-item { background: #2a1810; padding: 18px 22px; border-radius: 4px; margin-bottom: 12px; }
.faq-item h4 { color: #f5b041; font-size: 15px; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: #c0a888; }
.faq-item ul { margin-top: 8px; padding-left: 20px; color: #c0a888; font-size: 13px; }

/* Brand story */
.brand-section { background: #1a0e08; }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; }
.brand-text p { font-size: 14px; color: #d0b89a; margin-bottom: 14px; text-align: justify; }
.brand-image img { border-radius: 8px; }

/* Footer */
footer { background: #0a0503; color: #a89178; padding: 40px 20px 20px; border-top: 2px solid #3a1f10; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 25px; }
.footer-col h4 { color: #f5b041; font-size: 15px; margin-bottom: 14px; text-transform: uppercase; }
.footer-col p, .footer-col li { font-size: 13px; margin-bottom: 8px; color: #a89178; }
.footer-col ul { list-style: none; }
.footer-col ul li a:hover { color: #f5b041; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #2a1810; font-size: 13px; color: #8a7860; }
.footer-bottom .responsible { color: #f5b041; font-weight: bold; margin-top: 8px; }

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 15px; }
  nav ul { gap: 12px; font-size: 14px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 26px; }
  .hero-image img { max-width: 260px; }
  .features-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .features-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
}