* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #1a0b2e; color: #e6e0ff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background: linear-gradient(180deg, #2a1454 0%, #1a0b2e 100%); padding: 15px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #3d1f6e; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.logo { font-size: 26px; font-weight: 800; background: linear-gradient(90deg, #ff4eb5, #8a4dff, #4dc8ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 1px; }
nav ul { display: flex; list-style: none; gap: 25px; flex-wrap: wrap; }
nav a { color: #d0c4f0; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: 0.3s; font-size: 15px; }
nav a:hover, nav a.active { background: #4a2a8a; color: #fff; }
.auth-btns { display: flex; gap: 10px; }
.btn-login, .btn-register { padding: 9px 22px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; border: none; }
.btn-login { background: #3d2070; color: #fff; }
.btn-register { background: linear-gradient(90deg, #ff4eb5, #8a4dff); color: #fff; }
.btn-login:hover, .btn-register:hover { opacity: 0.85; transform: translateY(-1px); }

/* Hero */
.hero { background: linear-gradient(135deg, #3d1f6e 0%, #6a2da3 50%, #2a1454 100%); padding: 50px 0; position: relative; overflow: hidden; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 280px; }
.hero-text h1 { font-size: 42px; line-height: 1.2; margin-bottom: 18px; }
.hero-text h1 span { background: linear-gradient(90deg, #ff4eb5, #ffcc4d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { font-size: 17px; margin-bottom: 22px; color: #d8cef0; max-width: 520px; }
.hero-cta { display: inline-block; padding: 13px 32px; background: linear-gradient(90deg, #ff4eb5, #8a4dff); border-radius: 25px; color: #fff; font-weight: 700; }
.hero-img { flex: 0 0 auto; }
.hero-img img { border-radius: 12px; box-shadow: 0 12px 35px rgba(0,0,0,0.45); }

/* Payment bar */
.pay-bar { background: #251147; padding: 18px 0; border-top: 1px solid #3d1f6e; border-bottom: 1px solid #3d1f6e; }
.pay-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.pay-left { font-weight: 700; color: #fff; }
.pay-left small { display: block; color: #aa9ad0; font-weight: 400; font-size: 13px; }
.pay-methods { display: flex; gap: 22px; flex-wrap: wrap; color: #d0c4f0; font-size: 14px; }
.pay-methods span::before { content: "● "; color: #ffcc4d; }
.pay-deposit { padding: 10px 26px; background: linear-gradient(90deg, #4dc8ff, #8a4dff); border-radius: 20px; color: #fff; font-weight: 700; }

/* Featured row */
.section { padding: 45px 0; }
.section h2 { font-size: 26px; margin-bottom: 22px; color: #fff; position: relative; padding-left: 14px; }
.section h2::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 5px; background: linear-gradient(180deg, #ff4eb5, #8a4dff); border-radius: 3px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.feature-card { background: #251147; border-radius: 10px; overflow: hidden; transition: 0.3s; border: 1px solid #3d1f6e; }
.feature-card:hover { transform: translateY(-4px); border-color: #8a4dff; }
.feature-card img { width: 100%; }
.feature-card .info { padding: 12px; }
.feature-card .info h4 { font-size: 15px; color: #fff; margin-bottom: 4px; }
.feature-card .info p { font-size: 13px; color: #aa9ad0; }

/* Games grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.game-tile { background: #2a1454; border-radius: 10px; overflow: hidden; cursor: pointer; transition: 0.3s; border: 1px solid #3d1f6e; }
.game-tile:hover { transform: scale(1.04); box-shadow: 0 8px 20px rgba(138,77,255,0.35); }
.game-tile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.game-tile .label { padding: 8px; text-align: center; font-size: 12px; color: #d0c4f0; background: #1a0b2e; }

/* About block */
.about-block { background: #251147; border-radius: 12px; padding: 35px; margin-top: 20px; border: 1px solid #3d1f6e; }
.about-block h3 { color: #ffcc4d; font-size: 22px; margin-bottom: 16px; }
.about-block p { margin-bottom: 14px; color: #cfc1ef; font-size: 15px; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin: 25px 0; }
.stat-box { background: linear-gradient(135deg, #3d1f6e, #2a1454); padding: 22px; border-radius: 10px; text-align: center; border: 1px solid #4a2a8a; }
.stat-box .num { font-size: 28px; color: #ff4eb5; font-weight: 800; }
.stat-box .lbl { font-size: 13px; color: #b8a8e0; margin-top: 4px; }

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.two-col img { border-radius: 10px; }
.two-col h3 { color: #fff; margin-bottom: 12px; font-size: 20px; }
.two-col p { color: #cfc1ef; margin-bottom: 12px; font-size: 15px; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* Process */
.process-list { background: #251147; border-radius: 10px; padding: 25px; border-left: 4px solid #ff4eb5; margin-bottom: 18px; }
.process-list h4 { color: #ffcc4d; margin-bottom: 10px; font-size: 17px; }
.process-list ol { padding-left: 22px; color: #cfc1ef; }
.process-list ol li { margin-bottom: 6px; font-size: 14px; }

/* FAQ */
.faq-item { background: #251147; border-radius: 8px; padding: 18px 22px; margin-bottom: 12px; border: 1px solid #3d1f6e; }
.faq-item h4 { color: #4dc8ff; margin-bottom: 8px; font-size: 16px; }
.faq-item p { color: #cfc1ef; font-size: 14.5px; }
.faq-item ul { margin-top: 6px; padding-left: 20px; color: #cfc1ef; }

/* Review */
.review-box { background: linear-gradient(135deg, #3d1f6e, #6a2da3); padding: 22px 25px; border-radius: 10px; margin: 20px 0; font-style: italic; color: #fff5d6; border-left: 4px solid #ffcc4d; }

/* Footer */
footer { background: #0f0620; padding: 45px 0 20px; border-top: 1px solid #3d1f6e; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 { color: #ff4eb5; font-size: 15px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col li { color: #9d8cc0; font-size: 13.5px; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col a:hover { color: #ffcc4d; }
.footer-bot { text-align: center; padding-top: 20px; border-top: 1px solid #2a1454; color: #7a6a9d; font-size: 13px; }
.footer-bot strong { color: #ffcc4d; }

@media (max-width: 768px) {
  .hero-text h1 { font-size: 30px; }
  nav ul { gap: 12px; }
  nav a { padding: 6px 8px; font-size: 14px; }
  .auth-btns { width: 100%; justify-content: center; }
}