* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 28px;
  display: block;
}

/* NAV — CENTERED IN PAGE */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;        /* THIS centers nav properly */
}

.nav a {
  text-decoration: none;
}

.nav-item {
  color: #aaa;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-item i {
  font-size: 11px;
  margin-left: 6px;
}

.nav-item:hover {
  color: #ffffff;
}

/* ACTIONS — LOCKED RIGHT */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* Billing */
.btn-text {
  font-size: 15px;
  font-weight: 500;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-text:hover {
  color: #ffffff;
}

/* Panel — GREEN BUTTON, WHITE TEXT */
.btn-panel {
  background: #01D44A;
  color: #ffffff;       /* WHITE TEXT */
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-panel:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

/* MOBILE */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 160px 40px 100px;
  text-align: center;
  background: #000;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("assets/background.png") center / cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: rgba(1,212,74,0.15);
  color: #01D44A;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  display: inline-block;
}

.hero h1 {
  font-size: 54px;
  margin-bottom: 16px;
}

.hero p {
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 26px;
}

.hero-cta {
  background: #01D44A;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
}

/* ================= GAME STRIP ================= */
.game-strip {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.game-card {
  width: 260px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0.6;
}

.game-card.center {
  transform: scale(1.1);
  opacity: 1;
}

.game-card img {
  width: 100%;
}

/* ================= FEATURES ================= */
.features {
  padding: 120px 40px;
  max-width: 1200px;
  margin: auto;
}

.features h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.features span {
  color: #01D44A;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 28px;
}

.feature-card.featured {
  background: rgba(1,212,74,0.18);
}

/* ================= LOCATIONS ================= */
.locations {
  padding: 140px 40px;
  text-align: center;
}

.world-map {
  max-width: 900px;
  width: 100%;
  margin-top: 40px;
}

/* ================= PANEL ================= */
.panel-showcase {
  padding: 140px 40px;
}

.panel-showcase h2,
.panel-showcase p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.panel-ui {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
}

.panel-sidebar {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 20px;
}

.panel-item {
  padding: 14px;
  border-radius: 12px;
  color: #aaa;
}

.panel-item.active {
  background: rgba(1,212,74,0.25);
  color: #01D44A;
}

.panel-image {
  width: 100%;
  border-radius: 18px;
}

/* ================= SECURITY CTA ================= */
.security-cta {
  padding: 140px 40px;
}

.security-inner {
  max-width: 1200px;
  margin: auto;
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.security-badge {
  background: rgba(1,212,74,0.15);
  color: #01D44A;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.security-left h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.security-left p {
  color: #bbb;
  margin-bottom: 26px;
  max-width: 420px;
}

.security-btn {
  background: #01d44a;
  color: #FFF;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
}

.security-graphic {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(1,212,74,0.35), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.security-graphic .fa-shield {
  font-size: 200px;
  color: #01D44A;
}

.shield-check {
  position: absolute;
}

.shield-check i {
  color: #FFF;
  font-size: 56px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0b0d0f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 60px 30px;
  color: #b7b7b7;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 80px;
  max-width: 1400px;
  margin: auto;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
}

.footer-payments {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-payments i {
  font-size: 26px;
  color: #9a9a9a;
}

/* ================= MOBILE MENU ================= */
body.menu-open {
  overflow: hidden;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #0b0d0f;
  padding: 24px;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  pointer-events: none; /* ðŸ”‘ IMPORTANT */
}

.mobile-menu.open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.mobile-actions .btn-text {
  color: #ffffff;
}

.mobile-actions .btn-panel {
  color: #000;
  width: 100%;
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 900px) {

  .nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .game-strip {
    flex-wrap: wrap;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .panel-ui {
    grid-template-columns: 1fr;
  }

  .panel-sidebar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
  }

  /* Security shield ABOVE text on mobile */
  .security-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .security-right {
    order: -1;
    margin-bottom: 24px;
  }

  .security-graphic {
    margin: 0 auto;
  }
}

/* ================= FOOTER FIX (CENTERED BOTTOM BAR) ================= */

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #9a9a9a;
  font-size: 13px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #22c55e;
}

/* Bottom bar: centered under columns */
.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-bottom-inner p {
  font-size: 13px;
  color: #7f7f7f;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: #9a9a9a;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #22c55e;
}

@media (max-width: 1100px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}
