@font-face {
      font-family: 'AvenirNext';
      font-style: normal;
      font-weight: 400 700;
      font-display: swap;
      src: url('assets/fonts/AvenirNext.woff2') format('woff2');
    }

    :root {
      --bg-main: #10182f;
      --bg-light: #1e263b;
      --text-color: #f1f1f1;
      --accent: #ff9900;
      --font-main: 'AvenirNext', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-main);
      background-color: var(--bg-main);
      color: var(--text-color);
      line-height: 1.6;
    }

    a {
      color: #fff;
      text-decoration: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

.container-nav {
  padding: 0;
}

.header-wrap {
  background-color: var(--bg-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 10;
}

.nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-main img {
  height: 90px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  padding: 6px 4px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffa000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #ffa000;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Якщо є кнопка .contact-form */
.contact-form {
  background-color: #ffa000;
  color: #1c1800 !important;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  background-color: #ffc107;
  box-shadow: 0 0 10px rgba(255, 143, 0, 0.6);
}
    .hero-block {
      text-align: center;
      padding: 40px 20px;
    }

    .hero-block h1 {
      font-size: 2.5rem;
      margin-bottom: 12px;
    }

    .hero-block p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .bookmaker-list {
      padding: 40px 20px;
      background-color: var(--bg-light);
    }
.bookmaker-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: flex-start;
}

.bookmaker-card {
  flex: 0 0 calc((100% - 48px) / 3);
  box-sizing: border-box;

  /* решта твоїх стилів */
  background: linear-gradient(135deg, #0c2f55 0%, #103e7c 100%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(12, 47, 85, 0.5);
  padding: 24px;
  margin: 12px 0;
  /* верх-низ, а горизонтальний відступ керує gap */
  color: #f0f4f8;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.6s ease;
}

.bookmaker-card::before {
  content: '';
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 20px;
  border: 3px solid #ffa000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  animation: borderPulse 3s infinite alternate ease-in-out;
}

.bookmaker-card:hover::before {
  opacity: 1;
}

.bookmaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12, 47, 85, 0.8);
}

/* Анімація появи */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Пульсація бордера */
@keyframes borderPulse {
  0% {
    border-color: #ffa000;
    box-shadow: 0 0 10px #ffa000;
  }

  100% {
    border-color: #ffd54f;
    box-shadow: 0 0 30px #ffd54f;
  }
}

/* Інші стилі залишаються без змін */

.brand-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #0c2f55;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.3s ease;
}

.bookmaker-card:hover .brand-icon {
  box-shadow: 0 0 25px #ffa000;
  animation: pulseGlow 1.5s infinite alternate;
}

.brand-icon img {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* Пульсація сяйва для іконки */
@keyframes pulseGlow {
  from {
    box-shadow: 0 0 10px #ffa000;
  }

  to {
    box-shadow: 0 0 30px #ffca28;
  }
}

.bookmaker-rating {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.8));
  transition: filter 0.3s ease;
}

.bookmaker-card:hover .stars img {
  filter: drop-shadow(0 0 6px #ffb300);
  animation: starTwinkle 2s infinite;
}

/* Анімація мерехтіння зірок */
@keyframes starTwinkle {

  0%,
  100% {
    filter: drop-shadow(0 0 6px #ffb300);
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 12px #ffd54f);
    transform: scale(1.15);
  }
}

.bonus-offer {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd54f;
  text-align: center;
  margin-bottom: 24px;
  text-shadow: 0 0 4px rgba(255, 213, 79, 0.9);
  user-select: none;
  transition: background 0.3s ease;
}

.bookmaker-card:hover .bonus-offer {
  background: rgba(255, 255, 255, 0.3);
  animation: bonusGlow 1.5s infinite alternate;
}

/* Пульсація фону бонусу */
@keyframes bonusGlow {
  from {
    background: rgba(255, 255, 255, 0.15);
  }

  to {
    background: rgba(255, 255, 255, 0.35);
  }
}

.cta {
  width: 100%;
  text-align: center;
}

.btn-play {
  display: inline-block;
  background: #ffb300;
  color: #0c2f55;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.btn-play:hover {
  background: #ffa000;
  box-shadow: 0 12px 30px rgba(255, 160, 0, 0.9);
  transform: translateY(-4px) scale(1.05);
}

/* Контейнер для 3 карток */

.bookmaker-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
 .footer-main {
   background-color: #1c2333;
   /* глибокий темно-синій фон */
   color: #f5f5f5;
   padding: 40px 20px 0px;
   margin-top: 80px;
   border-top: 3px solid #11427e;
   /* чітке відділення від мейну */
   font-family: 'Inter', sans-serif;
   font-size: 0.95rem;
   line-height: 1.6;
 }

 .footer-main .container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 40px;
 }

 .footer-disclaimer p {
   color: #d1d1d1;
   margin: 0;
 }

 .footer-disclaimer strong {
   color: #ffffff;
 }

.footer-disclaimer {
  background-color: #1f263a;
  /* трохи світліший від основного футера */
  padding: 30px 25px;
  border-left: 4px solid #ffa000;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(255, 143, 0, 0.05);
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}

.footer-disclaimer::before {
  content: "ℹ️";
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 1.3rem;
  color: #ffa000;
}

.footer-disclaimer p {
  margin: 0;
  padding-left: 30px;
  text-align: justify;
  text-wrap: pretty;
}

 .footer-legal {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 20px;
   text-align: center;
  align-items: center;
 }

 .footer-legal a {
   color: #f5f5f5;
   text-decoration: none;
   transition: color 0.3s ease;
 }

 .footer-legal a:hover {
   color: #ffa000;
 }

 .footer-legal .contact-form {
   font-weight: 600;
   border-bottom: 1px dashed #ffa000;
 }

 .footer-copy {
   text-align: center;
   color: #999;
   font-size: 0.85rem;
   border-top: 1px solid #2c3448;
   padding-top: 20px;
 }

 .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 10px 0 20px;
  border-top: 1px solid #2c3448;
  border-bottom: 1px solid #2c3448;
}

.footer-logos img {
  height: 32px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: grayscale(40%) brightness(1.2);
}

.footer-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: none;
}


 


:root {
  --blue-dark: #1c2333;
  /* темний насичений синій фон */
  --blue-medium: #11427e;
  /* яскравий синій для акцентів */
  --blue-light: #3a4a8f;
  /* світліший синій для тексту */
  --accent-yellow: #ff8f00;
  /* твій акцентний жовто-оранжевий */
  --text-light: #f5f5f5;
  /* світлий текст */
  --text-muted: #a0a9c0;
  /* приглушений текст */
}

.legal-main {
  padding: 60px 20px;
  background-color: var(--blue-dark);
  color: var(--text-light);
  font-family: 'Inter', 'Roboto', sans-serif;
  min-height: 80vh;
}

.legal-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  background: linear-gradient(135deg, #1c2333 0%, #23305a 100%);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(17, 66, 126, 0.7);
  padding: 40px 48px;
}

.legal-title {
  font-size: 2.8rem;
  margin-bottom: 32px;
  color: var(--accent-yellow);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 5px rgba(255, 143, 0, 0.7);
  letter-spacing: 0.05em;
}

.legal-intro {
  font-size: 1.25rem;
  margin-bottom: 36px;
  line-height: 1.7;
  color: var(--blue-light);
  text-align: center;
  font-weight: 500;
  user-select: text;
}

.legal-subtitle {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--accent-yellow);
  font-weight: 700;
  border-left: 4px solid var(--blue-medium);
  padding-left: 12px;
  text-shadow: 0 1px 3px rgba(17, 66, 126, 0.6);
}

.legal-section p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 400;
  user-select: text;
}

/* Для кращої читабельності на мобілках */
@media (max-width: 600px) {
  .legal-section {
    padding: 24px 20px;
  }

  .legal-title {
    font-size: 2rem;
  }

  .legal-intro {
    font-size: 1rem;
  }

  .legal-subtitle {
    font-size: 1.3rem;
  }

  .legal-section p {
    font-size: 1rem;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 40, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn 0.4s ease-in-out;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: linear-gradient(145deg, #1c2333, #0f1829);
  color: #f5f5f5;
  padding: 48px;
  border: 2px solid #11427e;
  border-radius: 20px;
  width: 95%;
  max-width: 540px;
  min-height: 430px;
  box-shadow: 0 0 60px rgba(17, 66, 126, 0.6);
  position: relative;
  animation: slideUp 0.4s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal h2 {
  margin: 0 0 24px;
  font-size: 1.75rem;
  text-align: center;
  color: #ffa000;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-form-modal input,
.contact-form-modal textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #11427e;
  border-radius: 10px;
  background-color: #222a3b;
  color: #f5f5f5;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.25s border-color, 0.25s box-shadow;
}

.contact-form-modal input:focus,
.contact-form-modal textarea:focus {
  outline: none;
  border-color: #ffa000;
  box-shadow: 0 0 8px #ffa00066;
}

.contact-form-modal textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: block;
  margin: 0 auto;
  background-color: #ffa000;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  color: #1c2333;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px #ff8f0033;
}

.btn-submit:hover {
  background-color: #ff8f00;
  transform: translateY(-2px);
  box-shadow: 0 0 16px #ff8f00aa;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  background: transparent;
  color: #f5f5f5;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #ff8f00;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background-color: #1c2333;
  color: #f5f5f5;
  border-top: 2px solid #11427e;
  border-radius: 12px 12px 0 0;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.5s ease-out forwards;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-more {
  background-color: transparent;
  color: #ffa000;
  border: 1px solid #ffa000;
}

.btn-more:hover {
  background-color: #ffa000;
  color: #1c2333;
}

.btn-accept {
  background-color: #ffa000;
  color: #1c2333;
}

.btn-accept:hover {
  background-color: #ffb733;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* Mobile fix */
@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .cookie-actions button {
    width: 100%;
  }
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-more,
.btn-decline {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-more {
  background-color: #11427e;
  color: #f5f5f5;
}

.btn-more:hover {
  background-color: #1a5aa3;
}

.btn-decline {
  background-color: transparent;
  border: 2px solid #f5f5f5;
  color: #f5f5f5;
}

.btn-decline:hover {
  background-color: #f5f5f5;
  color: #1c2333;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 35, 51, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  font-family: 'Inter', sans-serif;
  color: #f5f5f5;
  padding: 20px;
}

.age-gate__confirm,
.age-gate__denied {
  background: linear-gradient(135deg, #0c2f55 0%, #103e7c 100%);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 30px rgba(12, 47, 85, 0.9);
  user-select: none;
  animation: fadeInScale 0.5s ease forwards;
}

.age-gate__confirm img,
.age-gate__denied img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #ffa000);
  border-radius: 12px;
}

.age-gate__confirm p,
.age-gate__denied p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.4;
}

.age-gate__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.age-gate__buttons button {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  min-width: 140px;
  user-select: none;
}

.btn-confirm {
  background: #ffb300;
  color: #0c2f55;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.7);
}

.btn-confirm:hover {
  background: #ffa000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 160, 0, 0.9);
}

.btn-deny {
  background: #8a1e1e;
  color: #f5f5f5;
  box-shadow: 0 6px 20px rgba(138, 30, 30, 0.7);
}

.btn-deny:hover {
  background: #6b1616;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 22, 22, 0.9);
}

/* Сховати елемент */
.hidden {
  display: none !important;
}

/* Анімація появи з масштабом */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}