/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background: #0a0a0a;
  overflow-x: hidden;
  position: relative;
}

/* General Background for all sections */
.general-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.general-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Ensure sections are above general background */
section {
  position: relative;
  z-index: 1;
}

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

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

/* Age Modal */
.age-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.age-modal.active {
  display: flex;
}

.age-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
}

.age-modal-content h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.age-modal-content p {
  margin-bottom: 2rem;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-yes,
.btn-no {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-yes {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
}

.btn-no {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-yes:hover,
.btn-no:hover {
  transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-top: 2px solid #d4af37;
  padding: 1.5rem;
  z-index: 9999;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-content a {
  color: #d4af37;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept,
.btn-decline {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-accept {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
}

.btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header */
#header {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  position: sticky;
  top: 0;
  z-index: 10000;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 20px;
  gap: 3rem;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #d4af37;
}

/* Burger Menu */
.burger-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #d4af37;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.burger-toggle:checked ~ .burger-menu .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle:checked ~ .burger-menu .burger-line:nth-child(2) {
  transform: scale(0);
}

.burger-toggle:checked ~ .burger-menu .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.hero-verified h3 {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.verified-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.verified-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verified-item i {
  color: #0f9d58;
  font-size: 1.3rem;
}

/* Offers */
.offers {
  padding: 4.5rem 0;
}

.offers h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.offer-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.offer-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-logo {
  background: transparent;
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
}

.offer-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.offer-right {
  flex: 1;
}

.offer-metrics {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.offer-metrics-mobile {
  display: none;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.85rem;
  color: #999;
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
  color: #d4af37;
}

.offer-right h3 {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 0.8rem;
}

.offer-desc {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.payment-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #d4af37;
}

.btn-offer {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

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

/* Reviews */
.reviews {
  padding: 4.5rem 0;
  position: relative;
  z-index: 2;
}

.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.reviews-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.reviews-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.reviews .container {
  position: relative;
  z-index: 1;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.review-stars {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.review-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-author {
  color: #0f9d58;
  font-weight: 600;
}

/* Security */
.security {
  padding: 4.5rem 0;
}

.security h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.security-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
}

.certificates {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  min-width: 150px;
}

.cert-item i {
  font-size: 2.5rem;
  color: #0f9d58;
  margin-bottom: 0.8rem;
}

.cert-item h4 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.cert-item p {
  font-size: 0.9rem;
  color: #999;
}

/* About */
.about {
  padding: 4.5rem 0;
  background: rgba(212, 175, 55, 0.03);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-feature {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
}

.about-feature i {
  font-size: 2.5rem;
  color: #0f9d58;
  margin-bottom: 1rem;
}

.about-feature h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.about-feature p {
  color: #ccc;
  line-height: 1.7;
}

/* Games */
.games {
  padding: 4.5rem 0;
}

.games h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.games-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.game-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.game-card i {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.game-card h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.game-card p {
  color: #ccc;
  line-height: 1.7;
}

/* Bonus Guide */
.bonus-guide {
  padding: 4.5rem 0;
  background: rgba(212, 175, 55, 0.03);
}

.bonus-guide h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.bonus-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ccc;
}

.bonus-list {
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-item {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateX(5px);
}

.bonus-item h3 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.bonus-item p {
  color: #ccc;
  line-height: 1.8;
}

/* FAQ */
.faq {
  padding: 4.5rem 0;
  background: rgba(212, 175, 55, 0.03);
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-item p {
  color: #ccc;
  line-height: 1.7;
}

/* Banners */
.banners {
  padding: 4.5rem 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  transition: all 0.3s ease;
  text-decoration: none;
}

.banner-item:hover {
  background: rgba(26, 26, 26, 0.95);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.banner-item:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* Contact */
.contact {
  padding: 4.5rem 0;
  background: rgba(212, 175, 55, 0.03);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.contact p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-info {
  text-align: center;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info i {
  color: #d4af37;
  margin-right: 0.5rem;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
  word-break: break-all;
}

/* Footer */
#footer {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3rem 0 1.5rem;
  position: relative;
  z-index: 9999;
}

.footer-responsible {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.responsible-content h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.responsible-content h4 {
  color: #0f9d58;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.responsible-content p {
  line-height: 1.7;
  color: #ccc;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-legal a {
  color: #d4af37;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  color: #888;
}

.footer-age {
  font-weight: 600;
  color: #d4af37;
  margin-top: 0.5rem;
}

.footer-affiliate {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 900px) {
  .burger-menu {
    display: flex;
    z-index: 10002;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    z-index: 10001;
  }

  .burger-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.3rem;
  }

  .hero {
    padding: 1rem 0 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
  }

  .hero-subtitle {
    display: none;
  }

  .offers {
    padding: 0;
  }

  .offers h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .offer-card:last-child {
    margin-bottom: 0;
  }

  .offer-left {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .offer-logo {
    max-width: 100%;
    padding: 0.5rem;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100%;
  }

  .offer-left {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .offer-metrics-mobile {
    display: flex;
  }

  .offer-metrics-desktop {
    display: none;
  }

  .offer-left .offer-metrics-mobile {
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    margin: 0;
    flex-wrap: wrap;
    width: 100%;
  }

  .offer-left .offer-metrics-mobile:first-of-type {
    margin-top: 0.5rem;
  }

  .offer-left .offer-metrics-mobile:last-of-type {
    margin-top: 0.3rem;
  }

  .offer-left .offer-metrics-mobile .metric-item {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    align-items: center;
    flex: 0 1 auto;
    min-width: fit-content;
    max-width: calc(50% - 0.15rem);
  }

  .offer-left .offer-metrics-mobile .metric-item .metric-label {
    font-size: 0.6rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .offer-left .offer-metrics-mobile .metric-item .metric-value {
    font-size: 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .offer-right {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .offer-right h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .offer-desc {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .payment-icons {
    font-size: 1.1rem;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
  }

  .btn-offer {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .metric-value {
    font-size: 0.75rem;
    text-align: right;
  }

  .reviews,
  .security,
  .faq,
  .contact,
  .banners,
  .about,
  .games,
  .bonus-guide {
    padding: 0;
  }

  .reviews h2,
  .security h2,
  .faq h2,
  .contact h2,
  .banners h2,
  .about h2,
  .games h2,
  .bonus-guide h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .about-intro,
  .games-intro,
  .bonus-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-feature {
    padding: 1.5rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .game-card {
    padding: 1.5rem;
  }

  .bonus-item {
    padding: 1.5rem;
  }

  .bonus-item h3 {
    font-size: 1.2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .security-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .certificates {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cert-item {
    flex: 0 0 calc(50% - 0.5rem);
    padding: 1rem;
  }

  .cert-item i {
    font-size: 2rem;
  }

  .faq-item {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  .banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .banner-item {
    padding: 1rem;
  }

  .banner-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 0.5rem);
  }

  .footer-responsible {
    flex-direction: column;
    text-align: center;
  }

  .responsible-icon img {
    margin: 0 auto;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-accept,
  .btn-decline {
    width: 100%;
  }
}
