/* style/resources.css */
.page-resources {
  color: #ffffff; /* Sắc độ chữ phù hợp với nền body tối */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-resources__hero-section {
  background: linear-gradient(135deg, #0A1931, #0D1F3F);
  padding: 100px 0;
  text-align: center;
}

.page-resources__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources__hero-button {
  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, color 0.3s ease, transform 0.3s ease;
}

.page-resources__hero-button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-resources__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-resources__introduction-section,
.page-resources__articles-section,
.page-resources__deep-dive-section,
.page-resources__trends-section,
.page-resources__responsible-gambling-section,
.page-resources__expert-advice-section,
.page-resources__why-us-section,
.page-resources__cta-section {
  padding: 60px 0;
}

.page-resources__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources__section-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources__section-text--cta {
  text-align: center;
  margin-top: 40px;
}

.page-resources__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources__text-link:hover {
  text-decoration: underline;
}

.page-resources__highlight {
  color: #FFD700;
}

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

.page-resources__article-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-resources__article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-resources__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources__article-category {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.85em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-resources__article-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources__article-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
  color: #FFD700;
}

.page-resources__article-summary {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__article-button {
  display: inline-block;
  background-color: #0A1931;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  align-self: flex-start;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources__article-button:hover {
  background-color: #FFD700;
  color: #0A1931;
}

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

.page-resources__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.page-resources__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources__feature-description {
  font-size: 0.95em;
  color: #c0c0c0;
}

.page-resources__trend-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 25px;
  gap: 25px;
}

.page-resources__trend-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-resources__trend-content {
  flex-grow: 1;
}

.page-resources__trend-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources__trend-description {
  font-size: 1em;
  color: #c0c0c0;
}

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

.page-resources__responsible-gambling-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.page-resources__responsible-gambling-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-resources__responsible-gambling-title {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources__responsible-gambling-description {
  font-size: 0.9em;
  color: #c0c0c0;
}

.page-resources__advice-list,
.page-resources__value-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources__advice-item,
.page-resources__value-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-resources__advice-item strong,
.page-resources__value-item strong {
  color: #FFD700;
}

.page-resources__cta-section {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
}

.page-resources__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources__cta-button {
  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, color 0.3s ease, transform 0.3s ease;
}

.page-resources__cta-button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-resources__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources__hero-title {
    font-size: 2.5em;
  }
  .page-resources__section-title {
    font-size: 2em;
  }
  .page-resources__trend-item {
    flex-direction: column;
    text-align: center;
  }
  .page-resources__trend-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources__hero-title {
    font-size: 2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
  }
  .page-resources__hero-actions,
  .page-resources__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources__hero-button,
  .page-resources__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources__section-title {
    font-size: 1.8em;
  }
  .page-resources__article-title {
    font-size: 1.3em;
  }
  .page-resources__feature-icon,
  .page-resources__responsible-gambling-icon {
    width: 80px;
    height: 80px;
  }
  .page-resources__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-section,
  .page-resources__introduction-section,
  .page-resources__articles-section,
  .page-resources__deep-dive-section,
  .page-resources__trends-section,
  .page-resources__responsible-gambling-section,
  .page-resources__expert-advice-section,
  .page-resources__why-us-section,
  .page-resources__cta-section {
    padding: 40px 0;
  }
  .page-resources__container {
    padding: 0 15px;
  }
  .page-resources__hero-title {
    font-size: 1.8em;
  }
  .page-resources__section-title {
    font-size: 1.5em;
  }
  .page-resources__hero-button,
  .page-resources__cta-button {
    width: 90%;
  }
  .page-resources__trend-image {
    width: 120px;
    height: 120px;
  }
  .page-resources__cta-title {
    font-size: 1.8em;
  }
}