/* =========================================================
  Global reset and theme variables
  ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --black: #050605;
  --black2: #090b09;
  --panel: #0d110e;
  --green: #72ef32;
  --green2: #39b91e;
  --white: #f4f6f3;
  --muted: #a7aea8;
  --line: rgba(114, 239, 50, 0.22);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================
   Navigation and shared buttons
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(4, 5, 4, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.nav.scrolled {
  background: rgba(4, 5, 4, 0.95);
}
.nav-inner {
  height: 82px;
  max-width: 1320px;
  margin: auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 42px;
}
.brand {
  width: 102px;
  align-self: stretch;
  display: flex;
}
.brand img {
  width: 94px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
}
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}
nav a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  color: #ddd;
  position: relative;
  padding: 32px 0;
}
nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: 0.25s;
}
nav a:hover,
nav a.active {
  color: var(--green);
}
nav a:hover:after,
nav a.active:after {
  transform: scaleX(1);
}
.nav-cta,
.btn {
  --stix-cut: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 28px;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - var(--stix-cut)) 0,
    100% var(--stix-cut),
    100% 100%,
    var(--stix-cut) 100%,
    0 calc(100% - var(--stix-cut))
  );
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    color 0.25s ease;
}
.nav-cta {
  background: var(--green);
  color: #050605;
  border-radius: 3px;
  padding: 12px 22px;
  white-space: nowrap;
  transition: 0.25s;
}
.nav-cta:hover,
.btn.green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(114, 239, 50, 0.22);
}
.menu {
  display: none;
  background: none;
  border: 0;
  width: 35px;
}
.menu span {
  display: block;
  height: 2px;
  background: white;
  margin: 6px 0;
}

/* =========================================================
   Loading screen
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: #050605;
  z-index: 100;
  display: grid;
  place-items: center;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader img {
  width: 130px;
  animation: pulse 1s infinite alternate;
}
.loader-line {
  position: absolute;
  bottom: 22%;
  width: 150px;
  height: 2px;
  background: #192019;
  overflow: hidden;
}
.loader-line span {
  display: block;
  height: 100%;
  background: var(--green);
  width: 40%;
  animation: load 1s infinite;
}
@keyframes load {
  to {
    transform: translateX(280%);
  }
}
@keyframes pulse {
  to {
    transform: scale(1.05);
  }
}

/* =========================================================
   Hero section
   ========================================================= */
.hero {
  min-height: 760px;
  height: 100vh;
  max-height: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 65%, rgba(50, 145, 32, 0.2), transparent 31%),
    linear-gradient(100deg, #030403 0%, #071007 46%, #020302 100%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.12) 78%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    linear-gradient(
      0deg,
      #050605 0%,
      transparent 18%,
      transparent 75%,
      rgba(0, 0, 0, 0.7) 100%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(114, 239, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 239, 50, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(55deg) scale(1.7) translateY(18%);
  opacity: 0.35;
}
.field-lines {
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(114, 239, 50, 0.15);
  border-radius: 50%;
  right: -250px;
  top: 30%;
  box-shadow:
    0 0 0 90px rgba(114, 239, 50, 0.02),
    0 0 0 180px rgba(114, 239, 50, 0.015);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb1 {
  width: 380px;
  height: 380px;
  background: rgba(71, 204, 37, 0.12);
  right: 20%;
  bottom: -160px;
}
.orb2 {
  width: 220px;
  height: 220px;
  background: rgba(114, 239, 50, 0.08);
  left: 35%;
  top: 8%;
}
.hero-stick {
  position: absolute;
  right: 12%;
  top: 16%;
  width: 480px;
  height: 620px;
  z-index: 1;
  transform: rotate(23deg);
  opacity: 0.7;
}
.stick-shaft {
  position: absolute;
  width: 22px;
  height: 520px;
  right: 125px;
  top: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #1a2c19, #a9d99c, #122011);
  box-shadow: 0 0 30px rgba(114, 239, 50, 0.12);
}
.stick-shaft:after {
  content: "";
  position: absolute;
  inset: 30px 6px;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 25px,
    rgba(114, 239, 50, 0.45) 26px 31px
  );
}
.stick-head {
  position: absolute;
  right: 104px;
  bottom: 24px;
  width: 120px;
  height: 220px;
  border-left: 22px solid #1a2a1a;
  border-bottom: 22px solid #82967f;
  border-radius: 0 0 0 80px;
  transform: rotate(-7deg);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(1320px, 100%);
  margin: auto;
  padding: 100px 34px 50px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #dce4db;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.eyebrow span {
  display: inline-block;
  width: 23px;
  height: 2px;
  background: var(--green);
}
.hero h1,
.section h2,
.contact h2,
.sponsor h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.82;
  font-size: clamp(70px, 8vw, 126px);
  text-transform: uppercase;
}
.hero h1 em {
  font-style: italic;
  color: var(--white);
}
.hero h1 strong,
.section h2 strong,
.contact h2 strong,
.sponsor h2 strong {
  color: var(--green);
}
.hero-content p {
  max-width: 500px;
  color: #b8beb9;
  line-height: 1.65;
  margin: 24px 0 27px;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  gap: 15px;
}
.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  transition: 0.25s;
}
.btn.green {
  background: var(--green) !important;
  color: #050605 !important;
}
.btn.ghost {
  position: relative;
  isolation: isolate;
  background: #080b08 !important;
  color: #fff !important;
}
.btn.ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  clip-path: polygon(
    0 0,
    calc(100% - var(--stix-cut)) 0,
    100% var(--stix-cut),
    100% 100%,
    var(--stix-cut) 100%,
    0 calc(100% - var(--stix-cut))
  );
  z-index: -2;
}
.btn.ghost::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #080b08;
  clip-path: polygon(
    0 0,
    calc(100% - var(--stix-cut)) 0,
    100% var(--stix-cut),
    100% 100%,
    var(--stix-cut) 100%,
    0 calc(100% - var(--stix-cut))
  );
  z-index: -1;
}
.btn.ghost:hover {
  border-color: var(--green);
  color: var(--green);
}
.hero-slogan {
  position: absolute;
  right: 6%;
  top: 40%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  font-family: "Barlow Condensed";
  font-style: italic;
  font-size: 44px;
  line-height: 0.85;
  font-weight: 900;
  color: rgba(114, 239, 50, 0.24);
  transform: rotate(-6deg);
  text-align: left;
}
.hero-slogan span:nth-child(2) {
  color: rgba(114, 239, 50, 0.5);
  padding-left: 20px;
}
.hero-slogan span:nth-child(3) {
  color: rgba(255, 255, 255, 0.15);
  padding-left: 8px;
}
.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 3px;
  color: #8c938d;
}
.scroll-cue i {
  width: 50px;
  height: 1px;
  background: var(--green);
  display: block;
}

/* =========================================================
   Feature cards
   ========================================================= */
.feature-wrap {
  position: relative;
  z-index: 4;
  margin-top: -5px;
  background: linear-gradient(180deg, transparent, #050605 20%);
}
.features {
  max-width: 1320px;
  margin: auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.feature {
  background: linear-gradient(
    145deg,
    rgba(15, 22, 16, 0.96),
    rgba(7, 10, 8, 0.98)
  );
  border: 1px solid rgba(114, 239, 50, 0.45);
  padding: 29px 30px 27px;
  min-height: 305px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.feature:hover {
  border-color: rgba(114, 239, 50, 0.35);
  transform: translateY(-4px);
  transition: 0.3s;
}
.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-top > span {
  font: 700 10px Inter;
  color: #546054;
}
.feature h3 {
  font: 900 italic 24px "Barlow Condensed";
  margin-top: 19px;
}
.micro {
  font-size: 9px;
  letter-spacing: 2px;
  color: #778178;
  margin-top: 3px;
}
.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  width: 55px;
  margin: 17px 0;
}
.feature ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.feature li {
  font-size: 12px;
  color: #c2c8c3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.row-mark {
  display: inline-block;
  flex: 0 0 13px;
  width: 13px;
  height: 2px;
  background: var(--green);
  position: relative;
}
.row-mark:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: 0;
  top: -1px;
  background: var(--green);
  transform: rotate(45deg);
}
.button-arrow {
  display: inline-block;
  width: 15px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) scale(0.7);
  transform-origin: center;
  color: var(--green);
  transition: 0.2s;
}
.feature p {
  color: #aeb5af;
  font-size: 12px;
  line-height: 1.7;
  margin: 8px 0 20px;
}
.text-link {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.text-link:hover .button-arrow {
  transform: translateX(5px);
}

/* =========================================================
   Training section
   ========================================================= */
.section {
  max-width: 1320px;
  margin: auto;
  padding: 120px 34px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: 70px;
  margin-top: 8px;
}
.section-head > p {
  max-width: 390px;
  color: #929b94;
  font-size: 13px;
  line-height: 1.7;
  padding-bottom: 6px;
}
.training-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 75px;
  align-items: center;
}
.hockey-visual {
  height: 500px;
  background: #070a07;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(114, 239, 50, 0.12);
}
.visual-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.visual-field {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(83, 178, 45, 0.35),
      transparent 32%
    ),
    linear-gradient(130deg, #081208, #122813 50%, #050805);
  transform: rotate(-8deg);
}
.visual-field:after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(180, 255, 160, 0.16);
  border-radius: 50%;
}
.circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(114, 239, 50, 0.18);
  border-radius: 50%;
  left: 35%;
  top: 28%;
}
.line {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  width: 900px;
  left: -80px;
}
.l1 {
  top: 35%;
}
.l2 {
  top: 50%;
  background: rgba(114, 239, 50, 0.2);
}
.l3 {
  top: 65%;
}
.ball {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d8ddd6;
  right: 22%;
  bottom: 25%;
  box-shadow: 0 15px 25px #000;
}
.ball span {
  position: absolute;
  inset: 9px;
  border: 2px dotted #7b817c;
  border-radius: 50%;
}
.visual-copy {
  position: absolute;
  left: 15%;
  bottom: 25%;
  font-family: "Barlow Condensed";
  font-style: italic;
}
.visual-copy small {
  display: block;
  color: var(--green);
  letter-spacing: 4px;
  font: 700 10px Inter;
  margin-bottom: 12px;
}
.visual-copy strong {
  font-size: 62px;
  line-height: 0.82;
}
.training-info {
  display: grid;
  gap: 30px;
}
.info-row {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 25px;
}
.info-row small {
  font-size: 9px;
  letter-spacing: 2px;
  color: #687168;
}
.info-row h4 {
  font-size: 15px;
  margin-top: 5px;
}
.info-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 2px;
  background: var(--green);
  position: relative;
}
.info-icon:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: 0;
  top: -2px;
  background: var(--green);
  transform: rotate(45deg);
}

/* =========================================================
   Performance and availability section
   ========================================================= */
.performance {
  max-width: none;
  padding-left: max(34px, calc((100% - 1252px) / 2));
  padding-right: max(34px, calc((100% - 1252px) / 2));
  position: relative;
  background: #070b07;
  overflow: hidden;
}
.performance-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(81, 200, 40, 0.17),
      transparent 33%
    ),
    linear-gradient(110deg, #070907, #091409 55%, #030403);
  opacity: 0.9;
}
.performance-layout {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}
.performance h2 {
  font: 900 italic 70px/0.88 "Barlow Condensed";
  margin: 8px 0 25px;
}
.performance h2 strong {
  color: var(--green);
}
.performance-copy > p {
  max-width: 580px;
  color: #9da69f;
  font-size: 13px;
  line-height: 1.8;
  margin: 10px 0;
}
.fitness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
  gap: 12px;
}
.fitness-grid div {
  border: 1px solid rgba(114, 239, 50, 0.12);
  padding: 20px 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fitness-grid span {
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 800;
}
.fitness-grid .button-arrow,
.text-link .button-arrow {
  width: 36px;
  height: 12px;
  border: 0;
  background: var(--green);
  margin: 0 auto 10px;
  position: relative;
  transform: none;
  clip-path: polygon(0 42%, 78% 42%, 78% 0, 100% 50%, 78% 100%, 78% 58%, 0 58%);
}
.fitness-grid .button-arrow:after,
.text-link .button-arrow:after {
  content: none;
}
.availability {
  background: rgba(5, 8, 5, 0.82);
  border: 1px solid rgba(114, 239, 50, 0.45);
  padding: 38px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}
.availability-head {
  display: flex;
  justify-content: space-between;
}
.big-num {
  font: 900 italic 12px "Barlow Condensed";
  color: rgba(114, 239, 50, 0.3);
  letter-spacing: 2px;
}
.availability h3 {
  font: 900 italic 52px/0.9 "Barlow Condensed";
  margin: 20px 0 28px;
}
.availability h3 strong {
  color: var(--green);
}
.hours {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}
.hours div {
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hours div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hours small {
  font-size: 9px;
  color: #707970;
  letter-spacing: 1px;
}
.hours strong {
  font-size: 11px;
  color: var(--green);
}
.availability p {
  font-size: 11px;
  line-height: 1.6;
  color: #838c84;
  margin-bottom: 24px;
}

/* =========================================================
   Sponsorship section
   ========================================================= */
.sponsor {
  max-width: none;
  position: relative;
  overflow: hidden;
  background: #050705;
}
.sponsor-mark {
  position: absolute;
  right: -60px;
  top: 50px;
  font: 900 italic 300px "Barlow Condensed";
  color: rgba(114, 239, 50, 0.025);
  line-height: 1;
}
.sponsor-layout {
  max-width: 1252px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 100px;
  align-items: center;
  position: relative;
}
.sponsor h2 {
  font-size: 80px;
  margin: 8px 0 24px;
}
.sponsor p {
  max-width: 600px;
  color: #939c95;
  line-height: 1.8;
  font-size: 13px;
}
.sponsor-image {
  display: block;
  width: min(100%, 600px);
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  object-fit: cover;
  border: 1px solid rgba(114, 239, 50, 0.16);
}
.commitment {
  border: 1px solid rgba(114, 239, 50, 0.2);
  padding: 35px;
  background: linear-gradient(145deg, #0d150d, #060806);
  position: relative;
}
.commitment-mark {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--green);
  transform: rotate(45deg);
  position: relative;
}
.commitment-mark:after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--green);
}
.commitment-mark {
  color: var(--green);
}
.commitment-number {
  position: absolute;
  right: 28px;
  top: 25px;
  color: #364036;
  font: 900 14px "Barlow Condensed";
}
.commitment h3 {
  font: 900 italic 43px/0.85 "Barlow Condensed";
  margin: 28px 0 17px;
}
.commitment h3 strong {
  color: var(--green);
}
.commitment p {
  font-size: 11px;
  line-height: 1.7;
}

/* =========================================================
   Pricing section
   ========================================================= */
.pricing {
  padding-top: 90px;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 850px;
}
.price-card {
  border: 1px solid rgba(114, 239, 50, 0.45);
  background: #0b0d0b;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(114, 239, 50, 0.28);
}
.price-label {
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.025);
  font: 800 12px Inter;
  letter-spacing: 1px;
}
.featured .price-label {
  color: var(--green);
  background: rgba(114, 239, 50, 0.055);
}
.price-row {
  padding: 21px 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #aeb5ae;
}
.price-row strong {
  font-size: 18px;
  color: #fff;
}
.featured .price-row strong {
  color: var(--green);
}
.price-note {
  grid-column: 1/-1;
  font-size: 10px;
  color: #727b73;
  padding: 8px;
}
.inline-mark {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  margin-right: 8px;
  vertical-align: 1px;
}
.price-note .inline-mark {
  color: var(--green);
}

/* =========================================================
   Merchandise section
   ========================================================= */
.merch-card {
  max-width: 1252px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(120deg, #0c110d, #070907);
  border: 1px solid rgba(114, 239, 50, 0.45);
  overflow: hidden;
}
.shirt-art {
  min-height: 470px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(114, 239, 50, 0.14), transparent 50%), #080b08;
  position: relative;
}
.shirt-art picture {
  display: block;
  width: 100%;
  height: 100%;
}
.merch-image {
  width: 100%;
  height: 100%;
  min-height: 475px;
  display: block;
  object-fit: cover;
}
.shirt {
  width: 240px;
  height: 300px;
  position: relative;
  filter: drop-shadow(0 35px 30px rgba(0, 0, 0, 0.7));
}
.shirt-body {
  position: absolute;
  left: 50px;
  top: 25px;
  width: 140px;
  height: 250px;
  background: linear-gradient(120deg, #111511, #020302);
  clip-path: polygon(
    0 10%,
    25% 0,
    50% 12%,
    75% 0,
    100% 10%,
    92% 28%,
    76% 20%,
    76% 100%,
    24% 100%,
    24% 20%,
    8% 28%
  );
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.shirt-body img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.shirt-sleeve {
  position: absolute;
  top: 38px;
  width: 65px;
  height: 100px;
  background: #0a0d0a;
}
.shirt-sleeve.left {
  left: 5px;
  transform: rotate(25deg);
  clip-path: polygon(30% 0, 100% 20%, 70% 100%, 0 75%);
}
.shirt-sleeve.right {
  right: 5px;
  transform: rotate(-25deg);
  clip-path: polygon(0 20%, 70% 0, 100% 75%, 30% 100%);
}
.merch-copy {
  padding: 65px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.merch-copy h2 {
  font: 900 italic 75px/0.8 "Barlow Condensed";
  margin: 5px 0 32px;
}
.merch-copy h2 strong {
  color: var(--green);
}
.merch-copy h3 {
  font: 800 13px Inter;
  letter-spacing: 1px;
}
.merch-price {
  font: 900 italic 62px "Barlow Condensed";
  color: var(--green);
  margin: 2px 0 25px;
}
.merch-list {
  display: grid;
  gap: 13px;
  margin-bottom: 30px;
}
.merch-list span {
  font-size: 11px;
  color: #a7afa8;
}
.merch-list .inline-mark {
  margin-right: 10px;
}

/* =========================================================
   Contact details and supporting cards
   ========================================================= */
.details {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 120px;
}
.detail-card {
  background: #0a0d0a;
  border: 1px solid rgba(114, 239, 50, 0.45);
  padding: 30px;
}
.detail-card h3 {
  font: 900 italic 23px "Barlow Condensed";
  margin: 18px 0 12px;
}
.detail-card p {
  font-size: 11px;
  color: #8e978f;
  line-height: 1.7;
  margin: 5px 0;
}
.detail-card strong {
  color: #d8ded8;
}

/* =========================================================
   Contact section
   ========================================================= */
.contact {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(64, 183, 35, 0.15),
      transparent 35%
    ),
    #050705;
}
.contact:before,
.contact:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(114, 239, 50, 0.08);
  border-radius: 50%;
}
.contact:before {
  width: 700px;
  height: 700px;
}
.contact:after {
  width: 1000px;
  height: 1000px;
}
.contact-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--green);
  filter: blur(180px);
  opacity: 0.08;
}
.contact-inner {
  position: relative;
  z-index: 2;
}
.contact h2 {
  font-size: 86px;
  margin: 10px 0 20px;
}
.contact-inner > p {
  color: #a4aca5;
  font-size: 14px;
  margin-bottom: 28px;
}
.btn.large {
  min-width: 190px;
  border-radius: 0 !important;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 11px 16px;
  border: 1px solid rgba(114, 239, 50, 0.22);
  background: rgba(13, 17, 14, 0.72);
  transition: 0.25s ease;
}

.contact-phone:hover {
  border-color: rgba(114, 239, 50, 0.55);
  transform: translateY(-2px);
}

.contact-mark,
.footer-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--green);
  position: relative;
}
.contact-mark:after,
.footer-mark:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 4px;
  top: 4px;
  background: var(--green);
}
.contact-phone > .contact-mark {
  color: var(--green);
}

.contact-phone .contact-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-phone small {
  color: #7f897f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.contact-phone strong {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 1px;
}

.footer-contact .footer-mark {
  color: var(--green);
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-contact span {
  color: #555d57;
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.signoff {
  font-size: 12px;
  line-height: 1.7;
  color: #9ca59e;
  margin-top: 35px;
}
.signoff strong {
  color: #fff;
  font-size: 14px;
}
.signoff span {
  color: #fff;
}
.signoff b {
  color: var(--green);
}
.contact-side {
  position: absolute;
  right: 3%;
  bottom: 5%;
  font: 900 italic 43px/0.8 "Barlow Condensed";
  color: rgba(114, 239, 50, 0.16);
  text-align: left;
  transform: rotate(-5deg);
}
.contact-side strong {
  color: rgba(114, 239, 50, 0.3);
}

/* =========================================
   FOOTER
========================================= */

footer {
    background: #030403;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 35px 34px 18px;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    gap: 18px;
}

.footer-inner img {
    width: 75px;
    height: 60px;
    object-fit: contain;
}

.footer-inner p {
    font-size: 10px;
    color: #656e67;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-inner a {
    font-size: 10px;
    color: #656e67;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.footer-inner a:hover {
    color: #72ef32;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    font-size: 10px;
    color: #656e67;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #72ef32;
}


/* =========================================
   WEBSITE CREDIT
========================================= */

.footer-credit {
    width: 100%;
    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    text-align: center;

    font-size: 9px;
    letter-spacing: 1.5px;
    color: #555d57;
}

.footer-credit span {
    color: #72ef32;
    font-weight: 700;
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.delay1 {
  transition-delay: 0.12s;
}
.delay2 {
  transition-delay: 0.24s;
}

/* =========================================================
   Responsive layouts
   ========================================================= */

@media (max-width: 600px) {
  .contact-details {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-phone,
  .contact-details .btn {
    width: 100%;
  }

  .contact-phone {
    justify-content: center;
  }
}

@media (max-width: 950px) {
  .nav-inner {
    height: 70px;
    padding: 0 20px;
  }
  .brand {
    width: 75px;
  }
  .brand img {
    width: 72px;
  }
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #060806;
    display: none;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(114, 239, 50, 0.15);
    padding: 12px 20px;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 15px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  nav a:after {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
  }
  .menu {
    display: block;
  }
  .hero-content {
    padding-left: 25px;
    padding-right: 25px;
  }
  .hero-stick {
    right: -20%;
    opacity: 0.3;
  }
  .hero-slogan {
    right: 4%;
    top: 32%;
    font-size: 32px;
  }
  .features {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .feature {
    min-height: 0;
  }
  .section {
    padding: 85px 20px;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 20px;
  }
  .section-head h2 {
    font-size: 58px;
  }
  .training-layout,
  .performance-layout,
  .sponsor-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hockey-visual {
    height: 390px;
  }
  .performance {
    padding-left: 20px;
    padding-right: 20px;
  }
  .fitness-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor {
    padding-top: 90px;
  }
  .sponsor-layout {
    padding: 0 20px;
  }
  .sponsor h2 {
    font-size: 64px;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-note {
    grid-column: auto;
  }
  .merch-card {
    grid-template-columns: 1fr;
  }
  .merch-copy {
    padding: 45px 30px;
  }
  .merch-copy h2 {
    font-size: 62px;
  }
  .details {
    grid-template-columns: 1fr;
    padding: 20px 20px 85px;
  }
  .contact {
    min-height: 580px;
  }
  .contact h2 {
    font-size: 64px;
  }
  .contact-side {
    display: none;
  }
  .footer-inner {
    padding: 20px;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: 720px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-content p {
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-slogan {
    display: none;
  }
  .scroll-cue {
    left: 20px;
  }
  .section-head h2 {
    font-size: 51px;
  }
  .performance h2 {
    font-size: 55px;
  }
  .availability {
    padding: 27px;
  }
  .availability h3 {
    font-size: 45px;
  }
  .hours div {
    flex-direction: column;
    gap: 5px;
  }
  .hockey-visual {
    height: 330px;
  }
  .visual-copy strong {
    font-size: 48px;
  }
  .merch-price {
    font-size: 54px;
  }
}

/* =========================================================
  Legal pages
  ========================================================= */
.legal-page {
  background: #050605;
}
.legal-main {
  padding: 150px 34px 100px;
  min-height: calc(100vh - 95px);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(114, 239, 50, 0.08),
      transparent 28%
    ),
    #050605;
}
.legal-wrap {
  max-width: 900px;
  margin: auto;
}
.legal-wrap h1 {
  font: 900 italic clamp(64px, 9vw, 105px)/0.82 "Barlow Condensed";
  letter-spacing: -1px;
  margin: 10px 0 28px;
}
.legal-wrap h1 strong {
  color: var(--green);
}
.legal-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #aeb6af;
  max-width: 700px;
  margin-bottom: 60px;
}
.legal-wrap section {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-wrap section h2 {
  font: 800 28px "Barlow Condensed";
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.legal-wrap section p {
  font-size: 13px;
  line-height: 1.85;
  color: #969f97;
  max-width: 800px;
}
.legal-back {
  margin-top: 28px;
}
@media (max-width: 650px) {
  .legal-main {
    padding: 125px 20px 70px;
  }
  .legal-wrap h1 {
    font-size: 64px;
  }
  .legal-intro {
    font-size: 13px;
  }
  .legal-wrap section h2 {
    font-size: 25px;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-links a {
  font-size: 9px;
  color: #656e67;
  letter-spacing: 0.5px;
}
.footer-links a:hover {
  color: var(--green);
}

/* =========================================================
   STIX ANGULAR BUTTON FINISH
   Applied after all existing site styles.
   ========================================================= */
.btn,
.btn.green,
.btn.ghost,
.btn.large {
  border-radius: 0 !important;
}

.btn.green:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.btn.ghost:hover {
  transform: translateY(-3px);
  color: var(--green) !important;
}

.btn i {
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

.nav-cta {
  border-radius: 0 !important;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}

/* =========================================================
   STIX FHA photo gallery — added without altering existing sections
   ========================================================= */
.photo-gallery {
  background: #060806;
  overflow: hidden;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.photo-card {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(114, 239, 50, 0.45);
  background: #0b0d0b;
  cursor: zoom-in;
  position: relative;
}
.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0b0d0b;
  transition: transform .5s ease, filter .5s ease;
}
.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.08);
  filter: brightness(1.06);
}
.photo-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}
@media (max-width: 1000px) {
  .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

/* Photo gallery lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 40px 20px;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  transform: scale(.96);
  transition: transform .3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background .2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lightbox-close {
  top: 20px;
  right: 20px;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 16px; }
  .lightbox-close { width: 38px; height: 38px; top: 12px; right: 12px; }
}


/* =========================================================
   Cookie consent
   ========================================================= */
.cookie-banner,
.cookie-modal {
  position: fixed;
  z-index: 9999;
  font-family: Inter, Arial, sans-serif;
}

.cookie-banner {
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(13, 17, 14, 0.98);
  border: 1px solid rgba(114, 239, 50, 0.28);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  padding: 22px;
  border-radius: 4px;
  color: var(--white);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-copy {
  max-width: 760px;
}

.cookie-banner-copy h2,
.cookie-modal h2 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 7px;
  font-size: 1.5rem;
}

.cookie-banner-copy p,
.cookie-modal p {
  color: var(--muted);
  line-height: 1.6;
  font-size: .92rem;
}

.cookie-banner-copy a,
.cookie-modal a {
  color: var(--green);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.cookie-btn {
  appearance: none;
  border: 1px solid rgba(244, 246, 243, 0.25);
  background: transparent;
  color: var(--white);
  padding: 11px 16px;
  min-height: 44px;
  font: 700 .78rem/1 Inter, Arial, sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  border-radius: 2px;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  border-color: var(--green);
  outline: none;
}

.cookie-btn-primary {
  background: var(--green);
  color: #050605;
  border-color: var(--green);
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible {
  background: #8df557;
  border-color: #8df557;
}

.cookie-settings-trigger {
  position: fixed;
  z-index: 9998;
  right: 18px;
  bottom: 18px;
  display: none;
  border: 1px solid rgba(114, 239, 50, 0.5);
  background: rgba(5, 6, 5, .96);
  color: var(--white);
  padding: 9px 12px;
  font: 700 .72rem/1 Inter, Arial, sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.cookie-settings-trigger.visible {
  display: block;
}

.cookie-modal {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .72);
}

.cookie-modal-panel {
  width: min(680px, 100%);
  max-height: min(760px, 92vh);
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid rgba(114, 239, 50, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  padding: 28px;
  color: var(--white);
}

.cookie-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.cookie-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
}

.cookie-close:hover,
.cookie-close:focus-visible {
  color: var(--green);
  outline: none;
}

.cookie-category {
  border-top: 1px solid rgba(244, 246, 243, .12);
  padding: 17px 0;
}

.cookie-category:last-of-type {
  border-bottom: 1px solid rgba(244, 246, 243, .12);
}

.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-category strong {
  display: block;
  margin-bottom: 5px;
  font-size: .98rem;
}

.cookie-category small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  font-size: .82rem;
}

.cookie-toggle {
  position: relative;
  flex: 0 0 auto;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle label {
  display: block;
  width: 48px;
  height: 26px;
  border-radius: 20px;
  background: #333936;
  cursor: pointer;
  position: relative;
  transition: background .2s ease;
}

.cookie-toggle label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .2s ease;
}

.cookie-toggle input:checked + label {
  background: var(--green2);
}

.cookie-toggle input:checked + label::after {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + label {
  opacity: .55;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cookie-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-banner-inner {
    display: block;
  }

  .cookie-banner-copy {
    margin-bottom: 15px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .cookie-btn {
    flex: 1 1 100%;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal-panel {
    padding: 20px;
  }

  .cookie-category-row {
    align-items: flex-start;
  }

  .cookie-settings-trigger {
    right: 12px;
    bottom: 12px;
  }
}


/* =========================================================
   STIX FHA COOKIE CONSENT — FINAL OVERRIDES
   ========================================================= */

.cookie-banner {
  position: fixed !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 20px !important;
  width: auto !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  z-index: 99999 !important;
  box-sizing: border-box !important;
  background: rgba(5, 6, 5, 0.98) !important;
  color: #f4f6f3 !important;
  border: 1px solid rgba(114, 239, 50, 0.45) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6) !important;
  padding: 24px 26px !important;
  border-radius: 0 !important;
  font-family: Inter, Arial, sans-serif !important;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
}

.cookie-banner-copy {
  max-width: 760px !important;
}

.cookie-banner-copy h2 {
  margin: 0 0 8px !important;
  color: #f4f6f3 !important;
  font-family: "Barlow Condensed", Arial, sans-serif !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.cookie-banner-copy p {
  margin: 0 !important;
  color: #aeb5af !important;
  font-size: 12px !important;
  line-height: 1.7 !important;
}

.cookie-banner-copy a {
  color: #72ef32 !important;
  text-decoration: none !important;
}

.cookie-banner-copy a:hover {
  text-decoration: underline !important;
}

.cookie-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.cookie-btn {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 10px 15px !important;
  border: 1px solid rgba(244, 246, 243, 0.25) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #f4f6f3 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  border-color: #72ef32 !important;
  color: #72ef32 !important;
  outline: none !important;
}

.cookie-btn-primary {
  background: #72ef32 !important;
  border-color: #72ef32 !important;
  color: #050605 !important;
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible {
  background: #8df557 !important;
  border-color: #8df557 !important;
  color: #050605 !important;
}

/* Footer Cookie Settings link */
.footer-links .cookie-settings-trigger {
  position: static !important;
  display: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #656e67 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
}

.footer-links .cookie-settings-trigger.visible {
  display: inline-block !important;
}

.footer-links .cookie-settings-trigger:hover,
.footer-links .cookie-settings-trigger:focus-visible {
  color: #72ef32 !important;
  outline: none !important;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  width: 100vw !important;
  height: 100vh !important;
  padding: 20px !important;
  background: rgba(0, 0, 0, 0.78) !important;
  font-family: Inter, Arial, sans-serif !important;
}

.cookie-modal-panel {
  box-sizing: border-box !important;
  width: min(680px, 100%) !important;
  max-height: min(760px, 92vh) !important;
  overflow-y: auto !important;
  padding: 30px !important;
  background: #0d110e !important;
  color: #f4f6f3 !important;
  border: 1px solid rgba(114, 239, 50, 0.4) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7) !important;
}

.cookie-modal-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.cookie-modal h2 {
  margin: 0 0 7px !important;
  color: #f4f6f3 !important;
  font-family: "Barlow Condensed", Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.cookie-modal p {
  margin: 0 !important;
  color: #aeb5af !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}

.cookie-close {
  appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  color: #8c938d !important;
  font-size: 28px !important;
  line-height: 1 !important;
  padding: 0 2px !important;
  cursor: pointer !important;
}

.cookie-close:hover,
.cookie-close:focus-visible {
  color: #72ef32 !important;
  outline: none !important;
}

.cookie-category {
  padding: 18px 0 !important;
  border-top: 1px solid rgba(244, 246, 243, 0.1) !important;
}

.cookie-category:last-of-type {
  border-bottom: 1px solid rgba(244, 246, 243, 0.1) !important;
}

.cookie-category-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.cookie-category strong {
  display: block !important;
  margin-bottom: 5px !important;
  color: #f4f6f3 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.cookie-category small {
  display: block !important;
  max-width: 540px !important;
  color: #8c938d !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

.cookie-toggle {
  position: relative !important;
  flex: 0 0 auto !important;
}

.cookie-toggle input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cookie-toggle label {
  display: block !important;
  position: relative !important;
  width: 48px !important;
  height: 26px !important;
  border-radius: 20px !important;
  background: #333936 !important;
  cursor: pointer !important;
}

.cookie-toggle label::after {
  content: "" !important;
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #f4f6f3 !important;
  transition: transform .2s ease !important;
}

.cookie-toggle input:checked + label {
  background: #72ef32 !important;
}

.cookie-toggle input:checked + label::after {
  transform: translateX(22px) !important;
}

.cookie-toggle input:disabled + label {
  opacity: .5 !important;
  cursor: not-allowed !important;
}

.cookie-modal-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 22px !important;
}

.cookie-note {
  margin: 14px 0 0 !important;
  color: #656e67 !important;
  font-size: 10px !important;
  line-height: 1.5 !important;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    padding: 20px !important;
  }

  .cookie-banner-inner {
    display: block !important;
  }

  .cookie-banner-copy {
    margin-bottom: 16px !important;
  }

  .cookie-actions {
    justify-content: stretch !important;
  }

  .cookie-actions .cookie-btn {
    flex: 1 1 100% !important;
  }

  .cookie-modal {
    padding: 10px !important;
  }

  .cookie-modal-panel {
    padding: 22px !important;
    max-height: 94vh !important;
  }

  .cookie-category-row {
    align-items: flex-start !important;
  }

  .footer-links .cookie-settings-trigger {
    display: none !important;
  }

  .footer-links .cookie-settings-trigger.visible {
    display: inline-block !important;
  }
}

