* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Roboto, sans-serif; background: #0a0e27; color: #e8e8f0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background: linear-gradient(90deg, #1a1f3a, #2a1a4a); padding: 12px 20px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 28px; font-weight: 900; color: #ff2d6f; letter-spacing: 1px; text-transform: uppercase; }
.logo::after { content: " 360"; color: #fff; background: #ff2d6f; padding: 2px 6px; border-radius: 4px; font-size: 14px; margin-left: 4px; }
nav ul { display: flex; list-style: none; gap: 18px; flex-wrap: wrap; }
nav a { color: #d0d0e0; font-weight: 500; font-size: 15px; padding: 6px 10px; transition: 0.3s; }
nav a:hover, nav a.active { color: #ff2d6f; }
.auth-btns { display: flex; gap: 10px; }
.btn-login, .btn-register { padding: 8px 18px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: 0.3s; }
.btn-login { background: #3a3f5a; color: #fff; }
.btn-register { background: linear-gradient(45deg, #ff2d6f, #ff5e8c); color: #fff; }
.btn-login:hover { background: #4a4f6a; }
.btn-register:hover { transform: translateY(-2px); }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #c41e3a, #8b0000); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 30px 20px; gap: 20px; flex-wrap: wrap; }
.hero-text { flex: 1; min-width: 280px; }
.hero-text h1 { font-size: 42px; color: #fff; font-weight: 900; margin-bottom: 12px; line-height: 1.1; }
.hero-text h1 span { color: #ffd700; display: block; font-size: 56px; }
.hero-text p { color: #ffeed0; font-size: 18px; margin-bottom: 20px; }
.hero-img { flex: 1; min-width: 280px; max-width: 500px; }
.hero-img img { border-radius: 12px; }
.promo-bar { background: #fff; padding: 14px; text-align: center; color: #c41e3a; font-weight: 700; font-size: 16px; }
.promo-bar span { color: #ffd700; background: #c41e3a; padding: 4px 10px; border-radius: 4px; margin: 0 6px; }

/* Section title */
.section { padding: 50px 20px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 32px; color: #fff; margin-bottom: 8px; font-weight: 800; }
.section-sub { text-align: center; color: #a0a0b8; margin-bottom: 35px; font-size: 15px; }

/* Popular games */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.game-card { background: #1a1f3a; border-radius: 10px; overflow: hidden; transition: 0.3s; border: 2px solid transparent; }
.game-card:hover { transform: translateY(-5px); border-color: #ff2d6f; }
.game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: #fff; }

/* Games offered tabs */
.tabs-section { background: #12172e; padding: 40px 20px; }
.tabs-wrapper { max-width: 1100px; margin: 0 auto; display: flex; gap: 20px; flex-wrap: wrap; }
.tabs-list { flex: 0 0 250px; }
.tab-item { background: #1a1f3a; padding: 14px 18px; margin-bottom: 6px; border-radius: 6px; color: #d0d0e0; cursor: pointer; font-weight: 500; border-left: 4px solid transparent; }
.tab-item.active { background: linear-gradient(90deg, #ff2d6f, #c41e3a); color: #fff; border-left-color: #ffd700; }
.tab-content { flex: 1; min-width: 280px; background: #1a1f3a; padding: 24px; border-radius: 8px; }
.tab-content h3 { color: #ffd700; margin-bottom: 14px; font-size: 20px; }
.tab-content p { color: #c0c0d0; margin-bottom: 12px; font-size: 15px; }

/* Support banner */
.support-banner { background: linear-gradient(90deg, #6a11cb, #2575fc); padding: 30px 20px; text-align: center; margin: 30px auto; max-width: 1160px; border-radius: 12px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.support-banner h3 { color: #fff; font-size: 24px; }
.support-banner img { max-width: 200px; }
.btn-download { background: #fff; color: #2575fc; padding: 12px 30px; border-radius: 6px; font-weight: 700; display: inline-block; margin-top: 10px; }

/* 4 Steps */
.steps-section { background: #0a0e27; padding: 50px 20px; }
.steps-title { text-align: center; color: #fff; font-size: 22px; margin-bottom: 30px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.step { text-align: center; padding: 20px; background: linear-gradient(135deg, #1a1f3a, #2a1a4a); border-radius: 10px; }
.step-num { font-size: 48px; color: #ff2d6f; font-weight: 900; margin-bottom: 10px; }
.step h4 { color: #fff; font-size: 18px; }

/* Intro text */
.intro-section { padding: 40px 20px; max-width: 1100px; margin: 0 auto; }
.intro-section h2 { color: #ff2d6f; text-align: center; font-size: 26px; margin-bottom: 20px; }
.intro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.intro-grid p { color: #b0b0c8; font-size: 14px; }

/* About columns */
.about-section { background: #12172e; padding: 50px 20px; }
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.about-col h3 { color: #ff2d6f; font-size: 22px; margin-bottom: 14px; border-bottom: 2px solid #ff2d6f; padding-bottom: 8px; }
.about-col p { color: #c0c0d0; font-size: 14px; margin-bottom: 10px; }
.about-col strong { color: #ffd700; }

/* Services */
.services-table { width: 100%; border-collapse: collapse; }
.services-table tr { border-bottom: 1px solid #2a2f4a; }
.services-table td { padding: 12px 8px; color: #c0c0d0; font-size: 14px; }
.services-table td:last-child { color: #4ade80; font-weight: 600; text-align: right; }

/* Description bottom */
.bottom-section { padding: 50px 20px; }
.bottom-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.bottom-col { background: #1a1f3a; padding: 20px; border-radius: 10px; }
.bottom-col h3 { color: #ff2d6f; margin-bottom: 12px; font-size: 20px; }
.bottom-col p { color: #b0b0c8; font-size: 14px; margin-bottom: 8px; }
.bottom-col img { border-radius: 8px; margin-top: 12px; }

/* FAQ */
.faq-section { background: #12172e; padding: 50px 20px; }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: #1a1f3a; padding: 18px 20px; margin-bottom: 12px; border-radius: 8px; border-left: 4px solid #ff2d6f; }
.faq-item h4 { color: #ffd700; font-size: 17px; margin-bottom: 8px; }
.faq-item p { color: #c0c0d0; font-size: 14px; }
.faq-item ul { margin: 8px 0 0 20px; color: #c0c0d0; font-size: 14px; }

/* Review */
.review-box { max-width: 900px; margin: 30px auto 0; background: linear-gradient(135deg, #2a1a4a, #1a1f3a); padding: 24px; border-radius: 10px; border-left: 5px solid #ffd700; }
.review-box p { color: #e0e0f0; font-style: italic; font-size: 15px; }
.review-box span { display: block; margin-top: 10px; color: #ffd700; font-weight: 600; font-style: normal; }

/* Footer */
footer { background: #050818; padding: 40px 20px 20px; }
.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: #ff2d6f; margin-bottom: 14px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #a0a0b8; font-size: 14px; }
.footer-col a:hover { color: #ff2d6f; }
.footer-col p { color: #a0a0b8; font-size: 13px; }
.footer-bottom { text-align: center; padding-top: 25px; margin-top: 25px; border-top: 1px solid #1a1f3a; color: #6a6a8a; font-size: 13px; }

@media (max-width: 768px) {
  .hero-text h1 { font-size: 30px; }
  .hero-text h1 span { font-size: 38px; }
  nav ul { gap: 10px; font-size: 13px; }
  .section-title { font-size: 24px; }
}