@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: hidden;
  background: #080e37;
  color: #fff;
  position: relative;
  z-index: 0;
}
body::before {
  content: "";
  position: fixed;
  bottom: -400px;
  left: -400px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1; /* щоб не перекривало контент */
  pointer-events: none; /* щоб не заважало клікам */
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}
.age img {
  max-width: 120px;
  width: 100%;
  height: auto;
}
.age {
  display: flex;
  gap: 20px;
  align-items: center;
}
a {
  color: inherit;
  text-decoration: none;
}
li {
  list-style: none;
}
.header-respons ul li,
.header-respons ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-menu ul {
  display: flex;
  gap: 20px;
  justify-content: end;
}
.header-menu ul li {
  font-size: 14px;
  text-transform: uppercase;
}

.logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
.logo a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  gap: 10px;
}
.logo a img {
  max-width: 70px;
  width: 100%;
}
.hero {
  position: relative;
  background-image: url("/img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #080e37;
  opacity: 0.8; /* змінюй рівень затемнення тут */
  z-index: 1;
}

/* Вміст поверх затемнення */
.hero > * {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 4rem;
  text-transform: uppercase;
}
h2 {
  font-size: 2.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
h6 {
  text-transform: uppercase;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  flex: 1 1 50%;
  max-width: 50%;
}
.best-casino {
  padding: 50px 0;
  text-align: center;
  display: flex;
  align-items: center;
}
.best-container {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.best-container-title {
  text-transform: uppercase;
}

.best-block-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.best-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: #232a5c;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.best-item img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 15px;
}

.best-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.best-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.best-item ul li {
  margin-bottom: 8px;
  font-size: 12px;
  color: #f0f0f0;
}

.button {
  display: inline-block;
  background-color: #fff;
  color: #e8008a;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 4px 0 #e8008a;
}

.button:hover {
  background-color: #e8008a;
  color: #fff;
  box-shadow: 0 0 4px #fff;
}

ul {
  padding: 0;
}

.faq-container {
  display: flex;
  gap: 40px;
  padding: 100px 0;
}

.accordion-list {
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 15px;
  transition: background-color 0.3s;
}

.accordion-list .left {
  margin-right: 15px;
}

.accordion-list .icon {
  width: 30px;
  height: 30px;
  background-color: #c0392b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s;
}
.faq .section-wrapper .accordion li {
  padding: 10px;
  border: none;
  box-shadow: 0 0 3px rgba(136, 136, 136, 0.1);
}
.faq .section-wrapper .accordion li .accordion-list {
  width: auto;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.faq .section-wrapper .accordion li .accordion-list .left {
  width: 40px;
  text-align: center;
  background: transparent;
}
.faq .section-wrapper .accordion li .accordion-list .left .icon {
  width: 30px;
  height: 30px;
  background: #ff0052;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.faq .section-wrapper .accordion li .accordion-list .right {
  width: calc(100% - 40px);
}
.accordion-list {
  background-color: #232a5c;
}
.accordion-answer p {
  font-size: 13px;
  line-height: 1.8;
}
.faq-text,
.faq-img {
  flex: 1;
}
.faq-img {
  display: flex;
  align-items: center;
}
.faq-img img {
  max-width: 500px;
  width: 100%;
}

.faq-img img {
  animation: pulseZoom 3s ease-in-out infinite;
  transform-origin: center center;
}

/* Анімація: плавне збільшення і зменшення */
@keyframes pulseZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08); /* Збільшення до 108% */
  }
  100% {
    transform: scale(1);
  }
}
.hero-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 50px;
  gap: 20px;
}

.hero-img {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
}
h2 {
  text-transform: uppercase;
}
.respots-text {
  text-align: center;
}
.responsibly-text-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.responsibly-text-container img {
  max-width: 200px;
  width: 100%;
  margin: 20px 0;
}
.logo-game {
  margin-top: 50px;
}
.logo-items {
  display: flex;
  justify-content: center;
}
.logo-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  width: 33%;
  align-items: center;
  justify-content: center;
  border-left: solid 1px #ffffff3e;
  border-right: solid 1px #ffffff3e;
}
.logo-item img {
  max-width: 160px;
  width: 100%;
  margin: 30px 0;
}
.logo-item p {
  margin: 30px 0;
}

.policy-content h2 {
  color: #ff3f77;
  font-size: 28px;
  text-align: center;
  margin: 20px 0;
}

.policy-content .date {
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
}

.policy-content h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 30px;
}

.policy-content p {
  color: #ddd;
  line-height: 1.6;
  margin: 10px 0;
}

.policy-content .footer-note {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}
.hero-pol {
  background: linear-gradient(rgba(10, 11, 45, 0.85), rgba(10, 11, 45, 0.85)),
    url("/img/bg.jpg") center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
}

.hero-pol h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.hero-pol p {
  color: #f36f96;
  font-weight: 500;
  font-size: 14px;
}

.contact-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
}

.contact-form label {
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  background-color: #1a1b3c;
  color: #fff;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f36f96;
}

.contact-form button {
  padding: 12px 18px;
  background-color: #f36f96;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e52a70;
}

.menu-container ul {
  display: flex;
  justify-content: space-around;
  text-transform: uppercase;
  margin: 20px 0;
}
@media (max-width: 760px) {
  .header,
  .header-respons ul {
    flex-direction: column;
  }
  .header-menu ul {
    flex-direction: column;
    align-items: center;
  }
  .hero-text {
    max-width: 100%;
    flex: auto;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 20px;
  }
  .best-block-container,
  .faq-container,
  .logo-items {
    flex-direction: column;
  }
  .menu-container ul {
    flex-direction: column;
    align-items: center;
  }
  .logo-item {
    width: 100% !important;
    border-top: solid 1px #f0f0f02d;
  }
  .age {
    flex-direction: column;
    padding: 10px 20px;
  }
  .hero-contain {
    gap: 0;
    padding: 90px 20px;
  }
}

.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.age-popup-box {
  background: #1e1e1e;
  padding: 2rem 3rem;
  text-align: center;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px #000;
}

.age-popup-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.age-buttons button {
  padding: 0.7rem 1.5rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.age-buttons button:first-child {
  background-color: #28a745;
  color: white;
}

.age-buttons button:last-child {
  background-color: #dc3545;
  color: white;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.9rem;
}

.cookie-popup p {
  margin: 0;
}

.cookie-popup a {
  color: #ffc107;
  text-decoration: underline;
}

.cookie-popup button {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: 4px;
}