/* =========================
   GLOBAL / BODY FIX (WHITE REMOVE)
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #c0c0c2;       /* <<< yahi main fix: white remove */
  color: #e8ebff;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: linear-gradient(90deg, #0b1220, #1a0f2e);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 90px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffcc, #6a5cff);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00ffcc;
}

.main-nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #0b1220, #1a0f2e);
  padding: 28px;
  transition: 0.4s ease;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 50px;
}

.mobile-menu ul li {
  margin-bottom: 22px;
}

.mobile-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #00ffcc;
  padding-left: 10px;
}

.close-btn {
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  text-align: right;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(106,92,255,0.25), transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(0,255,204,0.2), transparent 55%),
    linear-gradient(180deg, #090b18, #0d1026);
  padding: 100px 20px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/dark-matter.png");
  opacity: 0.05;
  pointer-events: none;
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content { color: #ffffff; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.hero-tag::before { content: "⚡"; }

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #b5c7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #c7cbff;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  position: relative;
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
  color: #050714;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;
  overflow: hidden;
  transition: 0.35s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateX(-100%);
}

.btn-primary:hover::after {
  transform: translateX(100%);
  transition: 0.6s;
}

.btn-primary:hover {
  box-shadow:
    0 0 0 6px rgba(106,92,255,0.15),
    0 20px 50px rgba(0,255,204,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(106,92,255,0.25);
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 40px 80px rgba(106,92,255,0.35));
  animation: float 5s ease-in-out infinite;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 50px;
  background: radial-gradient(circle, rgba(106,92,255,0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p { margin: auto auto 36px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 576px) {
  .hero { padding: 70px 15px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
}

/* =========================
   FOOTER
========================= */
.gg9-footer {
  background: linear-gradient(180deg, #080c1f, #0b102a);
  color: #e6e9ff;
  padding-top: 60px;
  font-size: 15px;
}

.gg9-footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.gg9-footer-brand img {
  max-width: 160px;
  margin-bottom: 15px;
}

.gg9-footer-brand p {
  line-height: 1.6;
  color: #cfd5ff;
}

.gg9-footer-trust h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.gg9-footer-trust ul {
  list-style: none;
  padding: 0;
}

.gg9-footer-trust ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #d3d9ff;
}

.gg9-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  text-align: center;
}

.gg9-footer-bottom p {
  margin: 6px 0;
  font-size: 14px;
  color: #bfc6ff;
}

.footer-note {
  font-size: 13px;
  color: #9aa2ff;
}

@media (max-width: 768px) {
  .gg9-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gg9-footer-brand img {
    margin: 0 auto 15px;
  }
}

/* =========================
   GAME INFO SECTION
========================= */
.game-info {
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(106,92,255,0.18), transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(0,255,204,0.15), transparent 55%),
    linear-gradient(180deg, #090b18, #0d1026);
  padding: 90px 20px;
  color: #ffffff;
}

.game-info-container {
  max-width: 1100px;
  margin: auto;
}

.game-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #ffffff, #b5c7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  margin-bottom: 50px;
}

.game-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon img {
  width: 180px;
  border-radius: 28px;
  filter: drop-shadow(0 25px 50px rgba(106,92,255,0.5));
}

.game-content h3 {
  font-size: 32px;
  margin-bottom: 18px;
}

.game-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #c7cbff;
  margin-bottom: 16px;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
  color: #050714;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: 0.35s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(106,92,255,0.15),
    0 20px 50px rgba(0,255,204,0.35);
}

.game-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 18px;
  text-align: center;
}

.detail-item span {
  display: block;
  font-size: 14px;
  color: #aab0ff;
  margin-bottom: 6px;
}

.detail-item strong {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .game-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .game-details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .game-title { font-size: 26px; }
  .game-details { grid-template-columns: 1fr; }
  .game-content h3 { font-size: 26px; }
}

/* =========================
   SLIDER SECTION
========================= */
.gg9-slider-section {
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(106,92,255,0.18), transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(0,255,204,0.15), transparent 55%),
    linear-gradient(180deg, #080a16, #0c1028);
  padding: 100px 20px;
  overflow: hidden;
}

.gg9-container {
  max-width: 1200px;
  margin: auto;
}

.gg9-slider-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.gg9-slider-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff, #b5c7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gg9-slider-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #c6ccff;
}

.gg9-splide .splide__slide {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gg9-splide .splide__slide:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 40px 90px rgba(106,92,255,0.4);
}

.gg9-splide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gg9-splide .splide__arrow {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.gg9-splide .splide__arrow svg { fill: #fff; }

.gg9-splide .splide__arrow:hover {
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
}

.gg9-splide .splide__arrow:hover svg { fill: #050714; }

.gg9-splide .splide__pagination { bottom: -40px; }

.gg9-splide .splide__pagination__page {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}

.gg9-splide .splide__pagination__page.is-active {
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .gg9-slider-header h2 { font-size: 28px; }
  .gg9-slider-header p { font-size: 15px; }
}

/* =========================
   CONTENT SECTION
========================= */
.gg9-content-section {
  background: linear-gradient(180deg, #0b0f24, #0e1433);
  padding: 90px 20px;
  color: #e8ebff;
}

/* (note: .gg9-container upar already defined; same max-width ok) */
.gg9-container {
  max-width: 1100px;
  margin: auto;
}

.gg9-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  padding: 35px;
  margin-bottom: 35px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.gg9-card h2 {
  font-size: 30px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gg9-card p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #d3d9ff;
}

.gg9-list {
  list-style: none;
  padding: 0;
}

.gg9-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.gg9-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffcc;
  font-weight: bold;
}

.gg9-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step span {
  background: linear-gradient(135deg, #6a5cff, #00ffcc);
  color: #050714;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gg9-card.highlight {
  border: 2px solid #00ffcc;
}

.gg9-disclaimer {
  margin-top: 50px;
  padding: 25px;
  border-radius: 18px;
  background: rgba(255,0,0,0.08);
  border: 1px solid rgba(255,0,0,0.25);
}

.gg9-disclaimer h3 {
  color: #ff6b6b;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .gg9-card { padding: 25px; }
  .gg9-card h2 { font-size: 24px; }
}

/* inside page link css */
html { scroll-behavior: smooth; }

/* =========================
   M7 Welcome Section
========================= */
.m7-welcome-section {
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(106,92,255,0.18), transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(0,255,204,0.15), transparent 55%),
    linear-gradient(180deg, #090b18, #0d1026);
  padding: 80px 20px;
  color: #ffffff;
}

.m7-container {
  max-width: 1200px;
  margin: auto;
}

.m7-header {
  text-align: center;
  margin-bottom: 50px;
}

.m7-header h2 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #b5c7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  position: relative;
}

.m7-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
  border-radius: 2px;
}

.m7-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.app-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6a5cff, #00ffcc);
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(106,92,255,0.35);
  border-color: rgba(0,255,204,0.5);
}

.app-logo { margin-bottom: 16px; }

.app-logo img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  filter: drop-shadow(0 10px 25px rgba(106,92,255,0.5));
  transition: transform 0.3s ease;
}

.app-card:hover .app-logo img { transform: scale(1.08); }

.app-name {
  font-size: 18px;
  font-weight: 700;
  color: #e8ebff;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #b5c7ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00ffcc, #6a5cff);
  color: #050714 !important;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(106,92,255,0.4);
}

.app-download-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 0 0 6px rgba(106,92,255,0.25),
    0 15px 40px rgba(0,255,204,0.45);
}

@media (max-width: 1024px) {
  .m7-apps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .m7-welcome-section { padding: 60px 15px; }
  .m7-header h2 { font-size: 28px; }
  .m7-apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .app-card { padding: 25px 18px; }
  .app-logo img { width: 80px; height: 80px; }
  .app-name { font-size: 17px; }
}

@media (max-width: 480px) {
  .m7-header h2 { font-size: 24px; }
  .m7-apps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 340px;
  }
  .app-card {
    padding: 28px 22px;
    margin: 0 auto;
  }
  .app-logo img { width: 85px; height: 85px; }
  .app-name { font-size: 18px; }
  .app-download-btn { padding: 13px 30px; font-size: 15px; }
}


/* inside page link css */
html {
  scroll-behavior: smooth;
}