@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: "Montserrat";
  src: url("/fonts/subset-Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/subset-Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/subset-Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/subset-PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #f0f0f0;
  background-color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 345px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #ffd700;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

h1 {
  font-size: 2.2em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3em;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.8em;
  }
}

h2 {
  font-size: 1.8em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5em;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 3.2em;
  }
}

h3 {
  font-size: 1.4em;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.8em;
  }
}

p {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: #ffd700;
  transition: color 0.3s ease;
}
a:hover {
  color: #daa520;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-size: 0.9em;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1em;
    padding: 15px 30px;
  }
}
.btn--outlined {
  background-color: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}
.btn--outlined:hover {
  background-color: #ffd700;
  color: #1a1a1a;
}
.btn--contained {
  background-color: #ffd700;
  border: 2px solid #ffd700;
  color: #1a1a1a;
}
.btn--contained:hover {
  background-color: #daa520;
  border-color: #daa520;
}

.header {
  background-color: #1a1a1a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.5);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .header__logo img {
    max-width: 200px;
  }
}
@media (min-width: 1024px) {
  .header__logo img {
    max-width: 235px;
  }
}
.header__logo:hover img {
  transform: scale(1.05);
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
.header__menu-item {
  position: relative;
}
.header__menu-link {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9em;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.header__menu-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.header__menu-link:hover {
  color: #ffd700;
}
.header__menu-link:hover::after {
  width: 100%;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffd700;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
  width: 120%;
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
  width: 120%;
}
.header__nav--mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
  z-index: 999;
}
.header__nav--mobile .header__menu {
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.header__nav--mobile .header__menu-link {
  font-size: 1.5em;
  padding: 10px 0;
}
.header__nav--mobile .header__menu-link::after {
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.header__nav--mobile .header__menu-link:hover::after {
  width: 70%;
}

.hero {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.7);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__wrapper {
  animation: fadeIn 1s ease-out;
  max-width: 700px;
  margin: 0 auto;
}
.hero__title {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(26, 26, 26, 0.5);
}
.hero__text {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(26, 26, 26, 0.4);
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.3em;
  }
}

.about {
  padding: 60px 0;
  background-color: #333333;
  color: #f0f0f0;
}
@media (min-width: 768px) {
  .about {
    padding: 80px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.about__img-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}
@media (min-width: 1024px) {
  .about__img-wrapper {
    order: 2;
  }
}
.about__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease-in-out;
}
.about__img:hover {
  transform: scale(1.05);
}
.about__content {
  flex: 1;
  animation: fadeIn 1s ease-out;
}
@media (min-width: 1024px) {
  .about__content {
    order: 1;
  }
}
.about__title {
  color: #ffd700;
  margin-bottom: 20px;
}
.about__description {
  line-height: 1.8;
}
.about__text {
  margin-bottom: 15px;
}
.about__text-accent {
  color: #ffd700;
  font-weight: 600;
}

.offer {
  padding: 60px 0;
  background-color: #1a1a1a;
  text-align: center;
}
@media (min-width: 768px) {
  .offer {
    padding: 80px 0;
  }
}
.offer__head {
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out;
}
.offer__head-title {
  color: #ffd700;
  margin-bottom: 15px;
}
.offer__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .offer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer__list-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(26, 26, 26, 0.4);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.offer__list-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}
.offer__item-title {
  color: #ffd700;
  margin-bottom: 15px;
}
.offer__item-text {
  color: #f0f0f0;
}

.casino-events {
  padding: 60px 0;
  background-color: #333333;
  color: #f0f0f0;
}
@media (min-width: 768px) {
  .casino-events {
    padding: 80px 0;
  }
}
.casino-events__head {
  margin-bottom: 50px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}
.casino-events__head-title {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 2em;
}
@media (min-width: 768px) {
  .casino-events__head-title {
    font-size: 2.5em;
  }
}
@media (min-width: 1024px) {
  .casino-events__head-title {
    font-size: 3.2em;
  }
}
.casino-events__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.casino-events__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .casino-events__wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}
.casino-events__content {
  flex: 2;
  animation: fadeIn 1s ease-out;
}
.casino-events__text {
  margin-bottom: 15px;
  line-height: 1.8;
}
.casino-events__text:last-of-type {
  margin-bottom: 30px;
}
.casino-events__subtitle {
  color: #ffd700;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.5em;
}
@media (min-width: 768px) {
  .casino-events__subtitle {
    font-size: 1.8em;
  }
}
.casino-events__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.casino-events__list-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}
.casino-events__list-item::before {
  content: "♦";
  color: #ffd700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
  top: 2px;
}
.casino-events__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}
.casino-events__img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease-in-out;
}
.casino-events__img:hover {
  transform: scale(1.05);
}
.casino-events .btn--outlined {
  margin-top: 20px;
}

.gallery {
  padding: 60px 0;
  background-color: #333333;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery {
    padding: 80px 0;
  }
}
.gallery__head {
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out;
}
.gallery__head-title {
  color: #ffd700;
  margin-bottom: 15px;
}
.gallery__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}
.gallery__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery__list-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3);
}
.gallery__item-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease-in-out;
}
.gallery__item-img:hover {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .gallery__item-img {
    height: 300px;
  }
}
@media (min-width: 1024px) {
  .gallery__item-img {
    height: 220px;
  }
}

.contact {
  padding-bottom: 60px;
  background-color: #1a1a1a;
  color: #f0f0f0;
}
@media (min-width: 768px) {
  .contact {
    padding-bottom: 80px;
  }
}
.contact__notice-bg {
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
  animation: pulse 1.5s infinite ease-in-out;
}
@media (min-width: 768px) {
  .contact__notice-bg {
    padding: 30px;
  }
}
.contact__notice {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .contact__notice {
    font-size: 1.5em;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact__left, .contact__right {
  flex: 1;
  animation: fadeIn 1s ease-out;
}
.contact__title {
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__title {
    text-align: left;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-input {
  background-color: #333333;
  border: 1px solid #555555;
  padding: 12px 15px;
  border-radius: 5px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  transition: border-color 0.3s ease;
}
.contact__form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}
.contact__form-input::-moz-placeholder {
  color: #555555;
}
.contact__form-input::placeholder {
  color: #555555;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-status {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}
.contact__form-status.success {
  color: #28a745;
}
.contact__form-status.error {
  color: #dc3545;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__list {
    text-align: left;
  }
}
.contact__list-item {
  font-size: 1.1em;
  color: #f0f0f0;
}

.disclaimer {
  padding: 60px 0;
  background-color: #333333;
  text-align: center;
}
@media (min-width: 768px) {
  .disclaimer {
    padding: 80px 0;
  }
}
.disclaimer__wrapper {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}
.disclaimer__title {
  color: #dc3545;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 2em;
}
@media (min-width: 768px) {
  .disclaimer__title {
    font-size: 2.5em;
  }
}
.disclaimer__text {
  font-size: 1em;
  line-height: 1.8;
  color: #f0f0f0;
}
@media (min-width: 768px) {
  .disclaimer__text {
    font-size: 1.1em;
  }
}
.disclaimer__text strong {
  color: #ffd700;
  font-weight: 700;
}

.footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 40px 0;
  font-size: 0.9em;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
    text-align: left;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__block {
  flex: 1;
  animation: fadeIn 1s ease-out;
}
@media (min-width: 768px) {
  .footer__block {
    flex-basis: 30%;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}
.footer__logo:hover {
  transform: scale(1.05);
}
.footer__logo img {
  max-width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .footer__logo img {
    max-width: 235px;
  }
}
.footer__text {
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__text {
    margin: 0;
  }
}
.footer__title {
  color: #ffd700;
  margin-bottom: 25px;
  font-size: 1.5em;
  text-transform: uppercase;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-item:last-child {
  margin-bottom: 0;
}
.footer__menu-link {
  color: #f0f0f0;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer__menu-link:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.legal {
  padding: 60px 0;
  background-color: #333333;
  color: #f0f0f0;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out;
}
.legal__header--title {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 2.5em;
}
@media (min-width: 768px) {
  .legal__header--title {
    font-size: 3.5em;
  }
}
.legal__header--subtitle {
  font-size: 1.1em;
  color: #f0f0f0;
}
.legal__section {
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease-out;
  transition: all 0.3s ease;
}
.legal__section:last-child {
  margin-bottom: 0;
}
.legal__section--title {
  color: #ffd700;
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__section--title {
    font-size: 2.2em;
  }
}
.legal__section--text {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #f0f0f0;
}
.legal__section--text strong {
  color: #ffd700;
  font-weight: 700;
}
.legal__section--text a {
  font-weight: 600;
}
.legal__section--text a:hover {
  text-decoration: underline;
}
.legal__section--list {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
}
.legal__section--list-item {
  list-style-type: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal__section--list-item strong {
  color: #ffd700;
}

.features {
  padding: 60px 0;
  background-color: #1a1a1a;
  text-align: center;
}
@media (min-width: 768px) {
  .features {
    padding: 80px 0;
  }
}
.features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .features__list {
    gap: 20px;
  }
}
.features__list-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(26, 26, 26, 0.4);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.features__list-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}
.features__item-title {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.6em;
}
@media (min-width: 768px) {
  .features__item-title {
    font-size: 1.8em;
  }
}
.features__item-text {
  color: #f0f0f0;
  font-size: 1em;
  line-height: 1.7;
}

.cta {
  padding: 60px 0;
  background-color: #daa520;
  text-align: center;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .cta {
    padding: 80px 0;
  }
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: fadeIn 1s ease-out;
}
@media (min-width: 768px) {
  .cta__wrapper {
    gap: 40px;
  }
}
.cta__title {
  color: #1a1a1a;
  font-size: 2em;
  margin-bottom: 0;
  max-width: 900px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.8em;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    font-size: 3.5em;
  }
}
.cta .btn--contained {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffd700;
}
.cta .btn--contained:hover {
  background-color: #555555;
  border-color: #555555;
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333333;
  color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(26, 26, 26, 0.3);
  z-index: 10000;
  display: none;
  animation: fadeIn 0.5s ease-out forwards;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .cookie-banner__wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    font-size: 1em;
    max-width: 70%;
  }
}
.cookie-banner__text a {
  color: #ffd700;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #daa520;
}
.cookie-banner__buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.85em;
}
@media (min-width: 768px) {
  .cookie-banner .btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}