body {
  margin: 0;
  font-family: "Oswald", 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 .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-info-section {
  background-color: #130022;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}
.security-info-section .container {
  max-width: 800px;
  background: rgba(26, 0, 47, 0.85);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}
.security-info-section .container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  font-family: "Oswald", sans-serif;
}
.security-info-section .container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.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: #130022;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}
.terms-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.4);
  text-align: left;
}
.terms-section .container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  font-family: "Oswald", sans-serif;
}
.terms-section .container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #ffffff;
}
.terms-section .container p strong {
  color: #f7a302;
}

.privacy-section {
  background-color: #130022;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}
.privacy-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.4);
  text-align: left;
}
.privacy-section .container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  font-family: "Oswald", sans-serif;
}
.privacy-section .container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #ffffff;
}
.privacy-section .container p strong {
  color: #f7a302;
}

.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;
}

.responsible-section {
  background-color: #130022;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}
.responsible-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.4);
  text-align: left;
}
.responsible-section .container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  font-family: "Oswald", sans-serif;
}
.responsible-section .container p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #ffffff;
}
.responsible-section .container p strong {
  color: #f7a302;
}/*# sourceMappingURL=style.css.map */