*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --container-normal: 1100px;
  --container-wide: 1200px;
  --primary-color: rgb(176, 209, 89);
  --primary-color-opacity-08: rgba(176, 209, 89, 0.9);
  --secondary-color: rgb(65, 69, 97);
  --secondary-color-opacity-07: rgba(65, 69, 97, 0.7);
  --navbar-height-desktop-px: 108px;
  --navbar-height-mobile-px: 96px;
  --glowing-color-with-opacity: rgba(53, 152, 219, 0.7);
  --glowing-color-no-opacity: rgba(53, 152, 219, 0);
  --one-wholesasles-color: #fecf09;
  --background-yellow-color: rgba(243, 236, 154, 0.3);
}
html,
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Utility classes */

.container {
  max-width: var(--container-normal);
  margin: 0 auto;
  padding: 0rem 2rem;
}

.container-wide {
  max-width: var(--container-wide);
}

.section-scroll {
  scroll-margin-top: var(--navbar-height-desktop-px);
}

.section-overflow {
  overflow-x: clip;
}

.header-divider {
  width: 4rem;
  height: 0.25rem;
  background: var(--secondary-color);
}

.hg-button {
  display: inline-block;
  font-size: 1.2rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 1.3rem 2.3rem;
  border: 1px solid var(--secondary-color);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.hg-button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.card {
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.75rem;
  background: white;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

.card i {
  margin-right: 1rem;
}

.display-contents {
  display: contents;
}

.display-none {
  display: none;
}

.display-flex {
  display: flex;
}

.input-field {
  position: relative;
}

.input-field input {
  border: none;
  outline: none;
  height: 3rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.2rem;
  padding: 1rem 0 0 1rem;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

.input-field textarea {
  border: none;
  outline: none;
  height: 200px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1.5rem 0 0 1rem;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

.input-field input::placeholder,
.input-field textarea::placeholder {
  opacity: 0;
}

.input-field label {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  pointer-events: none;
  transition: transform 200ms;
  transform-origin: left;
  color: black;
}

.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label,
.input-field textarea:focus + label,
.input-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-50%) scale(0.7);
}

.form-group {
  padding: 0.5rem;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
}

.wave-path {
  z-index: 1;
}

.no-scroll {
  overflow: hidden;
}

.error-tekst {
  color: red;
}

/* Age verification modal */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  background-color: var(--primary-color);
  z-index: 9999;
  margin: 0 auto;
  padding: 5rem;
}

.age-verification-modal__content {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding-top: 5rem;
  height: 420px;
}

.age-verification-modal__logo {
  width: 50%;
  text-align: center;
}

.age-verification-modal__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  color: var(--secondary-color);
  width: 50%;
  height: 100%;
}

.age-verification-modal__text h1 {
  font-size: 2rem;

  text-transform: uppercase;
  font-weight: 700;
}

.age-verification-modal__text select {
  margin-bottom: 2rem;
}

.age-verification-modal__text h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.age-verification-modal__text p {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.age-verification-modal__buttons {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.age-verification-modal__buttons button,
.age-verification-modal__buttons a {
  padding: 0.8rem 0.5rem;
  border-radius: 5px;
  font-size: 1.2rem;
  border: none;
  height: 48px;
}

.age-verification-modal__buttons button:hover,
.age-verification-modal__buttons a:hover {
  cursor: pointer;
  opacity: 0.8;
}

.age-verification-modal__buttons button {
  width: 100%;
  background: var(--secondary-color);
  color: white;
}

.age-verification-modal__buttons a {
  text-align: center;
  background-color: #880808;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cookie constent */
.cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483645;
  background-color: #f1f6f4;
  box-sizing: border-box;

  width: 100%;

  padding: 0px 20px 0px 20px;
}

/* Style the collapsible content. Note: hidden by default */
.content-cookie {
  padding: 0.4rem 1.1rem;
  overflow: hidden;
  flex-direction: column;
}

.collapsible-cookie:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.cookie-title {
  font-weight: bold;
  font-size: 13px;
  color: var(--secondary-color);
}

.cookie-text {
  font-weight: normal;
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 24px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.cookie-consent-btn {
  width: 164px;
  min-width: 164px;
  border-radius: 5px;
  font-size: 1rem;
  padding: 1rem 1rem;
}

/* Navbar */
.navbar {
  height: var(--navbar-height-desktop-px);
  background-color: transparent;
  padding: 1rem 0;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.5s ease-in-out;
}

.navbar.navbar-scroll {
  background-color: var(--primary-color-opacity-08);
  backdrop-filter: blur(10px);
}

.navbar a {
  color: var(--secondary-color);
}

.navbar a:hover {
  color: var(--secondary-color-opacity-07);
}

.navbar i {
  font-size: 1rem;
}

.navbar__navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__navbar-flex img {
  width: 80px;
  height: 60px;
  margin-top: 0.5rem;
}

.navbar__menu-items-list {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 1.05rem;

  font-weight: 700;
}

.navbar__menu-items-list a {
  display: block;
  font-size: 0.8rem;
}

.navbar__mobile-menu {
  display: none;
}

.navbar__mobile-menu-hamb {
  color: var(--secondary-color);
  cursor: pointer;
}

.navbar__mobile-menu-hamb i {
  font-size: 2rem;
}

.navbar__mobile-menu-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.95;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;

  max-height: 80vh; /* Ensures the menu doesn't exceed the viewport height */
  overflow-y: auto; /* Enables vertical scrolling if content overflows */
  -webkit-overflow-scrolling: touch; /* Adds smooth scrolling on iOS devices */
}

.navbar__mobile-menu-items.active {
  transform: translateX(0);
}

.navbar__mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  font-size: 1.2rem;
}

.navbar__mobile-menu-list a {
  color: white;
}

.navbar__mobile-menu-list select {
  background: white;
}

.navbar__lang-dropdown {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 0.1rem;
}

/* Hero */
.hero {
  background-color: var(--primary-color);
  padding: 7rem 2rem 0;
  position: relative;
}

.hero__container {
  display: flex;
  width: 100%;
  justify-content: space-evenly;

  padding-top: 2rem;
  padding-bottom: 8rem;
}

.hero__content {
  color: var(--secondary-color);
  padding: 3rem;
  margin-left: -270px;
}

.hero__content h1 {
  font-size: 4.3rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero__content h1 sup {
  font-size: 1rem;
}

.hero__content h1 span {
  display: block;
}

.hero__content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
  text-transform: uppercase;
}

.hero__content p span {
  padding: 0.3rem;
  border-radius: 5px;
  animation: pulse-glow 2s ease-out infinite;
}

.hero__image {
  width: 100%;
  margin-right: -370px;
  z-index: 2;
}

.hero__path.wave-path {
  fill: white;
}

.hero__see-more-button-1 {
  z-index: 2;
}

.hero__see-more-button-2 {
  display: none;
  z-index: 2;
}

/* Our paper */

.our-paper__container-1 {
  margin: 5rem auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 5rem;
}

.our-paper .our-paper__container-1 img {
  margin-left: -500px;
  max-width: 200%;
  width: 200%;
}

.our-paper__content {
  width: 100%;
  color: var(--secondary-color);
  margin-left: -300px;

  display: flex;
  flex-direction: column;
}

.our-paper__content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.our-paper__content p {
  margin-top: 2rem;
  font-size: 1.2rem;
  width: 680px;
  line-height: 1.8;
}

.our-paper__content a {
  background-color: var(--secondary-color);
  padding: 0.3rem;
  color: white;
}

.our-paper__bonus-link a {
  font-size: 1.4rem;
  color: white;
}

.our-paper__bonus-link p:last-child a {
  background: white;
}

.our-paper__bonus-link p:last-child span {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.7rem;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--glowing-color-with-opacity);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 0 0 5px var(--glowing-color-no-opacity);
  }
}

.our-paper-hemp__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 850px;
}

.our-paper-hemp__header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.our-paper-hemp__header p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.8;
}

.our-paper-hemp__divider {
  margin: 0 auto 2rem;
}

.our-paper-hemp__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.our-paper-hemp__cards .card i.green {
  color: var(--primary-color);
}

.our-paper-hemp__cards .card i.unbleached {
  color: rgb(202, 174, 152);
}

.our-paper-hemp__cards .card i.flame {
  color: #cf352e;
}

.our-paper-hemp__card.tuv-sud-logo img {
  width: 64px;
  margin-left: -15px;
  margin-right: 9px;
}

/* Pocket game */

.pocket-game {
  color: var(--secondary-color);
  position: relative;
}

.pocket-game__container {
  margin: 3rem auto;
}

.pocket-game__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 850px;
}

.pocket-game__header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.pocket-game__header p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.8;
}

.pocket-game__divider {
  margin: 0 auto 2rem;
}

.pocket-game__full-width-container {
  width: 100vw;
  display: flex;
  flex-direction: row;
  height: 500px;
}

.pocket-game__left {
  background: var(--secondary-color)
    url("/assets/images/background_plava_logo.webp") center center/cover
    no-repeat;

  width: 50%;
}

.pocket-game__right {
  background-color: var(--secondary-color);
  color: white;
  width: 50%;
  padding: 3rem;
}

.pocket-game__right h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pocket-game__right p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.pocket-game__timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
}

.pocket-game-instructions {
  width: 100vw;
  background: url("/assets/images/background_1.webp");
  padding-bottom: 5rem;
}

.pocket-game__screenshots-grid {
  margin: 1rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  padding: 3rem;
}

.pocket-game__screenshot-item.scan-qr,
.pocket-game__screenshot-item.games-screenshot {
  grid-column: span 2;
}

.pocket-game__screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.pocket-game__screenshot-item h3 {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem;
  border-radius: 5px;
}

.pocket-game__path.wave-path {
  fill: var(--background-yellow-color);
}

/* Where to buy */

.where-to-buy {
  background-color: var(--background-yellow-color);
  color: var(--secondary-color);
  position: relative;
}

.where-to-buy__container {
  margin: 0 auto;
}

.where-to-buy__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 850px;
}

.where-to-buy__header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.where-to-buy__divider {
  margin: 0 auto 2rem;
}

.where-to-buy__lists {
  padding: 2rem;
}

.where-to-buy__list:last-child {
  margin-bottom: 9rem;
}

.where-to-buy__list-header {
  background: var(--primary-color);
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  text-transform: uppercase;
}

.where-to-buy__list-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 60px;
}

.where-to-buy__list-item img {
  max-width: 100px;
  aspect-ratio: auto;
}

.buy-item-logo {
  width: 100px;
  height: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.amazon-logo {
  background-color: transparent;
}

.bong-outlet-logo {
  background-color: #042638;
  width: 80px;
  height: 54px;
  padding: 5px;
}

.smoking-cat-logo {
  background-color: #000;
  padding: 5px;
}

.one-wholesales-logo {
  background-color: var(--one-wholesasles-color);
}
.smoke-arsenal-logo {
  background-color: transparent;
}

.where-to-buy__list-item a {
  color: var(--secondary-color);
}

.where-to-buy__list-item a:hover {
  font-weight: 700;
}

.where-to-buy__path.wave-path {
  fill: white;
}

/* About */
.about {
  color: var(--secondary-color);
  position: relative;
}

.about__container {
  margin: 3rem auto;
  margin-top: 0;
}

.about__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 850px;
}

.about__header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.3rem;
}

.about__divider {
  margin: 0 auto 2rem;
}

.about__content {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1200px;
  height: 508px;
}

.about__text {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
  align-items: start;
  color: var(--secondary-color);
  background-color: white;
  justify-content: center;
}

.about__image {
  height: 100%;
  width: 80%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.about__text h2 {
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.about__text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about__text p {
  padding-bottom: 1rem;
  text-align: justify;
}

.about__law {
  color: #8b0000;
  font-weight: 700;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__container img {
  width: 120px;
}

.footer__container h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer__container a {
  margin: 0.2rem;
}

.footer__social a {
  color: var(--secondary-color);
}

/* Contact */

.contact__header {
  background-color: var(--primary-color);
  position: relative;
}

.contact__header__container {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.contact__header__content {
  color: var(--secondary-color);
  padding: 3rem;
}

.contact__header__content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact__header__content p {
  line-height: 1.8;
  font-size: 1.3rem;
}

.contact__header .contact__header-distr {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.3rem 0.5rem;
}

.contact-header__path.wave-path {
  fill: white;
}

.contact-form {
  background: url("/assets/images/background_1.webp");
}

.contact-form__container {
  padding-bottom: 8rem;
}

.contact-form__container form {
  background: white;
  width: 100%;
}

.contact-form__ime,
.contact-form__prezime,
.contact-form__email,
.contact-form__message {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0;
  border-bottom: 1px solid var(--secondary-color);
}

.contact-form textarea {
  resize: none;
}

.contact-form .hg-button {
  font-size: 1.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: 2px;
  color: white;
}

.contact-form__tekstp {
  font-size: 1rem;
  min-height: 1.1rem;
}

.contact-form__simple-captcha {
  display: flex;
  align-items: center;
  min-height: 2rem;
}
.contact-form__simple-captcha input {
  width: 79px;
  font-size: 1rem;
  margin-right: 2rem;
  color: var(--secondary-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-form__simple-captcha i {
  font-size: 1.2rem;
  color: var(--secondary-color);
  cursor: pointer;
}

.contact-form__simple-captcha label {
  font-size: 0.8rem;
  left: 0.8rem;
}

.contact-form__captcha-image {
  color: var(--secondary-color);
  font-size: 1.1rem;
  user-select: none;
  margin-right: 1.5rem;
}

/* Media queries */

@media (max-width: 1780px) {
  .hero__content {
    margin-left: -100px;
  }
  .hero__content h1 {
    font-size: 3.8rem;
  }
  .hero__content p {
    font-size: 1.5rem;
  }
  .hero__image {
    width: 70%;
    margin-right: -150px;
  }

  .our-paper__content {
    margin-left: -250px;
  }

  .our-paper .our-paper__container-1 img {
    margin-left: -280px;
    width: 100%;
  }

  .our-paper__content p {
    font-size: 1.2rem;
    width: 100%;
    line-height: 1.8;
  }

  .our-paper__content p:last-child a span {
    font-size: 1.2rem;
  }
}

@media (max-width: 1366px) {
  .hero__content {
    margin-left: -50px;
  }
  .hero__content h1 {
    font-size: 3rem;
  }
  .hero__content p {
    font-size: 1.5rem;
  }
  .hero__image {
    width: 65%;
    margin-right: -70px;
  }

  .about__content {
    width: 1170px;
    height: 530px;
  }
}

@media (max-width: 1260px) {
  .hero__content {
    margin-left: -50px;
    padding-top: 2rem;
    padding-right: 0;
  }
  .hero__content h1 {
    font-size: 3rem;
    margin-top: 0;
  }
  .hero__content p {
    font-size: 1rem;
  }

  .hero__image {
    width: 60%;
    margin-right: -50px;
  }

  .our-paper__content {
    margin-left: -220px;
  }

  .our-paper .our-paper__container-1 img {
    margin-left: -200px;
  }

  .our-paper__content h2 {
    font-size: 2.2rem;
  }

  .our-paper__content p {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .our-paper__content p:last-child a span {
    font-size: 1.1rem;
  }

  .about__content {
    width: 1010px;
    height: 508px;
  }

  .about__text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1080px) {
  .hero__container {
    padding-top: 0;
  }
  .hero__content {
    margin-left: -70px;
  }
  .hero__content h1 {
    font-size: 1.8rem;
  }
  .hero__content p {
    font-size: 1rem;
  }

  .hero__image {
    width: 70%;
    margin-right: -80px;
  }
  .our-paper__content {
    margin-left: -150px;
  }

  .our-paper .our-paper__container-1 img {
    width: 80%;
    margin-left: -140px;
  }

  .about__content {
    flex-direction: column;
    width: auto;
    height: auto;
    align-items: center;
  }

  .about__image {
    width: 100%;
  }

  .about__text {
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
    align-items: center;
  }

  .about__text h2 {
    font-size: 1.5rem;
  }

  .about__text h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .about__text p {
    font-size: 0.9rem;
    margin: 0;
  }
}

@media (max-width: 992px) {
  .kickstarter-banner {
    font-size: 1.2rem;
  }

  .our-paper-hemp__cards {
    grid-template-columns: 1fr;
  }

  .card {
    justify-content: start;
  }

  .pocket-game__right h2 {
    font-size: 1.5rem;
  }

  .pocket-game__right p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .contact__header__content h1 {
    font-size: 2.5rem;
  }

  .age-verification-modal__content {
    flex-direction: column;
    gap: 2rem;
    padding-top: 0;
    height: auto;
  }

  .age-verification-modal__text {
    width: 100%;
  }

  .age-verification-modal__text h1 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: var(--navbar-height-mobile-px);
  }

  .section-scroll {
    scroll-margin-top: var(--navbar-height-mobile-px);
  }
  .navbar__main-menu {
    display: none;
  }

  .navbar__mobile-menu {
    display: block;
  }

  .navbar__navbar-flex img {
    width: 80px;
    height: 48px;
    margin-top: 0.5rem;
    margin-left: 3rem;
  }

  .hero__container {
    flex-direction: column;
    align-items: center;

    padding-top: 2rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero__content {
    margin-left: 0;
    padding-bottom: 0;
  }
  .hero__content h1 {
    font-size: 4rem;
    text-align: center;
  }
  .hero__content p {
    font-size: 1.6rem;
    text-align: center;
  }
  .hero__image {
    width: 140%;
    margin-right: 0;
  }

  .hero__see-more-button-1 {
    display: none;
  }
  .hero__see-more-button-2 {
    display: block;
  }

  .our-paper__container-1 {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .our-paper__content {
    margin-left: 0;
    align-items: center;
  }

  .our-paper__content h2 {
    text-align: center;
  }

  .our-paper .our-paper__container-1 img {
    width: 150%;
    margin-left: 0;
  }

  .our-paper__bonus-link p {
    text-align: center;
  }

  .pocket-game__right h2 {
    font-size: 1.5rem;
  }

  .pocket-game__full-width-container {
    height: auto;
  }

  .pocket-game__left {
    display: none;
  }

  .pocket-game__right {
    width: 100%;
  }

  .pocket-game__screenshots-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .pocket-game__screenshot-item {
    align-items: center;
  }

  .pocket-game__screenshot-item h3 {
    width: 90vw;
  }

  .pocket-game__screenshot-item.scan-qr,
  .pocket-game__screenshot-item.games-screenshot {
    grid-column: span 1;
  }

  .pocket-game__screenshot-item img {
    max-width: 30%;
  }

  .pocket-game__screenshot-item:first-of-type img {
    max-width: 100%;
  }

  .where-to-buy {
    padding-bottom: 3rem;
  }

  .where-to-buy__lists {
    padding: 0;
  }

  .where-to-buy__list-header h3 {
    width: 90vw;
  }

  .where-to-buy__list-item {
    font-size: 1rem;
  }

  .footer__container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__contact h4,
  .footer__contact ul {
    text-align: center;
  }

  .footer__contact ul li:last-child {
    margin-top: 0.5rem;
  }

  .contact__header__content {
    padding: 3rem 1rem;
  }

  .contact__header__content h1 {
    font-size: 2rem;
  }

  .contact__header__content p {
    font-size: 1rem;
  }
}

@media (max-width: 623px) {
  .hero__content {
    padding: 1.5rem 0 0 0;
  }
  .hero__content h1 {
    font-size: 2.8rem;
  }
  .hero__content p {
    font-size: 1.1rem;
  }

  .where-to-buy__list-item img {
    max-width: 80px;
  }

  .where-to-buy__list-item-icon-container {
    width: 80px;
  }

  .where-to-buy__list-item {
    font-size: 0.9rem;
  }

  .contact__header__content h1 {
    font-size: 1.6rem;
  }

  .age-verification-modal {
    padding: 2rem 1rem;
  }
  .age-verification-modal__text h1 {
    font-size: 1.5rem;
  }

  .age-verification-modal__text p {
    font-size: 1rem;
  }

  .age-verification-modal__buttons {
    width: 70%;
  }

  .age-verification-modal__buttons button,
  .age-verification-modal__buttons a {
    padding: 0.6rem 0.5rem;
    font-size: 1rem;
    height: 42px;
  }
}

@media (max-width: 448px) {
  .kickstarter-banner {
    font-size: 0.9rem;
  }
  .hero__content h1 {
    font-size: 1.9rem;
  }
  .hero__content p {
    font-size: 1rem;
    width: 267px;
  }

  .our-paper__content h2 {
    font-size: 1.8rem;
  }

  .our-paper__content p {
    font-size: 1rem;
  }

  .our-paper__content p:last-child a span {
    font-size: 1.1rem;
  }

  .where-to-buy__list-item {
    gap: 0.5rem;
  }

  .where-to-buy__list-item img {
    max-width: 60px;
  }

  .where-to-buy__list-item-icon-container {
    width: 60px;
  }

  .contact__header__content h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .age-verification-modal__buttons {
    width: 80%;
  }
}

@media (max-width: 358px) {
  .kickstarter-banner {
    font-size: 0.7rem;
  }
  .hero__content h1 {
    font-size: 1.5rem;
  }
  .hero__content p {
    font-size: 0.65rem;
  }

  .our-paper__content h2 {
    font-size: 1.5rem;
  }

  .navbar__mobile-menu-list {
    gap: 1rem;
  }

  .contact__header__content p {
    font-size: 0.8rem;
  }

  .age-verification-modal__text h1 {
    font-size: 1.2rem;
  }

  .age-verification-modal__text h3 {
    font-size: 0.8rem;
  }

  .age-verification-modal__text p {
    font-size: 0.8rem;
  }

  .age-verification-modal__buttons button,
  .age-verification-modal__buttons a {
    font-size: 0.8rem;
    height: 36px;
  }

  .contact-form__captcha-image {
    font-size: 0.8rem;
  }
}
