/* style/popular-games-top-live-tables.css */
.page-popular-games-top-live-tables {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-popular-games-top-live-tables__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-popular-games-top-live-tables__container--center {
  text-align: center;
}

.page-popular-games-top-live-tables__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-popular-games-top-live-tables__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-popular-games-top-live-tables__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-popular-games-top-live-tables__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-popular-games-top-live-tables__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-popular-games-top-live-tables__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-popular-games-top-live-tables__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-popular-games-top-live-tables__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-popular-games-top-live-tables__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-popular-games-top-live-tables__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-popular-games-top-live-tables__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  margin-top: 30px;
}

.page-popular-games-top-live-tables__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 600px;
  opacity: 0.7;
  z-index: 0;
}

.page-popular-games-top-live-tables__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-popular-games-top-live-tables__section {
  padding: 60px 0;
  text-align: left;
}

.page-popular-games-top-live-tables__section--intro {
  background-color: #f0f0f0;
  color: #333;
}

.page-popular-games-top-live-tables__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-popular-games-top-live-tables__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.page-popular-games-top-live-tables__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-popular-games-top-live-tables__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-popular-games-top-live-tables__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-popular-games-top-live-tables__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-popular-games-top-live-tables__game-card-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 15px 10px;
}

.page-popular-games-top-live-tables__game-card-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-popular-games-top-live-tables__section--features {
  background-color: #003366;
  color: #FFFFFF;
}

.page-popular-games-top-live-tables__section--features .page-popular-games-top-live-tables__section-title {
  color: #FFD700;
}

.page-popular-games-top-live-tables__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-popular-games-top-live-tables__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #1a4d80; /* Slightly lighter blue */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-popular-games-top-live-tables__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-popular-games-top-live-tables__feature-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-popular-games-top-live-tables__feature-item p {
  font-size: 0.95em;
  color: #E0E0E0;
}

.page-popular-games-top-live-tables__section--promotions {
  background-color: #FFFFFF;
  color: #333;
}

.page-popular-games-top-live-tables__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-popular-games-top-live-tables__promo-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #444;
}

.page-popular-games-top-live-tables__promo-list li strong {
  color: #003366;
}

.page-popular-games-top-live-tables__promo-callout {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  font-size: 1.1em;
  color: #666;
}

.page-popular-games-top-live-tables__section--getting-started {
  background-color: #f0f0f0;
  color: #333;
}

.page-popular-games-top-live-tables__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-popular-games-top-live-tables__steps-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-popular-games-top-live-tables__steps-list li h4 {
  font-size: 1.6em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
  flex-basis: 150px;
  flex-shrink: 0;
  position: relative;
  padding-left: 40px;
}

.page-popular-games-top-live-tables__steps-list li h4::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  line-height: 1;
}

.page-popular-games-top-live-tables__steps-list li p {
  flex-grow: 1;
  font-size: 1.05em;
  color: #555;
  margin-left: 20px;
}

.page-popular-games-top-live-tables__section--tips {
  background-color: #FFFFFF;
  color: #333;
}

.page-popular-games-top-live-tables__tips-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-popular-games-top-live-tables__tips-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-popular-games-top-live-tables__tips-list li strong {
  color: #003366;
}

.page-popular-games-top-live-tables__image-full-width {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-popular-games-top-live-tables__section--security {
  background-color: #003366;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-popular-games-top-live-tables__section--security .page-popular-games-top-live-tables__section-title {
  color: #FFD700;
}

.page-popular-games-top-live-tables__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-popular-games-top-live-tables__security-list li {
  background-color: #1a4d80;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-popular-games-top-live-tables__security-list li strong {
  color: #FFD700;
}

.page-popular-games-top-live-tables__image-small-right {
  width: 150px;
  height: auto;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-popular-games-top-live-tables__section--cta-final {
  background-color: #FFD700;
  color: #003366;
  text-align: center;
  padding: 80px 0;
}

.page-popular-games-top-live-tables__section--cta-final .page-popular-games-top-live-tables__section-title {
  color: #003366;
}

.page-popular-games-top-live-tables__section--cta-final .page-popular-games-top-live-tables__section-subtitle {
  color: #333;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-popular-games-top-live-tables__hero-title {
    font-size: 2.8em;
  }
  .page-popular-games-top-live-tables__section-title {
    font-size: 2em;
  }
  .page-popular-games-top-live-tables__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-popular-games-top-live-tables__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-popular-games-top-live-tables__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-popular-games-top-live-tables__hero-title {
    font-size: 2.2em;
  }
  .page-popular-games-top-live-tables__hero-description {
    font-size: 1em;
  }
  .page-popular-games-top-live-tables__section-title {
    font-size: 1.8em;
  }
  .page-popular-games-top-live-tables__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-popular-games-top-live-tables__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-popular-games-top-live-tables__hero-image-wrapper {
    display: none;
  }
  .page-popular-games-top-live-tables__steps-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-popular-games-top-live-tables__steps-list li h4 {
    padding-left: 0;
    margin-bottom: 5px;
  }
  .page-popular-games-top-live-tables__steps-list li h4::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
  .page-popular-games-top-live-tables__steps-list li p {
    margin-left: 0;
  }
  .page-popular-games-top-live-tables__image-small-right {
    float: none;
    margin: 20px auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-popular-games-top-live-tables__hero-title {
    font-size: 1.8em;
  }
  .page-popular-games-top-live-tables__section-title {
    font-size: 1.5em;
  }
  .page-popular-games-top-live-tables__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-popular-games-top-live-tables__game-grid {
    grid-template-columns: 1fr;
  }
  .page-popular-games-top-live-tables__features-grid {
    grid-template-columns: 1fr;
  }
  .page-popular-games-top-live-tables__section {
    padding: 40px 0;
  }
}