/* style/index-core-features.css */

/* Base styles for the page content */
.page-index-core-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  background-color: #0a0a0a;
  padding-top: 0; /* HERO section is at the very top, full width */
}

.page-index-core-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-core-features__section {
  padding: 60px 0;
  position: relative;
}

.page-index-core-features__section:nth-of-type(even) {
  background-color: #1a1a1a; /* Alternating dark background for sections */
}

.page-index-core-features__heading {
  font-size: 36px;
  font-weight: bold;
  color: #ffd700; /* Auxiliary color for headings */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-index-core-features__sub-heading {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-index-core-features__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-core-features__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-index-core-features__btn--primary {
  background-color: #ffd700;
  color: #1a1a1a; /* Dark text on bright background */
}

.page-index-core-features__btn--primary:hover {
  background-color: #e0b800;
}

.page-index-core-features__btn--secondary {
  background-color: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

.page-index-core-features__btn--secondary:hover {
  background-color: #ffd700;
  color: #1a1a1a;
}

.page-index-core-features__btn--small {
  padding: 8px 18px;
  font-size: 14px;
}

.page-index-core-features__cta-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* HERO Section */
.page-index-core-features__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.page-index-core-features__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-index-core-features__hero-image {
  width: 100%;
  margin: 0;
}

.page-index-core-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-index-core-features__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #1a1a1a;
  overflow: hidden;
}

.page-index-core-features__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-index-core-features__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-index-core-features__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index-core-features__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a2a;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-core-features__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.page-index-core-features__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-index-core-features__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Game Display Section */
.page-index-core-features__games-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #0a0a0a;
}