/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px 5%; */
  padding: 10px 0;
  flex-wrap: wrap;
}

.logo {
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #ff32af;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.login-nav-btn {
  background: #ff32af;
  color: #ffd44c;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 2px 4px 0 #000;
  font-weight: bold;
  text-decoration: none;
}

/* Hero Content */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 5px 5%; */
  padding: 10px 0;
  flex-wrap: wrap;
}

.left {
  flex: 1 1 200px;
}

.title-image {
  max-width: 100%;
  height: auto;
}

.date {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #e2d2d2;
  text-decoration: none;
  display: inline-block;
}

.buy-btn {
  background-color: transparent;
  color: white;
}

.login-btn {
  background-color: #681919;
  color: white;
  border: none;
}

/* Right image */
.right {
  flex: 1 1 300px;
  text-align: center;
}

.superdraw-img {
  max-width: 300px;
  max-width: 200px;
  height: auto;

  @media (max-width: 768px) {
    display: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    /* flex-direction: column; */
    display: block;
    text-align: center;
    padding: 40px 5%;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .login-nav-btn {
    margin-top: 10px;
  }
}

.promo-section {
  background-color: #6285cb;
  /* padding: 60px 5%; */
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}

.promo-section h2 {
  color: var(--text-color);
  /* font-size: 28px; */
  font-weight: bold;
  margin-bottom: 40px;
}

.promo-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 30px; */
}

.promo-cards h3 {
  font-size: 20px;
}

.promo-cards img {
  border-radius: 1rem;
}

.promo-card {
  flex: 1 1 30%;
  background-color: transparent;
  border-radius: 15px;
  text-align: center;
}

.promo-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.promo-card img {
  max-width: 100%;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-cards {
    flex-direction: column;
    align-items: center;
  }

  .promo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .promo-card h3 {
    font-size: 16px;
  }

  .promo-section h2 {
    font-size: 22px;
  }
}

.reasons-section {
  text-align: center;
  padding: 60px 0;
}

.reasons-title {
  font-size: 2rem;
  /* color: #467599; */
  margin-bottom: 30px;
  font-weight: bold;
}

.reasons-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.reason {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
}

.reason img {
  width: 100px;
  height: 100px;
}

.reason p {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 500;
}


/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .reasons-icons {
    flex-direction: column;
    align-items: center;
  }

  .reason {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .reasons-title {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}

.customer-support {
  /* background-color: #6285cb; */
  /* padding: 50px 20px; */
  padding: 50px 0;
  text-align: center;
  color: var(--text-color);
}

.customer-support h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.customer-support p.subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.support-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.support-card {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.customer-support img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.customer-support p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.customer-support .btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #e26309;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}

.payment-logos {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 3rem; */
}

.payment-logos img {
  height: 40px;
  margin: 10px !important;
}


/* 🔄 Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .support-cards {
    flex-direction: column;
    align-items: center;
  }

  .support-card {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .customer-support h2 {
    font-size: 1.5rem;
  }

  .customer-support p.subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .payment-logos {
    justify-content: center;
    /* gap: 15px; */
  }

  .payment-logos img {
    height: 30px;
    width: auto;
  }
}

@media (max-width: 600px) {
  footer {
    font-size: 13px;
    padding: 1.5rem 1rem;
  }

  footer nav a {
    display: inline-block;
    margin: 0.4rem 0.3rem;
  }

  footer img {
    height: 40px !important;
  }
}

footer {
  line-height: 2rem;
}

.lottery-selection {
  width: 100%;
  /* max-width: 600px; */
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.lottery-selection__section {
  margin-bottom: 20px;
}

.lottery-selection__step {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.lottery-selection__step-number {
  background-color: #007bff;
  color: #000000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.lottery-selection__dropdown {
  width: 100%;
}

.lottery-selection__dropdown-select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.lottery-selection__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lottery-selection__option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.lottery-selection__option--checkbox {
  align-items: center;
}

.lottery-selection__option-title {
  font-weight: bold;
}

.lottery-selection__option-description {
  font-size: 12px;
  color: #6c757d;
}

.lottery-selection__radio,
.lottery-selection__checkbox {
  margin-right: 5px;
}

.lottery-selection__or {
  padding: 0 15px;
  color: #6c757d;
  font-weight: bold;
}

.contacts {
  padding-bottom: 30px;
}

.lottery-selection__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}

.lottery-selection__button {
  background-color: #ff5722;
  color: #040404;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.lottery-selection__button:hover {
  background-color: #e64a19;
}

.hero__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 40px;
}

.hero__content {
  flex: 1 1 55%;
  min-width: 300px;
}

.image {
  flex: 1 1 40%;
  min-width: 250px;
}



@media (max-width: 768px) {
  .hero__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero__content,
  .hero__image {
    width: 100%;
  }
}

/* @media (max-width: 768px) {
  section>div {
    flex-direction: column !important;
    text-align: center;
  }
} */

details {
  border: 1px solid #560bad;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
}

summary {
  font-weight: bold;
  cursor: pointer;
  color: white;
  outline: none;
}

summary::marker {
  font-size: 1.2em;
}

details[open] summary {
  color: white;
}

details p {
  margin: 10px 0 0 0;
  padding-top: 5px;
  color: white;
}

.card {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #95b708;
  margin: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.card-content.one-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}


.card-logo {
  background: #000000;
  padding: 20px;
  flex: 1 1 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo img {
  max-width: 100%;
  height: auto;
}

.card-content {
  flex: 2 1 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #000;
}

.circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 8px solid #0864b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #2db2bd;
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 20px;
  margin: 10px 0;
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  color: orange;
}

.bonus {
  font-size: 18px;
  font-weight: bold;

  color: #222;
}

.casino-cta {
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.play-now-link {
  text-decoration: none;
  background: #fff;
  color: #2db2bd;
  border: 2px solid #2db2bd;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.play-now-link:hover {
  background: #2d79bd;
  color: #fff;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    align-items: stretch;
  }

  .casino-logo,
  .casino-cta {
    justify-content: center;
    flex: 1 1 100%;
  }

  .card-content {
    text-align: center;
  }
}
