.age-verify {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  width: 100%;
  height: 100%;
}

.age-verify__modal {
  background: linear-gradient(180deg, rgba(76, 29, 149, 0.9), rgba(46, 16, 101, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.4), 0 0 100px rgba(168, 85, 247, 0.2);
  animation: fadeIn 0.4s ease forwards;
}

.age-verify__title {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #fff;
}

.age-verify__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.age-verify__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.age-verify__btn {
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-verify__btn--primary {
  background: linear-gradient(90deg, #ec4899, #a855f7);
  border: none;
  color: #fff;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

.age-verify__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.8);
}

.age-verify__btn--secondary {
  background: transparent;
  border: 2px solid rgba(245, 158, 11, 0.7);
  color: #fff;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.age-verify__btn--secondary:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .age-verify__modal {
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .age-verify__title {
    font-size: 1.6rem;
  }

  .age-verify__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .age-verify__btn {
    width: 100%;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home__block-container {
  background-color: teal;
}

.features {
  padding: 4rem 2rem;
  max-width: 1050px;
  margin: 0 auto;
  font-family: "Righteous", sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}

.features__container {
  position: relative;
  display: flex;
  align-items: center;
}

.features__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  scroll-behavior: smooth;
}

.scroll-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 2rem;
  width: 50px;
  height: 50px;
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: background 0.3s ease;
  backdrop-filter: blur(6px);
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.scroll-btn--left {
  left: -25px;
}

.scroll-btn--right {
  right: -20px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 45vh;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card__icon-img {
  max-height: 120px;
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #ff00ff) drop-shadow(0 0 24px #ff00ff);
  transition: filter 0.3s ease;
}

.card__icon-img:hover {
  filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #ff00ff) drop-shadow(0 0 40px #ff00ff);
}

.card__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: "Anton", sans-serif;
}

.card__subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__content p {
  flex: 1;
  font-family: "Montserrat", sans-serif;
}

.card__content button {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #f56d0b;
  font-family: "Anton", sans-serif;
  color: #fff;
  max-width: 80%;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  position: relative;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  text-transform: uppercase;
}

/* Card-specific icon color variations */

.features__wrapper > .card:nth-of-type(2) .card__icon-img {
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #f59e0b) drop-shadow(0 0 24px #f59e0b);
}

.features__wrapper > .card:nth-of-type(2) .card__icon-img:hover {
  filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #f59e0b) drop-shadow(0 0 40px #f59e0b);
}

.features__wrapper > .card:nth-of-type(3) .card__icon-img {
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #3b82f6) drop-shadow(0 0 24px #3b82f6);
}

.features__wrapper > .card:nth-of-type(3) .card__icon-img:hover {
  filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #3b82f6) drop-shadow(0 0 40px #3b82f6);
}

@media (max-width: 768px) {
  .features {
    padding: 2rem 2rem;
  }

  .features__wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0;
  }

  .features__wrapper .card {
    flex: 0 0 76%;
    min-height: 50vh;
    scroll-snap-align: center;
  }

  .features__wrapper .card__content button {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .scroll-btn {
    display: flex;
  }
}

.safety-banner {
  display: flex;
  justify-content: center;
  top: 4em;
  position: relative;
  margin: 0 auto;
  width: 1050px;
  margin-bottom: 200px;
  font-family: "Righteous", sans-serif;
  font-family: "Anton", sans-serif;
}

.safety-banner__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  gap: 1rem;
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  overflow: hidden;
}

.safety-banner__wrapper:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #f59e0b, #ff00ff, #3b82f6);
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.safety-banner__icon {
  height: 70px;
  width: 70px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #f59e0b) drop-shadow(0 0 24px #f59e0b);
  transition: filter 0.3s ease;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.safety-banner__text {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #f59e0b) drop-shadow(0 0 24px #f59e0b);
  }

  50% {
    filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #f59e0b) drop-shadow(0 0 40px #f59e0b);
  }
}

@media (max-width: 768px) {
  .safety-banner {
    top: 2em;
    margin-bottom: 100px;
    width: 80vw;
  }

  .safety-banner__wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .safety-banner__icon {
    height: 50px;
    width: 50px;
    animation: pulseGlow 3s ease-in-out infinite;
  }

  .safety-banner__text {
    font-size: 1.8rem;
    line-height: 1.2;
    white-space: normal;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 4rem;
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  position: relative;
}

.hero__content {
  max-width: 520px;
  z-index: 2;
}

.hero__title {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 800px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
}

.hero__buttons a {
  text-decoration: none;
}

.hero__buttons .btn {
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}

.hero__buttons .btn--primary {
  background: linear-gradient(90deg, #ec4899, #a855f7);
  border: none;
  color: #fff;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

.hero__buttons .btn--secondary {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #f56d0b;
  color: #fff;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.hero__buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero__image {
  position: relative;
}

.hero__image img {
  max-width: 420px;
  border-radius: 50%;
  border: 6px solid rgba(236, 72, 153, 0.4);
  border-top-color: rgba(236, 72, 153, 0.2);
  border-right-color: rgba(236, 72, 153, 0.2);
  background: radial-gradient(circle, rgb(168, 85, 247), transparent 80%);
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.6), 0 0 80px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
    padding: 10rem 2rem 4rem 2rem;
  }

  .hero__content {
    flex: 1;
    width: 90%;
  }

  .hero__image {
    position: absolute;
    right: -50vw;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    width: 100vw;
  }

  .hero__image img {
    max-width: 100%;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__buttons .btn--primary {
    width: 100%;
    text-align: center;
    padding: 1rem 0rem;
  }

  .hero__buttons .btn--secondary {
    display: none;
  }
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 4rem;
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  gap: 4rem;
  transition: all 0.3s ease;
}

.content__content {
  max-width: 520px;
  z-index: 2;
}

.content__title {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.content__body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.content__image {
  position: relative;
}

.content__image img {
  max-width: 420px;
  border-radius: 50%;
  border: 4px solid rgba(236, 72, 153, 0.4);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 80%);
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.6), 0 0 80px rgba(168, 85, 247, 0.4);
}

.content--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.content--reverse .content__content {
  order: 2;
}

.content--reverse .content__image {
  order: 1;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: flex-start;
    padding: 10rem 2rem 4rem 2rem;
    text-align: left;
  }

  .content--reverse {
    flex-direction: column;
    text-align: left;
  }

  .content__image {
    position: absolute;
    right: -50vw;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    width: 100vw;
  }

  .content__image img {
    max-width: 100%;
  }

  .content__title {
    font-size: 2rem;
  }
}

.tip-block {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  margin-bottom: 25px;
}

.tip-block:last-of-type {
  margin-bottom: 60px;
}

.tip-block__content {
  text-align: left;
}

.tip-block__title {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tip-block__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: rgba(221, 214, 254, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.tip-block__body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 240, 255, 0.9);
}

@media (max-width: 768px) {
  .tip-block {
    padding: 1rem 2rem;
  }

  .tip-block__content {
    max-width: 100%;
  }

  .tip-block__title {
    font-size: 1.8rem;
  }

  .tip-block__subtitle {
    font-size: 1rem;
  }
}

.disclaimer {
  display: flex;
  justify-content: center;
  padding: 6rem 2rem;
  color: #fff;
  max-width: 1050px;
  margin: 0 auto;
}

.disclaimer__content {
  text-align: left;
  width: 100%;
}

.disclaimer__title {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
}

.disclaimer__intro {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.disclaimer__box {
  background: rgba(24, 0, 40, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 2rem;
  padding: 3rem;
  text-align: left;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.disclaimer__section {
  margin-bottom: 2.5rem;
}

.disclaimer__section:last-child {
  margin-bottom: 0;
}

.disclaimer__heading {
  font-family: "Anton", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.disclaimer__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.disclaimer__updated {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .disclaimer {
    padding: 8rem 2rem;
  }

  .disclaimer__box {
    padding-top: 60px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .disclaimer__title {
    font-size: 2.4rem;
  }

  .disclaimer__heading {
    font-size: 1.4rem;
  }
}

.minigames {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  padding: 6rem 4rem;
}

.minigames__title {
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.minigames__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

@media (max-width: 768px) {
  .minigames {
    padding: 1rem 2rem;
  }
}

.minigame {
  margin-bottom: 6rem;
}

.minigame__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.minigame__wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .minigame__wrapper {
    flex-direction: column;
    text-align: left;
    gap: 2rem;
  }
}

.minigame__content {
  max-width: 540px;
}

@media (max-width: 768px) {
  .minigame__content {
    max-width: 100%;
  }
}

.minigame__title {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .minigame__title {
    font-size: 1.8rem;
  }
}

.minigame__body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 240, 255, 0.9);
  margin-bottom: 1.5rem;
}

.minigame__tips {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: left;
}

.minigame__tips-title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: #fff;
}

.minigame__tips-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: rgba(221, 214, 254, 0.9);
}

.minigame__tips-list li {
  margin-bottom: 0.4rem;
}

.minigame__image {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.15) 80%);
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.4), 0 0 80px rgba(168, 85, 247, 0.3), inset 0 0 40px rgba(168, 85, 247, 0.15);
  border: 3px solid rgba(236, 72, 153, 0.3);
}

.minigame__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.4), 0 0 50px rgba(168, 85, 247, 0.3);
}

@media (max-width: 768px) {
  .minigame__image {
    width: 250px;
    height: 250px;
  }

  .minigame__image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .minigame {
    padding: 0px;
    margin-bottom: 3rem;
  }
}

.navigation {
  display: flex;
  background-color: #fff;
  max-width: 1050px;
  justify-content: space-between;
  position: sticky;
  top: 50px;
  border-radius: 200px;
  margin: 0 auto;
  z-index: 50;
  font-family: "Anton", sans-serif;
  box-shadow: rgb(166, 9, 87) 0px 2px 5px -1px, rgba(255, 77, 0, 0.54) 0px 1px 3px -1px;
}

.navigation__logo img {
  max-width: 250px;
}

.navigation__menu {
  min-height: 100%;
  justify-content: space-around;
  align-items: center;
  display: flex;
  gap: 20px;
  min-width: 50%;
  margin-right: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

.navigation__menu a {
  text-decoration: unset;
  cursor: pointer;
  font-size: 1.1em;
  color: #230c5b;
}

.navigation__hamburger {
  display: none;
  cursor: pointer;
}

.navigation__hamburger img {
  width: 35px;
  height: 35px;
}

.navigation__menu--mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  top: 100px;
  left: 7vw;
  width: 80vw;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 10px;
  padding-top: 3vh;
  z-index: 20;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.navigation__menu--mobile a {
  padding: 12px 0;
  width: 100%;
  text-decoration: unset;
  cursor: pointer;
  font-size: 1.1em;
  color: #230c5b;
}

.navigation__menu--mobile.is-open {
  display: flex;
  max-height: 50vh;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .navigation {
    flex-direction: row;
    align-items: center;
    z-index: 100;
    position: fixed;
    top: 30px;
    width: 95%;
    flex: 1;
    margin-left: 2.5%;
  }

  .navigation__menu--desktop {
    display: none;
  }

  .navigation__hamburger {
    display: flex;
    margin-right: 30px;
  }

  .navigation__menu--mobile {
    display: flex;
  }
}

.footer {
  width: 100vw;
  padding: 4rem 0rem 2rem;
  background: radial-gradient(circle at top center, rgba(88, 28, 135, 0.25), rgba(24, 0, 40, 0.6) 80%);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  text-align: center;
  margin: unset;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.1);
}

.footer__container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo img {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.5));
}

.footer__tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

.footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer__link:hover {
  color: #c084fc;
  transform: translateY(-2px);
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0rem;
    margin-top: 2rem;
  }

  .footer__logo img {
    width: 140px;
  }

  .footer__nav {
    gap: 1.25rem;
  }

  .footer__link {
    font-size: 0.95rem;
  }
}

* {
  margin: unset;
}

.pagecontents {
  overflow-x: hidden;
}

.pagecontents__landing {
  background: url(/images/background.png?a52063e2cd570745ad63baf347b153ed);
  background-size: cover;
  margin: unset;
  overflow-x: hidden;
}

.spacer {
  margin-top: 2em;
  margin-bottom: 2em;
}


