/* style/resources-online-gaming-trends-2024.css */
.page-resources-online-gaming-trends-2024 {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #000000; /* Main background color */
  line-height: 1.6;
  overflow-x: hidden;
}

.page-resources-online-gaming-trends-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-online-gaming-trends-2024__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient background */
  color: #FFFFFF;
  overflow: hidden;
}

.page-resources-online-gaming-trends-2024__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-online-gaming-trends-2024__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-online-gaming-trends-2024__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-resources-online-gaming-trends-2024__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-gaming-trends-2024__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-resources-online-gaming-trends-2024__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-online-gaming-trends-2024__button--primary {
  background-color: #FFD700; /* Gold */
  color: #000000;
}

.page-resources-online-gaming-trends-2024__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-online-gaming-trends-2024__button--secondary {
  background-color: #333333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-resources-online-gaming-trends-2024__button--secondary:hover {
  background-color: #555555;
  transform: translateY(-3px);
}

.page-resources-online-gaming-trends-2024__section {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333333;
}

.page-resources-online-gaming-trends-2024__section:nth-of-type(even) {
  background-color: #000000;
}

.page-resources-online-gaming-trends-2024__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-online-gaming-trends-2024__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Emphasis color */
  border-radius: 2px;
}

.page-resources-online-gaming-trends-2024__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-online-gaming-trends-2024__trends-list {
  padding: 80px 0;
}

.page-resources-online-gaming-trends-2024__trend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 60px;
  background-color: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-resources-online-gaming-trends-2024__trend-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-resources-online-gaming-trends-2024__trend-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.page-resources-online-gaming-trends-2024__trend-image-wrapper {
  flex: 1;
  min-width: 40%;
  max-height: 400px;
  overflow: hidden;
}

.page-resources-online-gaming-trends-2024__trend-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-resources-online-gaming-trends-2024__trend-item:hover .page-resources-online-gaming-trends-2024__trend-image {
  transform: scale(1.05);
}

.page-resources-online-gaming-trends-2024__trend-content {
  flex: 1.5;
  padding: 40px;
}

.page-resources-online-gaming-trends-2024__trend-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-online-gaming-trends-2024__call-to-action {
  text-align: center;
  background-color: #1a1a1a;
  padding: 80px 20px;
}

.page-resources-online-gaming-trends-2024__button-group {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-online-gaming-trends-2024__hero-title {
    font-size: 2.8em;
  }

  .page-resources-online-gaming-trends-2024__hero-subtitle {
    font-size: 1.3em;
  }

  .page-resources-online-gaming-trends-2024__section-title {
    font-size: 2em;
  }

  .page-resources-online-gaming-trends-2024__trend-item {
    flex-direction: column;
  }

  .page-resources-online-gaming-trends-2024__trend-item:nth-of-type(even) {
    flex-direction: column;
  }

  .page-resources-online-gaming-trends-2024__trend-content {
    padding: 30px;
  }

  .page-resources-online-gaming-trends-2024__trend-image-wrapper {
    min-width: 100%;
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .page-resources-online-gaming-trends-2024__hero {
    min-height: 450px;
    padding: 60px 15px;
  }

  .page-resources-online-gaming-trends-2024__hero-title {
    font-size: 2.2em;
  }

  .page-resources-online-gaming-trends-2024__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-online-gaming-trends-2024__section {
    padding: 40px 0;
  }

  .page-resources-online-gaming-trends-2024__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-online-gaming-trends-2024__text {
    font-size: 1em;
  }

  .page-resources-online-gaming-trends-2024__trend-title {
    font-size: 1.5em;
  }

  .page-resources-online-gaming-trends-2024__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-resources-online-gaming-trends-2024__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-online-gaming-trends-2024__hero-title {
    font-size: 1.8em;
  }

  .page-resources-online-gaming-trends-2024__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-online-gaming-trends-2024__section-title {
    font-size: 1.5em;
  }

  .page-resources-online-gaming-trends-2024__trend-content {
    padding: 20px;
  }

  .page-resources-online-gaming-trends-2024__trend-title {
    font-size: 1.3em;
  }
}