* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #1a1a1a; color: #e8e8e8; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background: #2a2a2a; border-bottom: 2px solid #ff9800; position: sticky; top: 0; z-index: 100; }
.nav-wrap { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: bold; color: #ff9800; letter-spacing: 1px; }
nav ul { display: flex; list-style: none; gap: 6px; flex-wrap: wrap; }
nav ul li a { padding: 8px 14px; border-radius: 4px; font-size: 14px; color: #ddd; transition: 0.3s; display: block; }
nav ul li a:hover, nav ul li a.active { background: #ff9800; color: #1a1a1a; font-weight: bold; }
.auth-buttons { display: flex; gap: 10px; }
.btn-login { background: #ff9800; color: #1a1a1a; padding: 8px 18px; border-radius: 4px; font-weight: bold; font-size: 14px; }
.btn-register { background: #00c853; color: #fff; padding: 8px 18px; border-radius: 4px; font-weight: bold; font-size: 14px; }
.btn-login:hover, .btn-register:hover { opacity: 0.85; }

/* Hero */
.hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), #000; padding: 50px 20px; text-align: center; }
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero h1 { font-size: 42px; color: #ff9800; margin-bottom: 18px; }
.hero p { font-size: 17px; max-width: 760px; margin: 0 auto 28px; color: #ccc; }
.hero-image { max-width: 700px; margin: 0 auto; border: 3px solid #ff9800; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(255,152,0,0.3); }
.hero-cta { margin-top: 25px; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-cta a { padding: 14px 32px; border-radius: 6px; font-weight: bold; }
.cta-primary { background: #ff9800; color: #1a1a1a; }
.cta-secondary { background: #00c853; color: #fff; }

/* Sections */
.section { padding: 55px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 30px; color: #ff9800; margin-bottom: 12px; }
.section-sub { text-align: center; color: #aaa; max-width: 700px; margin: 0 auto 35px; }

/* Stats */
.stats { background: #222; padding: 40px 20px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-box { background: #2e2e2e; padding: 25px; border-radius: 8px; text-align: center; border-left: 4px solid #ff9800; }
.stat-num { font-size: 30px; color: #ff9800; font-weight: bold; }
.stat-lbl { color: #ccc; margin-top: 6px; font-size: 14px; }

/* Game grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; }
.game-card { background: #2a2a2a; border-radius: 8px; overflow: hidden; text-align: center; transition: 0.3s; border: 1px solid #333; }
.game-card:hover { transform: translateY(-4px); border-color: #ff9800; }
.game-card img { margin: 0 auto; }
.game-card h3 { padding: 12px 8px 4px; font-size: 15px; color: #fff; }
.game-card p { padding: 0 8px 14px; font-size: 12px; color: #999; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feature-card { background: #2a2a2a; padding: 25px; border-radius: 10px; border-top: 3px solid #00c853; }
.feature-card h3 { color: #ff9800; margin-bottom: 12px; font-size: 19px; }
.feature-card p { color: #bbb; font-size: 14px; }

/* Brand story */
.brand-story { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.brand-story img { border-radius: 10px; }
.brand-story h2 { color: #ff9800; font-size: 26px; margin-bottom: 15px; }
.brand-story p { color: #ccc; margin-bottom: 12px; }
@media (max-width: 768px) { .brand-story { grid-template-columns: 1fr; } }

/* Showcase */
.showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.showcase-item { background: #2a2a2a; border-radius: 10px; overflow: hidden; }
.showcase-item img { width: 100%; }
.showcase-item div { padding: 18px; }
.showcase-item h3 { color: #ff9800; margin-bottom: 8px; }
.showcase-item p { color: #bbb; font-size: 14px; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: #2a2a2a; margin-bottom: 14px; padding: 20px 24px; border-radius: 8px; border-left: 3px solid #ff9800; }
.faq-item h4 { color: #ff9800; margin-bottom: 10px; font-size: 17px; }
.faq-item p { color: #ccc; font-size: 14px; }

/* Testimonial */
.testimonial { background: #2a2a2a; padding: 30px; border-radius: 10px; max-width: 800px; margin: 0 auto; border-left: 4px solid #00c853; font-style: italic; color: #ddd; }

/* Footer */
footer { background: #111; padding: 45px 20px 20px; margin-top: 50px; color: #aaa; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-col h4 { color: #ff9800; margin-bottom: 14px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; }
.footer-col ul li a:hover { color: #ff9800; }
.footer-col p { font-size: 13px; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid #333; max-width: 1200px; margin: 30px auto 0; padding-top: 20px; text-align: center; font-size: 13px; color: #777; }
.footer-bottom span { color: #ff9800; font-weight: bold; }

@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  nav ul { width: 100%; justify-content: center; margin: 10px 0; }
  .auth-buttons { width: 100%; justify-content: center; }
}