/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: -300px;
  left: 0;
  right: 0;
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.98), rgba(15, 15, 30, 0.98));
  border-top: 3px solid var(--yellow-gta);
  padding: 2rem;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

#cookieBanner.show {
  bottom: 0;
}

.cookie__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cookie__text {
  font-size: 1.4rem;
  color: var(--yellow-gta);
  text-align: center;
  line-height: 1.6em;
}

.cookie__text a {
  color: var(--pink-gta);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie__text a:hover {
  color: var(--yellow-gta);
}

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

.cookie__btn {
  font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--pink-gta);
  background: linear-gradient(135deg, var(--pink-gta) 0%, #ff8ec4 100%);
  color: var(--white-1);
}

.cookie__btn:hover {
  transform: translateY(-2px);
}

.cookie__btn--reject {
  background: transparent;
  color: var(--pink-gta);
}

.cookie__btn--reject:hover {
  background: rgba(255, 110, 173, 0.1);
  border-color: var(--yellow-gta);
  color: var(--yellow-gta);
}

@media only screen and (min-width: 768px) {
  .cookie__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie__text {
    text-align: left;
    font-size: 1.6rem;
    flex: 1;
  }

  .cookie__buttons {
    flex-shrink: 0;
  }

  .cookie__btn {
    font-size: 1.6rem;
  }
}

/* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink-gta) 0%, #ff8ec4 100%);
  border: 2px solid var(--pink-gta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTop:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--yellow-gta) 0%, #ffd700 100%);
  border-color: var(--yellow-gta);
}

#scrollToTop svg {
  width: 24px;
  height: 24px;
  stroke: var(--white-1);
  stroke-width: 3;
}

@media only screen and (min-width: 768px) {
  #scrollToTop {
    width: 60px;
    height: 60px;
  }

  #scrollToTop svg {
    width: 28px;
    height: 28px;
  }
}
