*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background-color: #0e0e0f;
  color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ageYes {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background: linear-gradient(90deg, #00bfa6, #0099f7);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 191, 166, 0.3);
  transition: all 0.3s ease;
}
.ageYes:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.ageNo {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #00bfa6;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background: transparent;
  color: #00bfa6;
  transition: all 0.3s ease;
}
.ageNo:hover {
  background: rgba(0, 191, 166, 0.1);
  transform: translateY(-1px);
}

@media (min-width: 600px) {
  .popup-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  .popup-buttons .ageYes,
  .popup-buttons .ageNo {
    width: auto;
  }
}
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}
.age-popup.hidden {
  display: none !important;
}
.age-popup .popup-content {
  background: #1e1f22;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  color: white;
}
@media (min-width: 600px) {
  .age-popup .popup-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .age-popup .popup-buttons .ageYes,
  .age-popup .popup-buttons .ageNo {
    width: auto;
  }
}
@media (min-width: 600px) {
  .age-popup .popup-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .age-popup .popup-buttons button {
    width: auto;
  }
}

.site-header {
  background-color: #121416;
  padding: 1rem 0;
}
.site-header .header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .logo img {
  height: 42px;
  margin-right: 0.75rem;
}
.site-header .logo .logo-text {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  line-height: 1.1;
  font-size: 1rem;
}
.site-header .logo .logo-text strong {
  font-weight: 600;
  letter-spacing: 1px;
}
.site-header .header-buttons {
  display: flex;
  gap: 1rem;
}
.site-header .header-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.site-header .header-buttons .btn.primary {
  background: linear-gradient(90deg, #00bfa6, #0099f7);
  color: #ffffff;
  border: none;
}
.site-header .header-buttons .btn.primary:hover {
  opacity: 0.9;
}
.site-header .header-buttons .btn.outline {
  background: transparent;
  color: #00bfa6;
  border: 2px solid #00bfa6;
}
.site-header .header-buttons .btn.outline:hover {
  background: rgba(0, 191, 166, 0.1);
}
@media (max-width: 768px) {
  .site-header .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .site-header .logo {
    justify-content: center;
    width: 100%;
  }
  .site-header .logo img {
    height: 38px;
  }
  .site-header .logo .logo-text {
    font-size: 0.95rem;
  }
  .site-header .header-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .site-header .header-buttons .btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 480px) {
  .site-header .header-container {
    padding: 0 1rem;
  }
  .site-header .logo img {
    height: 34px;
  }
  .site-header .logo-text {
    font-size: 0.9rem;
  }
  .site-header .btn {
    font-size: 0.95rem;
  }
}

.lottery-hero {
  background: #121416;
  padding-bottom: 4rem;
}
.lottery-hero__top-image {
  display: flex;
  justify-content: center;
  background-color: #121416;
}
.lottery-hero__top-image img {
  width: 100%;
  max-width: 1200px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-bottom: 4px solid #0099f7;
}
.lottery-hero__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}
.lottery-hero__text {
  flex: 1 1 50%;
}
.lottery-hero__text h2 {
  font-size: 2rem;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1rem;
}
.lottery-hero__text p {
  color: #b3b3b3;
  font-size: 1rem;
}
.lottery-hero__right {
  flex: 1 1 40%;
  text-align: center;
}
.lottery-hero__right .lottery-hero__draw {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.lottery-hero__right .countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lottery-hero__right .countdown .countdown-item {
  background: #2d2f70;
  color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  width: 70px;
}
.lottery-hero__right .countdown .countdown-item .time {
  font-size: 1.6rem;
  font-weight: bold;
}
.lottery-hero__right .countdown .countdown-item .label {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.lottery-hero__right .btn.primary {
  background: linear-gradient(90deg, #00bfa6, #0099f7);
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.lottery-hero__right .btn.primary:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .lottery-hero__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .lottery-hero__text, .lottery-hero__right {
    flex: 1 1 100%;
  }
  .lottery-hero .countdown {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .lottery-hero__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .lottery-hero__text, .lottery-hero__right {
    flex: 1 1 100%;
  }
  .lottery-hero__text h2 {
    font-size: 1.5rem;
  }
  .lottery-hero__text p {
    font-size: 0.95rem;
  }
  .lottery-hero .countdown {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .lottery-hero .countdown .countdown-item {
    width: 60px;
    padding: 0.75rem;
  }
  .lottery-hero .countdown .countdown-item .time {
    font-size: 1.3rem;
  }
  .lottery-hero .countdown .countdown-item .label {
    font-size: 0.7rem;
  }
  .lottery-hero .btn.primary {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .lottery-hero__top-image img {
    height: 180px;
    border-bottom: 3px solid #0099f7;
  }
  .lottery-hero__text h2 {
    font-size: 1.3rem;
  }
  .lottery-hero__text p {
    font-size: 0.9rem;
  }
  .lottery-hero .countdown .countdown-item {
    width: 50px;
    padding: 0.5rem;
  }
  .lottery-hero .countdown .countdown-item .time {
    font-size: 1.1rem;
  }
  .lottery-hero .countdown .countdown-item .label {
    font-size: 0.65rem;
  }
  .lottery-hero .btn.primary {
    font-size: 0.9rem;
    padding: 0.75rem 1.2rem;
  }
}

.trust-block {
  background: #121416;
  padding: 4rem 0;
}
.trust-block__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.trust-block__image {
  flex: 1 1 40%;
}
.trust-block__image img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 600px;
}
.trust-block__content {
  flex: 1 1 55%;
  color: #ffffff;
}
.trust-block__content .trust-block__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.trust-block__content .trust-block__item {
  margin-bottom: 2rem;
}
.trust-block__content .trust-block__item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.trust-block__content .trust-block__item h3 span {
  color: #00bfa6;
  margin-right: 0.5rem;
}
.trust-block__content .trust-block__item p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .trust-block__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trust-block__image, .trust-block__content {
    flex: 1 1 100%;
  }
  .trust-block__image img {
    max-height: 400px;
  }
}
@media (max-width: 768px) {
  .trust-block__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .trust-block__image, .trust-block__content {
    flex: 1 1 100%;
  }
  .trust-block__image img {
    max-height: 400px;
  }
  .trust-block .trust-block__title {
    font-size: 1.5rem;
  }
  .trust-block .trust-block__item h3 {
    font-size: 1.1rem;
  }
  .trust-block .trust-block__item p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .trust-block .trust-block__title {
    font-size: 1.3rem;
  }
  .trust-block .trust-block__item {
    margin-bottom: 1.5rem;
  }
  .trust-block .trust-block__item h3 {
    font-size: 1rem;
  }
  .trust-block .trust-block__item p {
    font-size: 0.9rem;
  }
  .trust-block__image img {
    max-height: 300px;
  }
}

.testimonials {
  background: #121416;
  padding: 4rem 0;
  color: #ffffff;
}
.testimonials .section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.testimonials .testimonial-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonials .testimonial {
  background: #2d2f70;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 320px;
  flex: 1;
  position: relative;
}
.testimonials .testimonial .testimonial-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #b3b3b3;
}
.testimonials .testimonial .testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  text-align: right;
  color: #ffffff;
}
@media (max-width: 768px) {
  .testimonials .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .testimonials .testimonial-grid {
    gap: 1rem;
  }
  .testimonials .testimonial {
    max-width: 100%;
    padding: 1.25rem;
  }
  .testimonials .testimonial .testimonial-text {
    font-size: 0.95rem;
  }
  .testimonials .testimonial .testimonial-name {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .testimonials .section-title {
    font-size: 1.3rem;
  }
  .testimonials .testimonial {
    padding: 1rem;
  }
  .testimonials .testimonial .testimonial-text {
    font-size: 0.9rem;
  }
  .testimonials .testimonial .testimonial-name {
    font-size: 0.85rem;
  }
}

.numbers {
  background: #121416;
  padding: 4rem 0;
  text-align: center;
  color: #ffffff;
}
.numbers .section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.numbers .numbers-description {
  color: #b3b3b3;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.numbers .numbers-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.numbers .numbers-grid .number-category {
  text-align: center;
}
.numbers .numbers-grid .number-category .icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.numbers .numbers-grid .number-category .number-balls {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.numbers .numbers-grid .number-category .number-balls span {
  background: #00bfa6;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.numbers .numbers-grid .number-category .number-balls.cold span {
  background: #0099f7;
}
@media (max-width: 768px) {
  .numbers .section-title {
    font-size: 1.4rem;
  }
  .numbers .numbers-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .numbers .numbers-grid {
    gap: 1.5rem;
  }
  .numbers .numbers-grid .number-category .icon {
    font-size: 1.3rem;
  }
  .numbers .numbers-grid .number-category .number-balls span {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .numbers .section-title {
    font-size: 1.2rem;
  }
  .numbers .numbers-description {
    font-size: 0.9rem;
  }
  .numbers .numbers-grid {
    gap: 1.2rem;
  }
  .numbers .numbers-grid .number-category .icon {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  .numbers .numbers-grid .number-category .number-balls span {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

.footer-note {
  background: #b60c5d;
  padding: 1rem 0;
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
}
.footer-note a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-note a:hover {
  text-decoration: none;
}

.steps {
  background-color: #121416;
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.steps__title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.steps__subtitle {
  color: #b3b3b3;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.steps__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.steps .step {
  background-color: #2d2f70;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  max-width: 700px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
.steps .step__icon {
  font-size: 2rem;
  margin-top: 0.25rem;
  color: #00bfa6;
}
.steps .step__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.steps .step__content p {
  font-size: 1rem;
  color: #b3b3b3;
}
.steps .arrow {
  font-size: 2rem;
  color: #0099f7;
}
@media (max-width: 600px) {
  .steps .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .steps .step__icon {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  .steps__title {
    font-size: 1.5rem;
  }
  .steps__subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .steps .step {
    padding: 1.25rem 1.5rem;
  }
  .steps .step__icon {
    font-size: 1.8rem;
  }
  .steps .step__content h3 {
    font-size: 1.1rem;
  }
  .steps .step__content p {
    font-size: 0.95rem;
  }
  .steps .arrow {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .steps__title {
    font-size: 1.3rem;
  }
  .steps__subtitle {
    font-size: 0.9rem;
  }
  .steps .step {
    padding: 1rem;
  }
  .steps .step__icon {
    font-size: 1.6rem;
  }
  .steps .step__content h3 {
    font-size: 1rem;
  }
  .steps .step__content p {
    font-size: 0.9rem;
  }
  .steps .arrow {
    font-size: 1.6rem;
  }
}

.legal-footer {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #2c2c2c;
  text-align: center;
}
.legal-footer .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-footer a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.legal-footer a:hover {
  text-decoration: none;
  color: #00bfa6;
}
@media (max-width: 768px) {
  .legal-footer .container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .legal-footer a {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .legal-footer a {
    font-size: 0.9rem;
  }
}

.responsible-play {
  background: #121416;
  padding: 3rem 0;
  color: #ffffff;
}
.responsible-play .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.responsible-play .logos img {
  height: auto;
  max-height: 70px;
  width: auto;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.3s ease;
}
.responsible-play .logos img:hover {
  transform: scale(1.05);
}
.responsible-play .responsible-box {
  background: #1b1e22;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.responsible-play .responsible-box .icon-18plus {
  margin-bottom: 1rem;
}
.responsible-play .responsible-box .icon-18plus img {
  height: 50px;
}
.responsible-play .responsible-box h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.responsible-play .responsible-box p {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 1rem;
}
.responsible-play .responsible-box ul {
  text-align: left;
  margin: 1rem auto;
  max-width: 700px;
  padding-left: 1.2rem;
}
.responsible-play .responsible-box ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.responsible-play .responsible-box ul li a {
  color: #00bfa6;
  text-decoration: underline;
}
.responsible-play .responsible-box ul li a:hover {
  text-decoration: none;
}
.responsible-play .legal-footer {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #2c2c2c;
  text-align: center;
}
.responsible-play .legal-footer a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0 1rem;
}
.responsible-play .legal-footer a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .responsible-play .logos {
    flex-direction: column;
    align-items: center;
  }
  .responsible-play .responsible-box {
    text-align: left;
  }
  .responsible-play .legal-footer {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .responsible-play .logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .responsible-play .logos img {
    max-width: 120px;
    max-height: 60px;
  }
  .responsible-play .responsible-box {
    padding: 1.5rem;
    text-align: center;
  }
  .responsible-play .responsible-box h2 {
    font-size: 1.3rem;
  }
  .responsible-play .responsible-box p {
    font-size: 0.95rem;
  }
  .responsible-play .responsible-box ul {
    padding-left: 1rem;
  }
  .responsible-play .responsible-box ul li {
    font-size: 0.95rem;
  }
  .responsible-play .legal-footer {
    font-size: 0.9rem;
    padding: 1rem;
  }
  .responsible-play .legal-footer a {
    margin: 0 0.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .responsible-play .logos {
    gap: 1rem;
  }
  .responsible-play .logos img {
    max-width: 100px;
    max-height: 50px;
  }
  .responsible-play .responsible-box {
    padding: 1.25rem;
  }
  .responsible-play .responsible-box h2 {
    font-size: 1.2rem;
  }
  .responsible-play .responsible-box p {
    font-size: 0.9rem;
  }
  .responsible-play .responsible-box ul {
    padding-left: 0.8rem;
  }
  .responsible-play .responsible-box ul li {
    font-size: 0.9rem;
  }
  .responsible-play .legal-footer {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
  .responsible-play .legal-footer a {
    display: block;
    margin: 0.25rem 0;
  }
}

.privacy-policy {
  background-color: #121416;
  color: #ffffff;
  padding: 4rem 0;
}
.privacy-policy .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.privacy-policy__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}
.privacy-policy__intro {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.privacy-policy h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #00bfa6;
}
.privacy-policy p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.privacy-policy a {
  color: #00bfa6;
  text-decoration: underline;
}
.privacy-policy a:hover {
  text-decoration: none;
}
.privacy-policy__date {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #777;
  text-align: center;
}

.cookies-policy {
  background-color: #121416;
  color: #ffffff;
  padding: 4rem 0;
}
.cookies-policy .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cookies-policy__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-align: center;
}
.cookies-policy__intro {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.cookies-policy h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #00bfa6;
}
.cookies-policy p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.cookies-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.cookies-policy ul li {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 0.75rem;
}
.cookies-policy ul li strong {
  color: #00bfa6;
}
.cookies-policy__date {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #777;
  text-align: center;
}

.terms-policy {
  background-color: #121416;
  color: #ffffff;
  padding: 4rem 0;
}
.terms-policy .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.terms-policy__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}
.terms-policy__intro {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.terms-policy h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #00bfa6;
}
.terms-policy p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.terms-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.terms-policy ul li {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 0.75rem;
}
.terms-policy__date {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #777;
  text-align: center;
}

.responsible-gambling-policy {
  background-color: #121416;
  color: #ffffff;
  padding: 4rem 0;
}
.responsible-gambling-policy .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.responsible-gambling-policy__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}
.responsible-gambling-policy__intro {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.responsible-gambling-policy h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #00bfa6;
}
.responsible-gambling-policy p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.responsible-gambling-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.responsible-gambling-policy ul li {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 0.75rem;
}
.responsible-gambling-policy ul li a {
  color: #00bfa6;
  text-decoration: underline;
}
.responsible-gambling-policy ul li a:hover {
  text-decoration: none;
}
.responsible-gambling-policy__date {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #777;
  text-align: center;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-modal.hidden {
  display: none !important;
}
.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.contact-modal__content {
  position: relative;
  background: #1b1e22;
  padding: 2rem;
  border-radius: 12px;
  z-index: 10000;
  max-width: 600px;
  width: 90%;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}
.contact-modal__close:hover {
  color: #00bfa6;
}
.contact-modal .contact-form-wrapper {
  text-align: center;
}
.contact-modal .contact-form-wrapper .contact-form-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.contact-modal .contact-form-wrapper .contact-form-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #b3b3b3;
}
.contact-modal .contact-form-wrapper .af-body {
  text-align: left;
}
.contact-modal .contact-form-wrapper .af-body .af-element {
  margin-bottom: 1rem;
}
.contact-modal .contact-form-wrapper .af-body .af-element label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contact-modal .contact-form-wrapper .af-body .af-element input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  background: #2a2d31;
  color: #fff;
}
.contact-modal .contact-form-wrapper .af-body .af-element .submit {
  background: linear-gradient(90deg, #00bfa6, #0099f7);
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}
.contact-modal .contact-form-wrapper .af-body .af-element .submit:hover {
  opacity: 0.9;
}
.contact-modal .contact-form-wrapper .af-body .af-element .privacyPolicy {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.contact-modal .contact-form-wrapper .af-body .af-element .privacyPolicy a {
  color: #00bfa6;
  text-decoration: underline;
}
@media (max-width: 500px) {
  .contact-modal__content {
    padding: 1rem;
  }
  .contact-modal .contact-form-title {
    font-size: 1.5rem;
  }
  .contact-modal .contact-form-desc {
    font-size: 0.95rem;
  }
}

.auth-section {
  background: #121416;
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.auth-section .auth-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.auth-section .auth-subtitle {
  color: #b3b3b3;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.auth-section .auth-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.auth-section .auth-form .form-heading {
  margin: 2rem 0 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.auth-section .auth-form .form-group {
  margin-bottom: 1rem;
}
.auth-section .auth-form .form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.auth-section .auth-form .form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: #1e1f24;
  border: none;
  color: #ffffff;
  font-size: 1rem;
}
.auth-section .auth-form .form-row {
  display: flex;
  gap: 1rem;
}
.auth-section .auth-form .form-row .form-group {
  flex: 1;
}
@media (max-width: 600px) {
  .auth-section .auth-form .form-row {
    flex-direction: column;
  }
}
.auth-section .auth-form .password-wrapper {
  position: relative;
}
.auth-section .auth-form .password-wrapper input {
  width: 100%;
}
.auth-section .auth-form .password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1rem;
  color: #888;
}
.auth-section .auth-form .checkbox label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.auth-section .auth-form .checkbox label a {
  color: #00bfa6;
  text-decoration: underline;
}
.auth-section .auth-form .checkbox label a:hover {
  text-decoration: none;
}
.auth-section .auth-form .submit {
  text-align: center;
  margin-top: 2rem;
}
.auth-section .auth-form .submit .btn.primary {
  background: linear-gradient(90deg, #00bfa6, #0099f7);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}
.auth-section .auth-form .submit .btn.primary:hover {
  opacity: 0.9;
}/*# sourceMappingURL=style.css.map */