@charset "UTF-8";
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1a002f;
  color: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1a002f;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.site-header .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .header-container a {
  display: inline-block;
}
.site-header .header-container a img {
  max-height: 80px;
  height: auto;
  transition: transform 0.3s ease;
}
.site-header .header-container a img:hover {
  transform: scale(1.05);
}

.hero-section {
  position: relative;
  background: url("/assets/img/hero.png") no-repeat center center;
  background-size: cover;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #ffffff;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-section .hero-content .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.hero-section .hero-content .hero-title span {
  color: #f7a302;
}
.hero-section .hero-content .hero-offer-box {
  background: rgba(26, 0, 47, 0.85);
  padding: 1.8rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid #f7a302;
}
.hero-section .hero-content .hero-offer-box .offer-line {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-section .hero-content .hero-offer-box .offer-amount {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #f7a302;
  margin-bottom: 0.5rem;
}
.hero-section .hero-content .hero-offer-box .offer-daily {
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-section .hero-content .sign-up-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #f7a302;
  color: #1a002f;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-section .hero-content .sign-up-btn:hover {
  background: #c48202;
}

.security-section {
  background-color: #130022;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}
.security-section .container {
  max-width: 900px;
  background: rgba(26, 0, 47, 0.85);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.security-section .container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}
.security-section .container .security-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .security-section .container .security-content {
    grid-template-columns: 1fr 1fr;
  }
}
.security-section .container .security-content .security-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.security-section .container .security-content .security-item i {
  font-size: 2rem;
  color: #f7a302;
  margin-bottom: 1rem;
}
.security-section .container .security-content .security-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}
.security-section .container .security-content .security-item:hover {
  transform: translateY(-5px);
}

.faq-section {
  background-color: #130022;
  padding: 4rem 2rem;
}
.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .container h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(247, 163, 2, 0.6);
}
.faq-section .container .faq-item {
  background: rgba(26, 0, 47, 0.9);
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.faq-section .container .faq-item:hover {
  transform: translateY(-3px);
}
.faq-section .container .faq-item .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.faq-section .container .faq-item .faq-question:hover {
  background: rgba(247, 163, 2, 0.15);
  color: #f7a302;
}
.faq-section .container .faq-item .faq-question .arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.faq-section .container .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-section .container .faq-item .faq-answer p {
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}
.faq-section .container .faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1rem;
}
.faq-section .container .faq-item.active .arrow {
  transform: rotate(180deg);
}

.site-footer {
  background-color: black;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
}
.site-footer .footer-top-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.site-footer .footer-top-line p {
  font-size: 1.3rem;
  font-weight: 600;
}
.site-footer .footer-top-line .footer-signup-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #f7a302;
  color: #1a002f;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(247, 163, 2, 0.5);
  transition: background 0.3s ease;
}
.site-footer .footer-top-line .footer-signup-btn:hover {
  background: #c48202;
}
.site-footer .footer-links {
  margin-bottom: 2rem;
}
.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.site-footer .footer-links ul li a:hover {
  color: #f7a302;
}
.site-footer .footer-logos {
  margin-bottom: 2rem;
}
.site-footer .footer-logos p {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer .footer-logos .partners-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.site-footer .footer-logos .partners-line img {
  max-height: 100px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.site-footer .footer-logos .partners-line img:hover {
  opacity: 1;
}
.site-footer .footer-logos .payments {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer .footer-logos .payments img {
  max-height: 40px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.site-footer .footer-logos .payments img:hover {
  opacity: 1;
}
.site-footer .footer-legal {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.site-footer .footer-legal p {
  margin: 0.3rem 0;
}

.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.age-popup .age-popup-content {
  background: #1a002f;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
.age-popup .age-popup-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f7a302;
}
.age-popup .age-popup-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.age-popup .age-popup-content button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #f7a302;
  color: #1a002f;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(247, 163, 2, 0.6);
  transition: background 0.3s ease;
}
.age-popup .age-popup-content button:hover {
  background: #c48202;
}
.age-popup .age-popup-content small {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.age-popup .age-popup-content small a {
  color: #f7a302;
  text-decoration: underline;
}
.age-popup .age-popup-content small a:hover {
  text-decoration: none;
}

.terms-section {
  background-color: #1a002f;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 0 15px rgba(247, 163, 2, 0.4);
  color: #e1dede;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.privacy-section {
  background-color: #1a002f;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 0 15px rgba(247, 163, 2, 0.4);
  color: #e1dede;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.responsible-gaming-section {
  background-color: #1a002f;
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 0 15px rgba(247, 163, 2, 0.4);
  color: #e1dede;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Заголовки */
.terms-section h1,
.privacy-section h1,
.responsible-gaming-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f7a302;
  text-align: center;
}

.terms-section h2,
.privacy-section h2,
.responsible-gaming-section h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #f7a302;
  padding-left: 0.75rem;
  color: #f7a302;
}

.terms-section h3,
.privacy-section h3,
.responsible-gaming-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #f7a302;
}

/* Текст */
.terms-section p,
.privacy-section p,
.responsible-gaming-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #e1dede;
}

/* Списки */
.terms-section ul,
.privacy-section ul,
.responsible-gaming-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.terms-section ul li,
.privacy-section ul li,
.responsible-gaming-section ul li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #ccc;
}

.terms-section ul li strong,
.privacy-section ul li strong,
.responsible-gaming-section ul li strong {
  color: #f7a302;
}

/* Ссылки */
.terms-section a,
.privacy-section a,
.responsible-gaming-section a {
  color: #f7a302;
  text-decoration: underline;
}

.terms-section a:hover,
.privacy-section a:hover,
.responsible-gaming-section a:hover {
  color: #fdb62f;
}

/* Горизонтальная линия */
.terms-section hr,
.privacy-section hr,
.responsible-gaming-section hr {
  border: none;
  border-top: 1px solid rgba(247, 163, 2, 0.5);
  margin: 2.5rem 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .terms-section h1,
  .privacy-section h1,
  .responsible-gaming-section h1 {
    font-size: 2.2rem;
  }
  .terms-section h2,
  .privacy-section h2,
  .responsible-gaming-section h2 {
    font-size: 1.6rem;
  }
  .terms-section h3,
  .privacy-section h3,
  .responsible-gaming-section h3 {
    font-size: 1.25rem;
  }
  .terms-section p,
  .privacy-section p,
  .responsible-gaming-section p,
  .terms-section ul li,
  .privacy-section ul li,
  .responsible-gaming-section ul li {
    font-size: 1rem;
  }
  .container {
    padding: 0 1rem;
  }
}/*# sourceMappingURL=style.css.map */