* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #0a0e27; color: #e4e6f1; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.logo { font-size: 28px; font-weight: 900; background: linear-gradient(45deg, #ffd700, #ff6b9d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
nav ul { display: flex; list-style: none; gap: 25px; flex-wrap: wrap; }
nav ul li a { color: #c5c8de; font-weight: 600; transition: color 0.3s; padding: 8px 12px; border-radius: 6px; }
nav ul li a:hover, nav ul li a.active { color: #ffd700; background: rgba(255,215,0,0.1); }
.auth-btns { display: flex; gap: 10px; }
.btn { padding: 10px 22px; border-radius: 25px; font-weight: 700; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-login { background: transparent; border: 2px solid #ffd700; color: #ffd700; }
.btn-register { background: linear-gradient(45deg, #ff4b8d, #ff6b35); color: #fff; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,107,53,0.4); }

/* Hero */
.hero { background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255,107,157,0.15), transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,215,0,0.1), transparent 50%); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 48px; margin-bottom: 20px; background: linear-gradient(45deg, #ffd700, #ff6b9d, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; max-width: 750px; margin: 0 auto 30px; color: #c5c8de; }
.hero-banner { margin: 30px auto; max-width: 540px; }
.hero-banner img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 25px; }

/* Promo Bar */
.promo-bar { background: linear-gradient(90deg, #ff4b8d, #ff6b35); padding: 18px 0; text-align: center; color: #fff; font-weight: 700; font-size: 17px; letter-spacing: 1px; }

/* Sections */
section { padding: 60px 0; }
.section-title { text-align: center; font-size: 34px; margin-bottom: 15px; color: #ffd700; }
.section-sub { text-align: center; max-width: 700px; margin: 0 auto 40px; color: #a8acc6; }

/* Game Grid */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.game-card { background: linear-gradient(145deg, #1a1f3a, #252a4a); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(255,255,255,0.05); }
.game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(255,107,157,0.3); }
.game-card img { width: 100%; height: auto; display: block; }
.game-card .info { padding: 12px; text-align: center; }
.game-card h4 { font-size: 15px; color: #fff; margin-bottom: 5px; }
.game-card span { font-size: 12px; color: #a8acc6; }

/* Featured Two Column */
.featured-two { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.featured-card { background: linear-gradient(145deg, #1a1f3a, #2d1b4e); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,215,0,0.1); }
.featured-card img { width: 100%; height: auto; display: block; }
.featured-card .body { padding: 22px; }
.featured-card h3 { color: #ffd700; margin-bottom: 12px; font-size: 20px; }
.featured-card p { color: #c5c8de; font-size: 15px; }

/* About block */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-block img { width: 100%; max-width: 480px; height: auto; border-radius: 12px; }
.about-block h2 { color: #ffd700; font-size: 30px; margin-bottom: 18px; }
.about-block p { margin-bottom: 14px; color: #c5c8de; }

/* Process */
.process-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.process-item { background: rgba(255,255,255,0.03); padding: 25px; border-radius: 12px; border-left: 4px solid #ff6b9d; }
.process-item h3 { color: #ffd700; margin-bottom: 10px; font-size: 18px; }
.process-item p { color: #c5c8de; font-size: 14px; }

/* FAQ */
.faq-item { background: rgba(255,255,255,0.04); padding: 22px; border-radius: 10px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.06); }
.faq-item h4 { color: #ffd700; margin-bottom: 10px; font-size: 17px; }
.faq-item p { color: #c5c8de; }
.faq-item ul { margin-top: 10px; padding-left: 22px; color: #c5c8de; }

/* Testimonial */
.testimonial { background: linear-gradient(135deg, #2d1b4e, #1a1f3a); padding: 35px; border-radius: 14px; max-width: 800px; margin: 30px auto 0; border-left: 5px solid #ffd700; }
.testimonial p { font-style: italic; color: #e4e6f1; font-size: 16px; }

/* Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
.stat-box { background: rgba(255,107,157,0.08); padding: 25px; border-radius: 12px; text-align: center; }
.stat-box .num { font-size: 28px; color: #ffd700; font-weight: 800; display: block; margin-bottom: 5px; }
.stat-box .lbl { color: #c5c8de; font-size: 14px; }

/* Highlight gallery */
.highlight-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 15px; margin-top: 30px; }
.highlight-row img { width: 100%; height: auto; border-radius: 10px; display: block; }

/* Footer */
footer { background: #06091a; padding: 50px 0 20px; margin-top: 40px; border-top: 2px solid #2d1b4e; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { color: #ffd700; margin-bottom: 15px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #a8acc6; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #ffd700; }
.footer-col p { color: #a8acc6; font-size: 14px; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #1a1f3a; padding-top: 20px; text-align: center; color: #6a6f8c; font-size: 13px; }
.footer-bottom strong { color: #ff6b9d; }

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .about-block, .featured-two, .highlight-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav ul { gap: 10px; }
  nav ul li a { padding: 6px 8px; font-size: 14px; }
  .auth-btns { width: 100%; justify-content: center; }
}