/* style/game-reviews-lottery.css */
.page-game-reviews-lottery {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-reviews-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-lottery__hero {
  background: linear-gradient(135deg, #004AAD 0%, #0028ff 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-game-reviews-lottery__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-game-reviews-lottery__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.page-game-reviews-lottery__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFD700;
}

.page-game-reviews-lottery__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-lottery__section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-game-reviews-lottery__section--alt-bg {
  background-color: #eef4f8;
}

.page-game-reviews-lottery__section-title {
  font-size: 2.5em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-lottery__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-lottery__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-game-reviews-lottery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-lottery__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #004AAD;
  display: flex;
  flex-direction: column;
}

.page-game-reviews-lottery__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-lottery__card-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #eee;
}

.page-game-reviews-lottery__card-title {
  font-size: 1.8em;
  color: #004AAD;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-reviews-lottery__card-text {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
  margin-bottom: 20px;
  text-align: left;
}

.page-game-reviews-lottery__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-game-reviews-lottery__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #555;
}

.page-game-reviews-lottery__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-game-reviews-lottery__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
  cursor: pointer;
}

.page-game-reviews-lottery__btn--primary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
}

.page-game-reviews-lottery__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-reviews-lottery__btn--secondary {
  background-color: #004AAD;
  color: #fff;
  border: 2px solid #004AAD;
}

.page-game-reviews-lottery__btn--secondary:hover {
  background-color: #003a8d;
  transform: translateY(-3px);
}

.page-game-reviews-lottery__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-game-reviews-lottery__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

.page-game-reviews-lottery__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-lottery__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  border-bottom: 4px solid #FFD700;
}

.page-game-reviews-lottery__feature-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-lottery__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-lottery__feature-title {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-game-reviews-lottery__review-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-lottery__process-step {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  padding-top: 70px;
  text-align: center;
}

.page-game-reviews-lottery__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #004AAD;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 3px solid #004AAD;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-lottery__step-title {
  font-size: 1.5em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-game-reviews-lottery__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-lottery__tip-item {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.page-game-reviews-lottery__tip-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-lottery__tip-title {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 10px;
}

.page-game-reviews-lottery__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-lottery__promotion-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #FFD700;
  display: flex;
  flex-direction: column;
}

.page-game-reviews-lottery__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-lottery__promotion-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #eee;
}

.page-game-reviews-lottery__promotion-title {
  font-size: 1.8em;
  color: #004AAD;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-reviews-lottery__promotion-text {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-game-reviews-lottery__cta-banner {
  background: linear-gradient(90deg, #004AAD, #0028ff);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
}

.page-game-reviews-lottery__cta-content {
  max-width: 900px;
}

.page-game-reviews-lottery__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-lottery__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-reviews-lottery .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-lottery__hero-title {
    font-size: 2.5em;
  }
  .page-game-reviews-lottery__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 2em;
  }
  .page-game-reviews-lottery__grid, .page-game-reviews-lottery__features, .page-game-reviews-lottery__review-process, .page-game-reviews-lottery__tips-grid, .page-game-reviews-lottery__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-reviews-lottery__cta-title {
    font-size: 2.2em;
  }
  .page-game-reviews-lottery__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-lottery__hero {
    padding: 60px 0;
  }
  .page-game-reviews-lottery__hero-title {
    font-size: 2em;
  }
  .page-game-reviews-lottery__section {
    padding: 40px 0;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__grid, .page-game-reviews-lottery__features, .page-game-reviews-lottery__review-process, .page-game-reviews-lottery__tips-grid, .page-game-reviews-lottery__promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-lottery__card, .page-game-reviews-lottery__feature-item, .page-game-reviews-lottery__process-step, .page-game-reviews-lottery__tip-item, .page-game-reviews-lottery__promotion-card {
    padding: 25px;
  }
  .page-game-reviews-lottery__card-title, .page-game-reviews-lottery__feature-title, .page-game-reviews-lottery__step-title, .page-game-reviews-lottery__tip-title, .page-game-reviews-lottery__promotion-title {
    font-size: 1.5em;
  }
  .page-game-reviews-lottery__cta-banner {
    padding: 40px 0;
  }
  .page-game-reviews-lottery__cta-title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__cta-text {
    font-size: 1em;
  }
  .page-game-reviews-lottery__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 1.6em;
  }
  .page-game-reviews-lottery__text {
    font-size: 0.95em;
  }
  .page-game-reviews-lottery__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-reviews-lottery__cta-title {
    font-size: 1.5em;
  }
  .page-game-reviews-lottery__cta-text {
    font-size: 0.95em;
  }
}