/* CORE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Michroma';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/Michroma-regular.ttf') format('truetype');
}
/* Make Michroma the site-wide font and strongly prefer it over other imports */
html, body, button, input, select, textarea { 
  font-family: 'Michroma', sans-serif !important;
}

body {
  background: #f5f8fa;
  color: #0c1a33;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #0f1c3e;
}

/* Utility to prevent specific text from wrapping (use for referral codes, SKUs, etc.) */
.no-wrap {
  white-space: nowrap;
  overflow-wrap: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  display: inline-block;
}

.nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* Header / top-bar logo sizing when using the logo anchor */
header .site-logo {
  font-family: 'Michroma', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
}

/* Audio toggle button in header */
header .audio-toggle {
  margin-left: 0.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .audio-toggle:focus {
  outline: 2px solid rgba(255,255,255,0.15);
  border-radius: 0.25rem;
}

.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin-left: 1.5rem;
}

.nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

/* HERO SECTION */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #0f1c3e 0%, #3b5bbf 100%);
  color: #ffffff;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #ffffff;
  color: #0f1c3e;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.4rem;
}

/* SECTIONS */
.section-features, .section-promo, .section-play {
  padding: 3rem 2rem;
  text-align: center;
}

.section-features h2,
.section-promo h2,
.section-play h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #0f1c3e;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.feature-card {
  width: 280px;
  background: #fff;
  border-radius: 0.6rem;
  padding: 1rem;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 100%;
  border-radius: 0.4rem;
  margin-bottom: 0.75rem;
}

/* PROMO BUTTON */
.btn-secondary {
  background: #3b5bbf;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* RECOMMENDED PLAY GRID */
.play-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.play-card {
  width: 180px;
  text-align: center;
}

.play-card img {
  width: 100%;
  border-radius: 0.4rem;
  margin-bottom: 0.5rem;
}

/* FOOTER */
.footer {
  background: #0f1c3e;
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}
