/* ====================================================================
                                DEFAULT
==================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #0a0d14;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: clip;
}

.section-tag {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 800;
  color: #ffc400;
}

h1 {
  font-family: "Russo One", sans-serif;
  font-size: clamp(3.4rem, 7vw, 8rem);
  line-height: 1;
  margin: 0 0 1rem;
}

h2 {
  font-family: "Russo One", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

h2 span {
  color: #ffc400; 
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 1rem;
}

h3 span {
  font-weight: 400;
}

.lead {
  font-size: 1.08rem;
  color: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hero-actions {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
}

.content-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at top center, rgba(122, 92, 255, 0.08), transparent 28%),
    #0a0d14;
}

.dark-section {
  background:
    radial-gradient(circle at top center, rgba(213, 168, 94, 0.08), transparent 25%),
    #111725;
}

.grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  align-items: start;
}

.banner {
  min-height: 52vh;
  display: grid;
  place-items: center;
}

.banner.tall {
  min-height: 65vh;
}

.banner-content {
  text-align: center;
  padding: 3rem 0;
}

.banner-content.narrow {
  max-width: 860px;
}

.cards {
  display: grid;
  gap:  2rem;
}

.info-card{
  background: rgba(19, 25, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  padding: 1.3rem;
}

.info-card p {
  color: #ffffff;
}


/* ====================================================================
                               BUTTONS
===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.contact-btn {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #ff9100ef, #f0c37f);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #111;
  box-shadow: 0 8px 20px rgba(255, 145, 0, 0.25);
  transition:
    background-position 0.5s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-btn {
 font-size: 1rem;
}

.btn-primary:hover,
.contact-btn:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 35px rgba(255, 145, 0, 0.4);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f7fb;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 196, 0, 0.12);
  border-color: rgba(255, 196, 0, 0.6);
  box-shadow: 0 10px 25px rgba(255, 196, 0, 0.2);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.25),
    transparent 80%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}


/* ====================================================================
                         FOREGROUND IMAGES
===================================================================== */
.scroll-foreground {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  --scrollY: 0px;
  --revealX: 0px;
  --offsetX: 0px;
  top: 50%;
  bottom: auto;
  transform:
    translateX(calc(var(--offsetX) + var(--revealX)))
    translateY(calc(var(--baseY, -50%) + var(--scrollY)));
  will-change: transform;
}

.scroll-foreground .float-inner {
  height: clamp(300px, 45vw, 700px);
  width: auto;
  object-fit: cover;
  display: block;
  animation: floatLayer 6s ease-in-out infinite;
}

.foreground-img-1 {
  left: 0;
  --offsetX: clamp(10px, -4vw, -20px);
  --baseY: -50%;
}

.foreground-img-2 {
  right: 0;
  --offsetX: clamp(-100px, 5vw, -100px);
  --baseY: -65%;
}

.foreground-img-3 {
  left: 0;
  --offsetX: clamp(100px, -4vw, -20px);
  --baseY: -65%;
}

.mobile-foreground {
  display: none;
  margin: 2.5rem auto;
  width: 100%;
  text-align: center;
  position: relative;
  left: 0;
  transform: none;
}

.mobile-foreground img {
  display: block;
  margin: 0 auto;
  max-width: 260px;
  width: 100%;
  height: auto;
  animation: floatLayer 6s ease-in-out infinite;
}

.section-stage {
  position: relative;
}

/* Image Reveal */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateX(var(--revealX));
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

.reveal-left {
  --revealX: -120vw;
}

.reveal-right {
  --revealX: 120vw;
}

.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

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

/* Image Frame */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.image-frame {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  padding: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  --angle: 0deg;
  background: conic-gradient(
    from var(--angle),
    transparent 0deg,
    #ff9100,
    #fff,
    #ffc400,
    transparent 120deg
  );
  animation: spin 6s linear infinite;
  filter: blur(6px);

  padding: 2px;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.image-frame img {
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

@keyframes spin {
  to { --angle: 360deg; }
}

/* ====================================================================
                         HEADER + MENU SECTION
===================================================================== */
.container {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 76px;
  background: rgba(8, 11, 18, 0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-logo {
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.site-nav a {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffc400;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ====================================================================
                              HOME SECTION
===================================================================== */
.hero,
.banner {
  position: relative;
  overflow: hidden;
}

.parallax {
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  will-change: background-position;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 10, 16, 0.15), rgba(7, 10, 16, 0.80)),
    radial-gradient(circle at top, rgba(122, 92, 255, 0.25), transparent 35%);
  pointer-events: none;
  z-index: 1;
}

.overlay-soft {
  background:
    linear-gradient(to bottom, rgba(7, 10, 16, 0.45), rgba(7, 10, 16, 0.78)),
    radial-gradient(circle at center, rgba(213, 168, 94, 0.18), transparent 40%);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 30px 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 76px);
}

.hero-media {
  display: flex;
  justify-content: center;
  --revealX: -120vw;
}

.hero-img {
  width: clamp(300px, 50vw, 600px);
  max-width: none;
  height: auto;
  animation: floatLayer 6s ease-in-out infinite;
}

.hero-text {
  max-width: 800px;
  text-align: center;
}


/* ====================================================================
                          WHO WE ARE SECTION
===================================================================== */
.who-we-are-columns {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.who-we-are-columns p {
  margin: 0;
}


/* ====================================================================
                              NEWS SECTION
===================================================================== */
.news {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 30px 0;
}

.news-stage .banner {
  display: block;
}

.news-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
}

.news-text {
  max-width: none;
  width: 100%;
  text-align: center;
}

.news-media {
  display: flex;
  justify-content: center;
}

.news-img {
  width: clamp(300px, 35vw, 460px);
  max-width: none;
  height: auto;
  animation: floatLayer 6s ease-in-out infinite;
}

/* ====================================================================
                          BOARD GAMES SECTION
===================================================================== */
.boardgames {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 30px 0;
}

.boardgames-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
}

.boardgames-text {
  max-width: 100%;
  text-align: center;
}

.boardgames-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.boardgames-columns p {
  margin: 0;
}

:root {
  --fan-scale: clamp(0.6, 0.8vw, 1);
}

.boardgames-gamecard-container {
  position: relative;
  width: 250px;
  height: 400px;
  margin: 30px auto 160px auto;
  overflow: visible;

  transform: scale(var(--fan-scale));
  transform-origin: top center;
}

.gamecard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

.gamecard-overlay {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  max-width: none;
  z-index: 10;
}

.gamecard:nth-child(1) { animation-delay: 0s; z-index: 3; }
.gamecard:nth-child(2) { animation-delay: 0.2s; z-index: 2; }
.gamecard:nth-child(3) { animation-delay: 0.4s; z-index: 1; }

.gamecard:nth-child(1) {
  --x: -180px;
  --y: 40px;
  --rot: -15deg;
  --scale: 1.02;
}

.gamecard:nth-child(2) {
  --x: 0px;
  --y: 0px;
  --rot: 0deg;
  --scale: 1;
}

.gamecard:nth-child(3) {
  --x: 170px;
  --y: 30px;
  --rot: 15deg;
  --scale: 0.98;
}

@keyframes fanOut {
  to {
    transform: translate(
      calc(-50% + var(--x)),
      calc(-50% + var(--y))
    ) rotate(var(--rot)) scale(var(--scale));
  }
}

.gamecard.animate {
  animation: fanOut 0.6s ease forwards;
}

.gamecard.animate:nth-child(1) { animation-delay: 0s; }
.gamecard.animate:nth-child(2) { animation-delay: 0.2s; }
.gamecard.animate:nth-child(3) { animation-delay: 0.4s;}


/* ====================================================================
                            MISSION SECTION
===================================================================== */
.mission {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 30px 0;
}

.mission-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
}

.mission-media {
  display: flex;
  justify-content: center;
  --revealX: -120vw;
}

.mission-img {
  width: clamp(300px, 40vw, 520px);
  max-width: none;
  height: auto;
  animation: floatLayer 6s ease-in-out infinite;
}

.mission-text {
  max-width: 800px;
  text-align: center;
}

/* ====================================================================
                          COUNTDOWN TIMER
==================================================================== */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.time-box {
  background: rgba(255,255,255,0.10);
  padding: 20px;
  border-radius: 15px;
  width: 100px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.time-box span {
  font-size: 2.5rem;
  display: block;
  position: relative;
  will-change: transform, opacity;
}

.flip {
  animation: arcaneBurst 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  color: #ffd36b;
}

@keyframes arcaneBurst {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    text-shadow: 0 0 0 rgba(255, 211, 107, 0);
  }

  40% {
    transform: scale(1.15);
    opacity: 1;
    text-shadow:
      0 0 10px rgba(255, 211, 107, 0.9),
      0 0 20px rgba(255, 170, 50, 0.7);
  }

  70% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 211, 107, 0);
  }
}

.time-box p {
  margin-top: 10px;
  font-size: 0.8rem;
  opacity: 0.7;
}


/* ====================================================================
                          SOCIAL MEDIA
==================================================================== */
.social-float {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.8rem 0.6rem;
  background: rgba(24, 20, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.social-link {
  position: relative;
  overflow: hidden;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9100ef, #f0c37f);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #111;
  box-shadow: 0 8px 20px rgba(255, 145, 0, 0.25);
  transition:
    background-position 0.5s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-link:hover {
  border-color: rgb(168, 109, 0, 1);
  background-position: 100% 50%;
  box-shadow: 0 14px 35px rgba(255, 145, 0, 0.4);
}

.social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.25),
    transparent 80%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.social-link:hover::after {
  transform: translateX(100%);
}

.social-link svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.footer-socials-mobile {
  display: none;
}

.fa-brands, .fab {
    font-weight: 400;
    font-size: 24px;
}


/* ====================================================================
                          CONTACT SECTION
==================================================================== */
.contact-email {
  color: #ffc400;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: #ffd36b;
  text-decoration: underline;
}

.contact-form {
  background: rgba(19, 25, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.contact-form label {
  color: #c6cede;
}

.contact-grid {
  align-items: center;
}

.contact-form {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.form-row {
  width: 100%;
}

.form-description {
    color: #c6cede;
    font-size: 12px;
    font-weight: 400;
}

textarea {
    height: 140px;
    resize: none;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 14, 24, 0.9);
  color: #f5f7fb;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(213, 168, 94, 0.6);
  box-shadow: 0 0 0 3px rgba(213, 168, 94, 0.12);
}

.form-label-field {
  width: 100%;
}

.field-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #ff8080;
  min-height: 1em;
}

.form-status {
  font-size: 0.95rem;
  min-height: 1.2em;
}

.form-status.success {
  color: #9be7b1;
}

.form-status.error {
  color: #ff8080;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #ff8080;
  box-shadow: 0 0 0 3px rgba(255, 128, 128, 0.12);
}

.contact-form input.is-valid,
.contact-form textarea.is-valid {
  border-color: rgba(255, 255, 255, 0.18);
}

.input--hidden {
  display: none;
}

/* ======================= BREVO ========================= */
.sib-form h3 {
  font-size: 1.6rem;
}

.sib-form-block {
  margin-bottom: 24px;
}

.form__entry {
  margin-bottom: 0;
}

.entry__specification,
.entry__error {
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.entry__specification:empty,
.entry__error:empty {
  display: none;
}

.form__label-row {
  margin-bottom: 0;
}

.contact-form {
  gap: 0.6rem;
}

.contact-btn {
  margin-top: 20px;
}

.contact-form-box {
  position: relative;
  overflow: visible;
}

.grecaptcha-badge {
  position: absolute !important;
  bottom: 18px !important;
  right: 18px !important;

  width: 70px !important;
  overflow: hidden !important;

  transition: width 0.3s ease !important;
  z-index: 20;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}



/* ====================================================================
                          FOOTER SECTION
==================================================================== */
.footer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080b12;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #c6cede;
}


/* ====================================================================
                             RESPONSIVE
==================================================================== */
@media (max-width: 1874px) {
  .hero-content { max-width: 680px; }
}

@media (max-width: 1700px) {
  .foreground-img-1 { --offsetX: clamp(-200px, -10vw, -120px); }
  .foreground-img-2 { --offsetX: clamp(100px, 10vw, 300px); }
  .foreground-img-3 { --offsetX: clamp(-50px, -10vw, -120px); }
}

@media (max-width: 1400px) {
  .hero-content { max-width: 600px; }
  
  .social-float { display: none;}
  .footer-socials-mobile { margin: 0 0 20px 0; display: flex; justify-content: center; gap: 18px; }
  .footer-wrap { flex-direction: column; justify-content: center; text-align: center; gap: 2px; min-height: auto; padding: 30px 0; }
  .footer-wrap p { margin: 0; line-height: 1.3; }
}

@media (max-width: 1100px) {
  .hero-content { max-width: 800px; }
  .banner-content { padding: 3rem 0px; }

  .who-we-are-columns { grid-template-columns: repeat(2, 1fr); }

  .hero-inner { display: flex; flex-direction: column; }
  .hero-text { order: 1; }
  .hero-media { order: 2; margin: 1.5rem 0; }
  .hero-actions { order: 3; }

  .news-inner { display: flex; flex-direction: column; }
  .news-text { order: 1; }
  .news-media { order: 2; margin: 1.5rem 0; }
  .hero-actions { order: 3; }

  .mission-inner { display: flex; flex-direction: column; }
  .mission-text { order: 1; }
  .mission-media { order: 2; margin: 1.5rem 0; }

  .scroll-foreground { display: none; }
  .mobile-foreground { display: block; }
  .donkey-img img { max-width: 300px; }
  .turtle-img img { max-width: 300px; }
  .warrior-img img { max-width: 400px; }
}

@media (max-width: 860px) {
  .grid.two-col { grid-template-columns: 1fr; }

  .site-nav { position: absolute; top: calc(100% + 0.75rem); right: 1rem; left: 1rem; display: grid; gap: 0.25rem; padding: 0.75rem; background: rgba(8, 11, 18, 0.96); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; transform-origin: top; transform: scaleY(0.96); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: scaleY(1); }
  .site-nav a { padding: 0.85rem 0.9rem; border-radius: 10px; }
  .site-nav a:hover { background: rgba(255, 255, 255, 0.05); }
  .menu-toggle { display: block; }

  .content-section { text-align: center; }

  .contact-form-box { text-align: left; }
}


@media (max-width: 768px) {
  .foreground-img-1 { --offsetX: -25vw; }

  :root { --fan-scale: 0.7; }
  .boardgames-columns { grid-template-columns: 1fr; }
  .boardgames-gamecard-container { margin: 30px auto calc(20px * var(--fan-scale)) auto; }

  .social-float { left: 50%; top: auto; bottom: 1rem; transform: translateX(-50%); flex-direction: row; padding: 0.6rem 0.8rem; }
  .social-link { width: 42px; height: 42px; }
}


@media (max-width: 640px) {
  .hero-content { padding: 4.5rem 0; }

  .who-we-are-columns { grid-template-columns: 1fr; }
  
  .countdown { gap: 10px; }
  .time-box { width: 80px; padding: 15px; }
  .time-box span { font-size: 2rem; }

  .btn-primary, .btn-secondary { font-size: 1rem; }

  .content-section { padding: 4.5rem 0; }

  .footer-wrap { flex-direction: column; justify-content: center; text-align: center; padding: 1rem 0; }
}


@media (max-width: 500px) {
  .boardgames-gamecard-container { margin: 30px auto -40px auto; }
  .gamecard-overlay { width: 140vw; bottom: -100px; }
  .gamecard:nth-child(1) { --x: -110px; }
  .gamecard:nth-child(3) { --x: 110px; }
}


@media (max-width: 375px) {
  .countdown { gap: 10px; }
  .time-box { width: 80px; padding: 15px; }
  .time-box span { font-size: 2rem; }
  .time-box.seconds { display: none; }
  
  .gamecard-overlay { width: 140vw; bottom: -90px; }
  .gamecard:nth-child(1) { --x: -70px; }
  .gamecard:nth-child(3) { --x: 70px; }
}