/* Reset and base */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #0f111a 0%, #1a1d29 100%);
  color: #e0e6f1;
  min-height: 100vh;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: linear-gradient(90deg, #0b0c14 0%, #292c3c 100%);
  padding: 18px 0;
  color: #d1d8e7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0,0,0,0.9);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5f7ff;
  text-decoration: none;
  letter-spacing: 1.3px;
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
}
.nav a {
  color: #d1d8e7;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #6ec1ff;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #12141d 0%, #1a1d29 90%, #141820 100%);
  color: #dbe6fc;
  text-align: center;
  padding: 90px 20px 60px 20px;
  border-bottom: 4px solid #6ec1ff;
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 1.9px;
  text-shadow: 0 0 14px #6ec1ffaa;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.btn-primary {
  background: #6ec1ff;
  color: #12141d;
  padding: 20px 48px;
  border: none;
  border-radius: 32px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(110,193,255,0.75);
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #3e9eff;
  color: #fff;
}
.btn-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.hero-logo-link {
  display: inline-block;
  width: 280px;
  height: 80px;
  overflow: hidden;
}
.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #6ec1ff);
}

/* About */
.about-game {
  background: #1c2030;
  padding: 65px 0;
  margin: 0 auto 40px auto;
  border-radius: 24px;
  box-shadow: 0 0 40px #6ec1ff44;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.slot-img {
  width: 360px;
  border-radius: 28px;
  box-shadow: 0 0 45px #6ec1ff66;
  border: 4px solid #6ec1ff;
  background: #12141d;
}
.about-text {
  flex: 1;
  min-width: 300px;
  color: #cfd7f7;
}
.about-text h2 {
  font-size: 3rem;
  color: #64a9ff;
  margin-bottom: 32px;
  text-shadow: 0 0 10px #6ec1ffaa;
}
.about-text p {
  font-size: 1.35rem;
  margin-bottom: 26px;
  line-height: 1.7;
}
.about-text ul {
  color: #9ec9ff;
  padding-left: 32px;
  margin: 0;
  font-weight: 700;
}
.about-text li {
  margin-bottom: 16px;
}

/* Features */
.features {
  padding: 65px 0;
  background: linear-gradient(135deg, #0b0d18 70%, #1c2030 100%);
  margin: 0 auto 40px auto;
  border-radius: 24px;
  box-shadow: 0 0 35px #6ec1ff44;
}
.features h2 {
  text-align: center;
  color: #dbe6fc;
  margin-bottom: 52px;
  font-size: 2.9rem;
  text-shadow: 0 0 12px #6ec1ffcc;
}
.feature-list {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-item {
  flex: 1 1 280px;
  background: rgba(110, 193, 255, 0.18);
  border-radius: 28px;
  padding: 38px 30px;
  margin-bottom: 32px;
  min-width: 280px;
  max-width: 360px;
  box-shadow: 0 0 18px #6ec1ff55;
  border: 2px solid #4d93d9aa;
  text-align: center;
  color: #dbe6fc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: scale(1.08);
  box-shadow: 0 0 38px #6ec1ffbb;
}
.feature-item h3 {
  margin-bottom: 24px;
  color: #64a9ff;
  font-size: 1.6rem;
  font-weight: 800;
}
.feature-item p {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Demo slot */
.demo-slot {
  background: #12141d;
  padding: 70px 0 50px 0;
  text-align: center;
  margin: 0 auto 40px auto;
  border-radius: 24px;
  color: #7ebaff;
  box-shadow: 0 0 42px #6ec1ff44;
}
.demo-slot h2 {
  margin-bottom: 42px;
  font-size: 2.8rem;
  text-shadow: 0 0 14px #6ec1ffaa;
}
.demo-frame {
  max-width: 520px;
  margin: 0 auto 30px auto;
  background: #1c2030;
  border-radius: 28px;
  border: 3px solid #64a9ff88;
  box-shadow: 0 0 22px #64a9ff99;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.demo-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* SEO text */
.seo-text {
  padding: 50px 0 50px 0;
  background: linear-gradient(90deg, #1c2030 60%, #0b0d18 130%);
  color: #dbe6fc;
  margin-bottom: 40px;
  border-radius: 24px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.seo-text h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 0 12px #6ec1ffcc;
}
.seo-text h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 0 12px #6ec1ffcc;
}
.seo-text p {
  font-size: 1.3rem;
  margin-bottom: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 60px 0;
  background: #1a1d29;
  max-width: 940px;
  margin: 0 auto 40px auto;
  border-radius: 26px;
  box-shadow: 0 0 38px #6ec1ff44;
  color: #dbe6fc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.faq h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.6rem;
  text-shadow: 0 0 14px #6ec1ffcc;
}
.faq-item {
  margin-bottom: 30px;
  background: rgba(110, 193, 255, 0.15);
  border-radius: 14px;
  padding: 26px 30px;
  border-left: 7px solid #64a9ffaa;
  transition: background 0.3s ease;
}
.faq-item:hover {
  background: rgba(100, 169, 255, 0.45);
}
.faq-item h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.faq-item p {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #292c3c 0%, #0b0c14 100%);
  color: #dbe6fc;
  padding: 30px 0 22px 0;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 26px;
}
.footer-links li a {
  color: #dbe6fc;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #6ec1ff;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  .slot-img {
    margin: 0 auto;
  }
  .feature-list {
    flex-direction: column;
    gap: 26px;
  }
}
@media (max-width: 650px) {
  .logo {
    font-size: 1.9rem;
  }
  .about-text h2, .features h2, .faq h2, .seo-text h2 {
    font-size: 1.6rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .demo-frame iframe {
    height: 200px;
  }
}
@media (max-width: 600px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 18px;
  }
  .logo {
    font-size: 1.5rem;
    gap: 14px;
    margin-bottom: 12px;
  }
  .nav ul {
    gap: 18px;
    font-size: 1.15rem;
    flex-wrap: wrap;
  }
  .nav a {
    font-size: 1.15rem;
    padding: 5px 0;
  }
}
.container {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 600px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 56px 20px 38px 20px;
  }
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    text-align: center;
  }
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 28px;
    text-align: center;
  }
  .btn-primary {
    width: 94%;
    min-width: 0;
    font-size: 1.2rem;
    padding: 20px 0;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 600px) {
  .demo-frame {
    max-width: 100vw;
    border-radius: 18px;
    border-width: 3px;
    aspect-ratio: 16/9;
  }
  .demo-frame img {
    border-radius: 18px;
  }
  .about-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .slot-img {
    width: 96vw;
    max-width: 440px;
    border-radius: 20px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .seo-text, .about-game, .features, .demo-slot, .faq {
    padding-left: 14px;
    padding-right: 14px;
  }
  .seo-text h2, .features h2, .faq h2 {
    font-size: 1.3rem;
  }
  .seo-text p, .about-text p, .features p, .faq-item p {
    font-size: 1.15rem;
  }
}
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
  .footer {
    font-size: 1.1rem;
    padding: 24px 0 18px 0;
  }
}