@font-face {
  font-family: 'Lato-Regular';
  src: url('../fonts/Lato-Regular.ttf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('opentype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #ffffff;
  --text-main: #F5F1E8;
  --dark: #0f1f14;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Lato-Regular';
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

/* HERO WRAP */
.gd-hero-wrap {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

/* TOP OFFER STRIP */
.gd-offer-strip {
  width: 100%;
  min-height: auto;
  background: #2b9f67;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.55rem 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AGE GATE */
.gd-age-gate-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 2rem;
}

.gd-age-gate-box {
  width: 100%;
  max-width: 40%;
  background: #18211bdb;
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.45);
}

.gd-age-gate-box h2 {
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Lato-Regular';
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.gd-age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gd-age-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'Lato-Regular';
}

.gd-age-yes {
  background: #37b772;
  color: #fff;
  font-family: 'Lato-Regular';
}

.gd-age-no {
  background: #fe9d4e;
  color: #fff;
  border: 1px solid #555;
  font-family: 'Lato-Regular';
}

.gd-age-btn:hover {
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 1rem 8%;
  text-align: center;
  font-size: 0.97rem;
  line-height: 1.95;
}

footer a {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gd-hero-wrap {
    background-image: url('../images/mbanner.png');
  }

  .gd-offer-strip {
    font-size: 1.08rem;
    padding: 0.6rem 1vw;
  }
}

@media (max-width: 600px) {
  .gd-age-gate-box {
    padding: 2rem 1.2rem;
    max-width: 95%;
  }

  .gd-age-gate-box h2 {
    font-size: 1.3rem;
  }

  .gd-age-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
  }

  .gd-age-gate-overlay {
    padding: 2rem 0.6rem;
  }

  .gd-age-gate-buttons {
    gap: 1rem;
    flex-wrap: nowrap;
  }
}