/* Game Taco SVG logo styling */
/* Game Taco SVG logo styling (large, next to header) */
/* Game Taco SVG logo styling (large, next to header) */
.gt-bg {
  position: absolute;
  inset: 0;
  z-index: 0; /* behind panel content */
  overflow: hidden;
}
.gt-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 188, 156, 0.5); /* original GT blade color @ 50% */
  pointer-events: none;
}
.gt-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9); /* pull back slightly */
  min-width: 100%;
  min-height: 100%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.95);
}

/* ensure the panel itself can host absolutely positioned bg */
/* Game Taco panel context */
#panels .panel:nth-of-type(4) { position: relative; }

/* Main content area with background video behind */
.gt-main-wrap {
  position: relative;
  /* Move main content up */
  margin-top: -75px;
  /* bleed to panel edges to make the video truly edge-to-edge */
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
@media (max-width: 1200px) {
  .gt-main-wrap {
    /* keep slight bleed unless in phone mode */
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
/* Phone/vertical blades: ensure true edge-to-edge */
@media (max-width: 900px) {
  .gt-main-wrap {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
.gt-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  gap: 2.5rem;
  width: 100%;
  min-height: 220px;
  position: relative;
  z-index: 1; /* place above the background */
}

/* Ensure the original header container (logo + title) sits above video */
.gt-header-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  top:-40px
}
.gt-taco-logo {
  display: inline-block !important;
  max-width: 180px;
  width: 180px;
  height: 180px;
  min-width: 120px;
  min-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.13));
  transition: transform 0.2s;
  margin: 0 0 0 0;
}
.gt-taco-logo:hover {
  transform: scale(1.08) rotate(-4deg);
}
.gt-taco-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffb347;
  margin: 0;
  line-height: 1.1;
  vertical-align: top;
  text-align: center;
  display: inline-block;

}
@media (max-width: 1200px) {
  .gt-header-row {
    gap: 1.2rem;
  }
  .gt-taco-logo {
    max-width: 120px;
    width: 120px;
    height: 120px;
    min-width: 80px;
    min-height: 80px;
  }
  .gt-taco-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 900px) {
  .gt-header-row {
    flex-direction: column;
    gap: 1.2rem;
    min-height: unset;
    align-items: center;
  }
  .gt-taco-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5em;
    max-width: 180px;
    width: 180px;
    height: 180px;
    min-width: 120px;
    min-height: 120px;
  }
  .gt-taco-title {
    font-size: 2.1rem;
    text-align: center;
    padding-top: 0;
  }
}
/* Removed duplicate .gt-taco-logo and .gt-taco-title rules to prevent override issues */
/* Responsive layout for 3 or 1 columns, centered as a group */
.gt-responsive-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 2rem auto;
  position: relative;
  z-index: 1; /* above bg video */
}
/* Each column: flex-basis for 3 columns, max/min width for control */
.gt-responsive-layout > div {
  flex: 1 1 340px;
  min-width: 340px;
  max-width: 420px;
  background: rgba(0,0,0,0.28); /* translucent card over video */
  backdrop-filter: blur(2px);
  color: #fff;
  vertical-align: top;
  align-self: flex-start;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
@media (max-width: 1200px) {
  .gt-responsive-layout {
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    gap: 2rem;
  }
  .gt-responsive-layout > div {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto 2rem auto;
    text-align: center;
  }
  .gt-faceoff-img {
    max-width: 100%;
  }
  /* Single column: Faceoff first, then accomplishments, then responsibilities */
  .gt-fanduel-faceoff { order: 1; }
  .gt-accomplishments { order: 2; }
  .gt-kpis { order: 3; }
}
/* Remove all other breakpoints for .gt-responsive-layout > div below 1200px, only use the one above */
/* Lists left-aligned inside columns */
.gt-accomplishments ul,
.gt-kpis ul {
  text-align: left;
  margin: 0.4rem 0 0 0;
  padding-left: 1.2rem; /* consistent bullet indent */
  list-style: disc outside;
  display: block;
}
.gt-accomplishments ul,
.gt-responsibilities ul {
  text-align: left;
  margin: 0.4rem 0 0 0;
  padding-left: 1.2rem;
  list-style: disc outside;
  display: block;
}

/* Unify header styling for all columns */
.gt-header,
.gt-accomplishments h3,
.gt-kpis h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffe600;
  margin-bottom: 0.7rem;
  text-align: center;
}
/* KPIs column styling */
.gt-kpis {
  margin-bottom: 2rem;
  flex: 1 1 320px;
  max-width: 420px;
  text-align: left;
}
.gt-kpis h3 {
  color: #fff200;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  text-align: left;
}

/* FanDuel Faceoff image scaling and centering */
.gt-faceoff-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 0.7rem auto;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* Ensure download and buttons are centered */
.gt-faceoff-download {
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
.gt-faceoff-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* Celebratory line */
.fd-celebrate {
  color: #ffe600;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0.7rem 0 0.5rem 0;
  text-align: center;
}

/* Platform icon treatment (match Muus) */
.gt-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 10px 0;
}
.gt-platforms a { display: inline-flex; align-items: center; }
.gt-platforms img { height: 24px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }

/* CTA section at the bottom (solid color band with phone and button) */
/* Bottom image only: full-bleed, no gap at page bottom */
.gt-cta {
  background: transparent;
  padding: 0;
  margin-top: 1.2rem;
  /* extend to panel edges and negate bottom padding so the image kisses the bottom */
  position: relative;
  left: calc(-1 * var(--panel-padding));
  width: calc(100% + (var(--panel-padding) * 2));
  margin-bottom: calc(-1 * var(--panel-padding));
}
.gt-cta-inner {
  max-width: 100%;
  margin: 0;
}
.gt-cta-img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}


