/* =====================
   ROOT & RESET
===================== */
:root {
  --bg-main: #070015;
  --bg-dark: #0e0225;
  --bg-card: #140032;
  --primary: #19e27d;
  --primary-dark: #12b965;
  --text-main: #ffffff;
  --text-muted: #b5b5c8;
  --border: rgba(255,255,255,0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1a0142, var(--bg-main));
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================
   GLOBAL
===================== */
.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section.dark {
  background: linear-gradient(180deg, var(--bg-dark), #050012);
}

h1, h2, h3, h4 {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

h1 span {
  color: var(--primary);
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--text-muted);
  max-width: 620px;
}

.sub {
  margin-bottom: 40px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), #5affb2);
  color: #00150a;
  box-shadow: 0 10px 30px rgba(25,226,125,0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(25,226,125,0.45);
}

.btn.outline {
  border: 1px solid var(--border);
  color: #fff;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(255,255,255,0.05);
}

.btn.large {
  font-size: 18px;
  padding: 18px 36px;
}

/* =====================
   HEADER
===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,0,20,0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo {
  height: 40px;
}

.logo.small {
  height: 34px;
}

.nav a {
  margin-left: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav a:hover {
  color: #fff;
}

/* =====================
   HERO
===================== */
.hero {
  padding: 100px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(25,226,125,0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons .btn {
  margin-right: 14px;
  margin-bottom: 10px;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.trust-list li {
  font-size: 14px;
  color: #c9ffdf;
  margin-bottom: 6px;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* =====================
   GAMES
===================== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.game-card {
  background: linear-gradient(180deg, var(--bg-card), #0a001e);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
}

.game-card:hover {
  transform: translateY(-6px);
}

.game-card img {
  width: 100%;
}

.game-card h3 {
  padding: 16px;
  text-align: center;
}

/* =====================
   FEATURES
===================== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-text li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* =====================
   CTA
===================== */
.cta {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(135deg, #1c0150, #0a001f);
}

.cta p {
  margin: 0 auto 30px;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #050012;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h4 {
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  font-size: 14px;
}

.footer .copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .nav {
    display: none;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* =====================
   FOOTER LOGO (BIGGER)
===================== */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 140px;        /* 👈 Bigger logo */
  height: auto;
  margin-bottom: 16px;
}

/* Optional: even bigger on desktop */
@media (min-width: 1024px) {
  .footer-logo {
    width: 170px;
  }
}
