@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/subset-Outfit-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/subset-Outfit-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/subset-Cinzel-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/subset-Outfit-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header--scrolled {
  padding: 5px 0;
  background: #0a0a0a;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.header__wrapper {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .header__wrapper {
    height: 90px;
  }
}
.header__logo {
  font-family: "Cinzel", serif;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header__logo--accent {
  color: #d4af37;
}
.header__logo:hover {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 24px;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header__nav.is-active {
  right: 0;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
  }
}
.header__nav-list {
  list-style: none;
  text-align: center;
}
@media (min-width: 1024px) {
  .header__nav-list {
    display: flex;
    gap: 25px;
  }
}
@media (min-width: 1440px) {
  .header__nav-list {
    gap: 40px;
  }
}
.header__nav-item {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
}
.is-active .header__nav-item {
  animation: fadeInItem 0.5s forwards;
}
.is-active .header__nav-item:nth-child(1) {
  animation-delay: 0.1s;
}
.is-active .header__nav-item:nth-child(2) {
  animation-delay: 0.2s;
}
.is-active .header__nav-item:nth-child(3) {
  animation-delay: 0.3s;
}
.is-active .header__nav-item:nth-child(4) {
  animation-delay: 0.4s;
}
.is-active .header__nav-item:nth-child(5) {
  animation-delay: 0.5s;
}
.is-active .header__nav-item:nth-child(6) {
  animation-delay: 0.6s;
}
.is-active .header__nav-item:nth-child(7) {
  animation-delay: 0.7s;
}
.is-active .header__nav-item:nth-child(8) {
  animation-delay: 0.8s;
}
@media (min-width: 1024px) {
  .header__nav-item {
    margin: 0;
    opacity: 1;
    transform: none;
  }
}
.header__nav-link {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header__nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
}
.header__nav-link:hover {
  color: #d4af37;
}
.header__nav-link:hover:after {
  width: 100%;
}
@media (min-width: 1024px) {
  .header__nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
  }
}
.header__burger {
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #d4af37;
  margin: 6px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@keyframes fadeInItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid {
    flex-direction: row;
    gap: 80px;
  }
  .grid .img-wrapper,
  .grid .content {
    flex: 1;
  }
}

.title {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 25px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}

.text {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}
.features li {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.features li:before {
  content: "✓";
  color: #d4af37;
  font-weight: bold;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 60px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.4), #0a0a0a);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
}
.hero__title {
  font-family: "Cinzel", serif;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 64px;
  }
}
.hero__text {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}
.hero__badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #f1d592;
  backdrop-filter: blur(5px);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
  }
}

.button {
  padding: 18px 35px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-width: 220px;
}
.button--primary {
  background: #d4af37;
  color: #0a0a0a;
}
.button--primary:hover {
  background: #f1d592;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.button--secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button--secondary:hover {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateY(-3px);
}

.estate,
.rooms,
.casino {
  padding: 80px 0;
  background: #0a0a0a;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .estate,
  .rooms,
  .casino {
    padding: 120px 0;
  }
}
.estate .img-wrapper,
.rooms .img-wrapper,
.casino .img-wrapper {
  position: relative;
  width: 100%;
}
.estate .img-wrapper:after,
.rooms .img-wrapper:after,
.casino .img-wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #d4af37;
  transform: translate(15px, 15px);
  z-index: 1;
  pointer-events: none;
}
.estate .img-wrapper .img,
.rooms .img-wrapper .img,
.casino .img-wrapper .img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
  display: block;
  filter: grayscale(20%);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 1024px) {
  .estate .img-wrapper .img,
  .rooms .img-wrapper .img,
  .casino .img-wrapper .img {
    height: 550px;
  }
}
.estate .img-wrapper .img:hover,
.rooms .img-wrapper .img:hover,
.casino .img-wrapper .img:hover {
  filter: grayscale(0%);
}

.rooms {
  background: #1a1a1a;
}
@media (min-width: 1024px) {
  .rooms .grid {
    flex-direction: row-reverse;
  }
  .rooms .img-wrapper:after {
    transform: translate(-15px, 15px);
  }
}

.casino {
  position: relative;
}
.casino:before {
  content: "CASINO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 15vw;
  color: rgba(212, 175, 55, 0.03);
  pointer-events: none;
  z-index: 0;
}

.restaurant,
.wellness,
.meetings,
.location {
  padding: 80px 0;
  background: #0a0a0a;
}
@media (min-width: 1024px) {
  .restaurant,
  .wellness,
  .meetings,
  .location {
    padding: 120px 0;
  }
}
.restaurant .img-wrapper,
.wellness .img-wrapper,
.meetings .img-wrapper,
.location .img-wrapper {
  position: relative;
}
.restaurant .img-wrapper:after,
.wellness .img-wrapper:after,
.meetings .img-wrapper:after,
.location .img-wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #d4af37;
  z-index: 1;
  pointer-events: none;
}
.restaurant .img-wrapper .img,
.wellness .img-wrapper .img,
.meetings .img-wrapper .img,
.location .img-wrapper .img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
  display: block;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 1024px) {
  .restaurant .img-wrapper .img,
  .wellness .img-wrapper .img,
  .meetings .img-wrapper .img,
  .location .img-wrapper .img {
    height: 500px;
  }
}
.restaurant .img-wrapper .img:hover,
.wellness .img-wrapper .img:hover,
.meetings .img-wrapper .img:hover,
.location .img-wrapper .img:hover {
  transform: scale(1.02);
}

.wellness,
.location {
  background: #1a1a1a;
}
@media (min-width: 1024px) {
  .wellness .grid,
  .location .grid {
    flex-direction: row-reverse;
  }
  .wellness .img-wrapper:after,
  .location .img-wrapper:after {
    transform: translate(-15px, 15px);
  }
}
.wellness .img-wrapper:after,
.location .img-wrapper:after {
  transform: translate(-15px, 15px);
}

.restaurant .img-wrapper:after,
.meetings .img-wrapper:after {
  transform: translate(15px, 15px);
}

.gallery {
  padding: 80px 0;
  background: #0a0a0a;
}
@media (min-width: 1024px) {
  .gallery {
    padding: 120px 0;
  }
}
.gallery__content {
  max-width: 800px;
  margin: 0 auto 60px;
}
.gallery__content .title.text-center {
  text-align: center;
}
.gallery__content .title.text-center:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 20px auto 0;
}
.gallery__content .text-center {
  text-align: center;
}
.gallery__img-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
@media (min-width: 768px) {
  .gallery__img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__img-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.gallery__img-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery__img-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0.2);
  opacity: 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery__img-item:hover:before {
  opacity: 1;
}
.gallery__img-item:hover .gallery__img {
  transform: scale(1.1);
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer {
  padding: 60px 0 30px;
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copyright {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
}
.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer__nav-list {
    flex-direction: row;
    gap: 25px;
  }
}
.footer__nav-link {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer__nav-link:hover {
  color: #d4af37;
}

.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}
.page-hero__title {
  font-family: "Cinzel", serif;
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 48px;
  }
}
.page-hero__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.policy-content {
  padding: 80px 0;
  background: #0a0a0a;
}
.policy-content__wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.policy-content__section {
  margin-bottom: 50px;
}
.policy-content__section:last-child {
  margin-bottom: 0;
}
.policy-content__h2 {
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.policy-content__h3 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  color: #f1d592;
  margin: 30px 0 15px;
  font-weight: 600;
}
.policy-content__text {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.policy-content__text strong {
  color: #ffffff;
  font-weight: 600;
}
.policy-content__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}
.policy-content__list li {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
}
.policy-content__list li:before {
  content: "•";
  color: #d4af37;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.policy-content__warning {
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
  padding: 25px;
  margin: 30px 0;
  border-radius: 4px;
}
.policy-content__warning p {
  margin-bottom: 0;
  color: #f1d592;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.policy-content__contact-box {
  background: #1a1a1a;
  padding: 30px;
  border-left: 3px solid #d4af37;
  margin-top: 40px;
}

.policy-content__table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}
.policy-content__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  min-width: 600px;
}
.policy-content__table th,
.policy-content__table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.policy-content__table th {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.policy-content__table tr:last-child td {
  border-bottom: none;
}
.policy-content__table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.policy-content__manage-box {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
  padding: 25px;
  border-left: 2px solid #d4af37;
  margin: 40px 0;
}
.policy-content__manage-box h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}

.policy-content__test-box {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 35px;
  margin: 40px 0;
  border-radius: 8px;
}
.policy-content__test-box h3 {
  color: #d4af37;
  margin-top: 0;
}
.policy-content__help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .policy-content__help-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.policy-content__help-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.policy-content__help-card:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}
.policy-content__help-card strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.policy-content__help-card span {
  color: #f1d592;
  font-size: 20px;
  font-weight: 600;
}
.policy-content__limit-badge {
  display: inline-block;
  padding: 5px 15px;
  background: #d4af37;
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px 0;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}
.cookie-banner.is-visible {
  bottom: 0;
}
.cookie-banner__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cookie-banner__container {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}
.cookie-banner__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .cookie-banner__content {
    text-align: left;
  }
}
.cookie-banner__title {
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: #d4af37;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 1px;
}
.cookie-banner__text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__text a {
  color: #ffffff;
  text-decoration: underline;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cookie-banner__text a:hover {
  color: #d4af37;
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 12px 25px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.cookie-banner__btn--accept {
  background: #d4af37;
  color: #0a0a0a;
}
.cookie-banner__btn--accept:hover {
  background: #f1d592;
  transform: translateY(-2px);
}
.cookie-banner__btn--reject {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.cookie-banner__btn--reject:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.error-404 {
  min-height: 100vh;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.error-404__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 40vw;
  color: rgba(212, 175, 55, 0.03);
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.error-404__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.error-404__code {
  font-family: "Cinzel", serif;
  font-size: 80px;
  color: #d4af37;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 150px;
  }
}
.error-404__title {
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: #ffffff;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 32px;
  }
}
.error-404__text {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}
.error-404__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .error-404__actions {
    flex-direction: row;
  }
}
.error-404__code span {
  display: inline-block;
  animation: bounce 2s infinite ease-in-out;
}
.error-404__code span:nth-child(2) {
  animation-delay: 0.2s;
}
.error-404__code span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
    color: #f1d592;
  }
}