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

.page-resources-lottery-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-lottery-strategy__hero-section {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-lottery-strategy__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(45deg);
  animation: page-resources-lottery-strategy__hero-shine 15s infinite linear;
}

@keyframes page-resources-lottery-strategy__hero-shine {
  0% { transform: translate(-100%, -100%) rotate(45deg); }
  100% { transform: translate(100%, 100%) rotate(45deg); }
}

.page-resources-lottery-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff; /* Đảm bảo màu trắng trên nền gradient */
  position: relative;
  z-index: 1;
}

.page-resources-lottery-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Màu xám nhạt để dễ đọc trên nền sáng */
  position: relative;
  z-index: 1;
}

.page-resources-lottery-strategy__section {
  padding: 60px 0;
}

.page-resources-lottery-strategy__section:nth-of-type(odd) {
  background-color: #f8f9fa; /* Nền xám nhạt */
}

.page-resources-lottery-strategy__section-title {
  font-size: 2.5em;
  color: #007bff; /* Màu chủ đạo */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-lottery-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Màu phụ đạo */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-resources-lottery-strategy__intro p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
  color: #444;
}

.page-resources-lottery-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-lottery-strategy__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-lottery-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-lottery-strategy__card-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-lottery-strategy__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-lottery-strategy__card-description {
  font-size: 1em;
  color: #555;
}

.page-resources-lottery-strategy__strategy-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #ffc107;
}

.page-resources-lottery-strategy__strategy-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-resources-lottery-strategy__strategy-item p {
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

.page-resources-lottery-strategy__strategy-item ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-resources-lottery-strategy__strategy-item li {
  margin-bottom: 8px;
}

.page-resources-lottery-strategy__content-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-lottery-strategy__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-lottery-strategy__tip-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-resources-lottery-strategy__tip-card:hover {
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-lottery-strategy__tip-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-lottery-strategy__tip-card p {
  color: #555;
  margin-bottom: 15px;
}

.page-resources-lottery-strategy__platform-info {
  text-align: center;
  background-color: #e9ecef;
  border-top: 5px solid #007bff;
}

.page-resources-lottery-strategy__platform-info p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #444;
}

.page-resources-lottery-strategy__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}

.page-resources-lottery-strategy__faq-question {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-resources-lottery-strategy__faq-answer {
  font-size: 1.05em;
  color: #555;
  text-align: justify;
}

.page-resources-lottery-strategy__cta-section {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-lottery-strategy__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-resources-lottery-strategy__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-resources-lottery-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-lottery-strategy__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-resources-lottery-strategy__btn--primary {
  background-color: #ffc107; /* Màu phụ đạo */
  color: #000; /* Màu đen để đảm bảo độ tương phản */
  border: 2px solid #ffc107;
}

.page-resources-lottery-strategy__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-lottery-strategy__btn--secondary {
  background-color: #007bff; /* Màu chủ đạo */
  color: #fff;
  border: 2px solid #007bff;
}

.page-resources-lottery-strategy__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-resources-lottery-strategy__btn--tertiary {
  background-color: transparent;
  color: #ffc107; /* Màu phụ đạo */
  border: 2px solid #ffc107;
}

.page-resources-lottery-strategy__btn--tertiary:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-lottery-strategy__btn--link {
  color: #007bff;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
  font-size: 1em;
  font-weight: normal;
}

.page-resources-lottery-strategy__btn--link:hover {
  color: #0056b3;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-lottery-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-lottery-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-resources-lottery-strategy__section-title {
    font-size: 2em;
  }
  .page-resources-lottery-strategy__strategy-title {
    font-size: 1.8em;
  }
  .page-resources-lottery-strategy__cta-title {
    font-size: 2.5em;
  }
  .page-resources-lottery-strategy__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-lottery-strategy__hero-section {
    padding: 80px 0;
  }
  .page-resources-lottery-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-resources-lottery-strategy__hero-description {
    font-size: 1em;
  }
  .page-resources-lottery-strategy__section {
    padding: 40px 0;
  }
  .page-resources-lottery-strategy__section-title {
    font-size: 1.8em;
  }
  .page-resources-lottery-strategy__grid,
  .page-resources-lottery-strategy__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-lottery-strategy__cta-title {
    font-size: 2em;
  }
  .page-resources-lottery-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-lottery-strategy__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-resources-lottery-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-resources-lottery-strategy__hero-description {
    font-size: 0.9em;
  }
  .page-resources-lottery-strategy__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-lottery-strategy__section-title {
    font-size: 1.5em;
  }
  .page-resources-lottery-strategy__strategy-title {
    font-size: 1.5em;
  }
  .page-resources-lottery-strategy__faq-question {
    font-size: 1.3em;
  }
  .page-resources-lottery-strategy__cta-title {
    font-size: 1.8em;
  }
  .page-resources-lottery-strategy__cta-description {
    font-size: 0.9em;
  }
}