@import url("../css/uicons-regular-straight.css");
:root {
  --font-family-primary: Arial, Helvetica, sans-serif;
  --color-primary: #FFBF00;
  --color-primary-light: #ffe400;
  --color-secondary: #00d9ff;
  --color-secondary-rgb: 0, 217, 255;
  --color-secondary-light-1: #000000;
  --color-secondary-dark-1: #000000;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #b7b7b7;
  --color-grey-dark-1: #222222;
  --color-grey-dark-2: #161616;
  --color-body-bg:#011657;
  --color-body-bg-dark:#000c32;
  --shadow-dark: .4rem .4rem 1rem rgba(0, 0, 0, .06);
  --text-shadow: .5rem 1rem 2rem rgba($color: var(--color-black), $alpha: .2) ;
  --line: 1px solid var(--color-grey-light-2);
  --color-black: #000;
  --color-white: #fff;
  --color-green: green;
  --heading-1: 4rem;
  --heading-2: 3.6rem;
  --heading-3: 2.8rem;
  --heading-4: 2.4rem;
  --heading-5: 2.2rem;
  --body-1: 2rem;
  --body-2: 1.8rem;
  --body-3: 1.6rem;
  --body-4: 1.4rem;
  --body-5: 1.2rem;
  --body-6: 1.0rem;
  --body-7: .8rem;
  --body-8: .6rem;
  --body-9: .4rem;
}

@keyframes animationName {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  50% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
body {
  box-sizing: border-box;
  background-color: var(--color-body-bg);
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

body {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: var(--color-white);
}
body a:link,
body a:active,
body a:visited {
  color: var(--color-primary);
}
body a:hover {
  color: var(--color-primary-light);
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.heading-4, .heading-3, .heading-2, .heading-1 {
  font-family: var(--font-family-primary);
  font-weight: 400;
}

.heading-1 {
  font-size: 4.5rem;
  line-height: 1;
}

.heading-2 {
  font-size: 4rem;
  line-height: 1;
  font-style: italic;
}

.heading-3 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.heading-4 {
  font-size: 1.8rem;
  line-height: 1.8rem;
}

.age-gate {
  width: min(100% - 3.2rem, 101.4rem);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  background-color: var(--color-body-bg-dark);
  box-shadow: var(--shadow-dark);
}

.age-gate__header {
  padding: 2.4rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.age-gate__header h1 {
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
}
.age-gate__header p {
  margin-top: 0.8rem;
  color: #ff5555;
  font-size: 1.4rem;
  font-weight: 700;
}

.age-gate__panel {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.6rem, 3vw, 3.2rem);
  padding: clamp(2rem, 4vw, 4rem);
}

.age-gate__content {
  flex: 1 1 clamp(32rem, 50vw, 36rem);
  min-width: 0;
  width: min(100%, 56rem);
  text-align: center;
}

.age-gate__image-link {
  display: block;
  flex: 0 1 275px;
  width: min(100%, 275px);
  overflow: hidden;
  background: var(--color-black);
}
.age-gate__image-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}
.age-gate__image-link:hover img, .age-gate__image-link:focus-visible img {
  transform: scale(1.03);
}

.age-gate__content h2 {
  margin: 0.8rem 0 1.2rem;
  color: var(--color-white);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
}

.age-gate__intro {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--color-grey-light-2);
  font-size: 1rem;
  line-height: 1.5;
}

.age-gate__terms {
  margin: 0.8rem 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-grey-light-2);
  font-size: var(--body-5);
  line-height: 1.45;
  text-align: left;
}
.age-gate__terms summary {
  padding: 1.2rem 1.4rem;
  color: var(--color-primary);
  font-size: var(--body-4);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.age-gate__terms div {
  max-height: 18rem;
  padding: 0 1.4rem 1.4rem;
  overflow-y: auto;
}
.age-gate__terms p + p {
  margin-top: 1rem;
}

.age-gate__actions {
  display: grid;
  gap: 1rem;
}

.age-gate__agreement {
  color: var(--color-grey-light-2);
  font-size: 1.4rem;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 4.8rem;
  padding: 1.2rem 1.6rem;
  border: 1px solid currentColor;
  font-size: var(--body-3);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.button--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #1a1600 !important;
  font-size: 2.4rem;
}
.button--primary:hover, .button--primary:focus-visible {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: #1a1600 !important;
}
.button--secondary {
  background: transparent;
  border-color: transparent;
  color: var(--color-grey-light-2) !important;
  font-size: 1.4rem;
}
.button--secondary:hover, .button--secondary:focus-visible {
  color: var(--color-white) !important;
  background: transparent;
  border-color: transparent;
}

.site-footer {
  padding: 2.4rem 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.8rem;
  margin-bottom: 2.4rem;
}
.site-footer__nav a {
  font-size: var(--body-3);
  font-weight: 700;
}

.site-footer__compliance {
  max-width: 76rem;
  margin: 0 auto;
  color: var(--color-grey-light-2);
  font-size: var(--body-6);
  line-height: 1.45;
}
.site-footer__compliance a {
  display: inline-block;
  margin-bottom: 1rem;
}
.site-footer__compliance p + p {
  margin-top: 0.4rem;
}

@media only screen and (max-width: 56.25em) {
  .age-gate__panel {
    flex-wrap: wrap;
    justify-content: center;
  }
  .age-gate__content {
    flex: 1 1 100%;
    order: -1;
  }
  .age-gate__image-link {
    flex-basis: 275px;
  }
}
@media only screen and (max-width: 37.5em) {
  .age-gate {
    width: 100%;
  }
  .age-gate__panel {
    padding: 2rem;
  }
  .age-gate__image-link {
    flex: 1 1 calc((100% - 1.6rem) / 2);
    width: calc((100% - 1.6rem) / 2);
    margin: 0 auto;
  }
  .age-gate__header {
    padding-top: 2rem;
  }
  .site-footer__nav {
    gap: 1.2rem;
    width: 100%;
  }
  .site-footer__nav a {
    flex: 1 1 calc((100% - 1.2rem) / 2);
  }
}
