* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #0e0b2e; color: #e6e6ff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

header { background: linear-gradient(90deg, #1a0f4e, #2d1b6b); position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.nav-wrap { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; flex-wrap: wrap; }
.logo { font-size: 28px; font-weight: 900; color: #ffd700; letter-spacing: 1px; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
nav ul { list-style: none; display: flex; gap: 22px; }
nav ul li a { color: #d8d8ff; font-weight: 500; padding: 8px 4px; transition: color 0.3s; }
nav ul li a:hover, nav ul li a.active { color: #ffd700; border-bottom: 2px solid #ffd700; }
.nav-btns { display: flex; gap: 10px; }
.btn { padding: 9px 22px; border-radius: 24px; font-weight: 700; cursor: pointer; transition: transform 0.2s; display: inline-block; }
.btn-login { background: transparent; border: 2px solid #ffd700; color: #ffd700; }
.btn-register { background: linear-gradient(45deg, #ff3366, #ff6699); color: #fff; border: none; }
.btn:hover { transform: translateY(-2px); }

.hero { position: relative; background: linear-gradient(135deg, #1f0f5e 0%, #3a1d8a 50%, #5b2bb8 100%); padding: 60px 20px; text-align: center; overflow: hidden; }
.hero h1 { font-size: 44px; color: #ffd700; margin-bottom: 18px; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); }
.hero p { font-size: 18px; max-width: 800px; margin: 0 auto 28px; color: #f0e6ff; }
.hero-cta { display: inline-block; background: linear-gradient(45deg, #ff3366, #ffaa00); padding: 14px 38px; border-radius: 30px; font-weight: 800; color: #fff; font-size: 17px; box-shadow: 0 6px 20px rgba(255,51,102,0.45); }
.hero-banner { max-width: 600px; margin: 30px auto 0; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.section { max-width: 1280px; margin: 0 auto; padding: 55px 20px; }
.section h2 { font-size: 32px; color: #ffd700; text-align: center; margin-bottom: 14px; }
.section .subtitle { text-align: center; color: #c0b8e8; margin-bottom: 38px; max-width: 760px; margin-left: auto; margin-right: auto; }

.stats-bar { background: linear-gradient(90deg, #2d1b6b, #4a2bb5); padding: 30px 20px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; min-width: 160px; }
.stat-item .num { font-size: 32px; font-weight: 900; color: #ffd700; }
.stat-item .lbl { color: #d8d8ff; font-size: 14px; margin-top: 4px; }

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.game-card { background: #1a1245; border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid #2d1f6b; }
.game-card:hover { transform: translateY(-6px); box-shadow: 0 10px 25px rgba(255,215,0,0.2); }
.game-card img { width: 100%; height: 170px; object-fit: cover; }
.game-card .info { padding: 12px; }
.game-card h3 { font-size: 15px; color: #ffd700; margin-bottom: 6px; }
.game-card p { font-size: 13px; color: #b8b0d8; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature-box { background: linear-gradient(145deg, #1a1245, #251a5e); padding: 26px; border-radius: 14px; border-left: 4px solid #ffd700; }
.feature-box h3 { color: #ffd700; margin-bottom: 12px; font-size: 19px; }
.feature-box p { color: #d8d0f0; font-size: 14.5px; }

.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.showcase img { border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.showcase .txt h3 { color: #ffd700; font-size: 24px; margin-bottom: 14px; }
.showcase .txt p { color: #d8d0f0; margin-bottom: 12px; }
@media (max-width: 768px) { .showcase { grid-template-columns: 1fr; } }

.news-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.news-card { background: #1a1245; border-radius: 12px; overflow: hidden; border: 1px solid #2d1f6b; }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-card .info { padding: 18px; }
.news-meta { display: flex; gap: 12px; font-size: 12px; color: #a8a0d0; margin-bottom: 8px; }
.news-meta span.cat { background: #ff3366; color: #fff; padding: 2px 10px; border-radius: 10px; }
.news-card h3 { color: #ffd700; font-size: 17px; margin-bottom: 10px; }
.news-card p { color: #c0b8e0; font-size: 14px; }

.faq-section { background: linear-gradient(135deg, #1a0f4e, #2d1b6b); padding: 50px 20px; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: #1f1555; padding: 22px; border-radius: 10px; margin-bottom: 14px; border-left: 4px solid #ffd700; }
.faq-item h4 { color: #ffd700; margin-bottom: 10px; font-size: 17px; }
.faq-item p { color: #d8d0f0; }
.faq-item ul { margin-top: 8px; padding-left: 22px; color: #c8c0e8; }

.testimonial { background: #1a1245; border-radius: 12px; padding: 28px; margin: 30px auto; max-width: 800px; border-left: 5px solid #ff3366; font-style: italic; color: #e0d8ff; }
.testimonial strong { color: #ffd700; font-style: normal; }

footer { background: #08051f; padding: 50px 20px 20px; color: #b0a8d0; }
.footer-wrap { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.footer-col h4 { color: #ffd700; margin-bottom: 14px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col ul li a:hover { color: #ffd700; }
.footer-col p { font-size: 13.5px; margin-bottom: 6px; }
.footer-bottom { max-width: 1280px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid #251a5e; text-align: center; font-size: 13px; color: #8880b0; }
.footer-bottom strong { color: #ff3366; }

@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .nav-wrap { flex-direction: column; gap: 12px; }
  nav ul { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .section h2 { font-size: 24px; }
}