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

/* Base styles for the page */
.page-index-core-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Inherited from body, explicit for clarity */
}

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

.page-index-core-advantages__section {
  padding: 60px 0;
}

.page-index-core-advantages__title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.3;
}

.page-index-core-advantages__subtitle {
  font-size: 28px;
  font-weight: bold;
  color: #f0f0f0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}

.page-index-core-advantages__paragraph {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #ffffff;
}

.page-index-core-advantages__btn-primary,
.page-index-core-advantages__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-index-core-advantages__btn-primary {
  background: #FFD700; /* Gold */
  color: #000000; /* Dark text for gold background */
}

.page-index-core-advantages__btn-primary:hover {
  background: #e6c200;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-index-core-advantages__btn-secondary {
  background: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-index-core-advantages__btn-secondary:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

/* --- HERO Section --- */
.page-index-core-advantages__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: #000000;
}

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

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

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

/* --- LOGO Carousel Section --- */
.page-index-core-advantages__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: #0d0d0d; /* Slightly lighter dark background for contrast */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-index-core-advantages__logo-carousel {
  display: flex;
  gap: 30px;
  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; /* Disable user interaction for carousel */
}

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

.page-index-core-advantages__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow logo-item itself to be clickable */
}

.page-index-core-advantages__logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.page-index-core-advantages__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: auto; /* Allow link inside to be clickable */
}

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

/* --- Game Display Area --- */
.page-index-core-advantages__games-section {
  width: 100%;
  padding: 80px 20px;
  background: #000000;
}

.page-index-core-advantages__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index-core-advantages__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.page-index-core-advantages__featured-game-area {
  width: 100%;
}

.page-index-core-advantages__featured-game-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 25px 0;
  color: #FFD700; /* Yellow text */
  text-align: left;
  text-transform: uppercase;
}

.page-index-core-advantages__featured-game {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-advantages__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-index-core-advantages__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-core-advantages__featured-game-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
}

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

.page-index-core-advantages__games-grid-area {
  width: 100%;
}

.page-index-core-advantages__games-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
  border-bottom: 2px solid #333333;
}

.page-index-core-advantages__games-tab {
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-index-core-advantages__games-tab:hover {
  color: #FFD700;
}

.page-index-core-advantages__games-tab.active {
  color: #FFD700; /* Gold text */
  border-bottom: 3px solid #FFD700;
}

.page-index-core-advantages__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  display: none; /* Default hidden */
}

.page-index-core-advantages__games-grid.active {
  display: grid; /* Active when displayed */
}

.page-index-core-advantages__game-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-advantages__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-core-advantages__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-core-advantages__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.page-index-core-advantages__game-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 12px 0;
  padding: 0 8px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* --- Intro Section --- */
.page-index-core-advantages__intro-section {
  background-color: #0d0d0d;
  padding-top: 120px; /* Spacing for fixed header */
}

.page-index-core-advantages__intro-section .page-index-core-advantages__title {
  color: #FFD700;
}

.page-index-core-advantages__intro-section .page-index-core-advantages__subtitle {
  color: #FFD700;
}

/* --- Quick Access Section --- */
.page-index-core-advantages__quick-access-section {
  background-color: #000000;
  padding: 80px 0;
}

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

.page-index-core-advantages__quick-link-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  display: block;
}

.page-index-core-advantages__quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  background-color: #2a2a2a;
}

.page-index-core-advantages__quick-link-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-index-core-advantages__quick-link-description {
  font-size: 15px;
  color: #f0f0f0;
}

/* --- Game Showcase Section (Tabs) --- */
.page-index-core-advantages__game-showcase-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

.page-index-core-advantages__tabs-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #333333;
  padding-bottom: 10px;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-core-advantages__tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #999999;
  cursor: pointer;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.page-index-core-advantages__tab-btn:hover {
  color: #FFD700;
}

.page-index-core-advantages__tab-btn.active {
  color: #FFD700;
  border-bottom: 3px solid #FFD700;
}

.page-index-core-advantages__tab-content {
  display: none;
}

.page-index-core-advantages__tab-content.active {
  display: block;
}

.page-index-core-advantages__game-carousel {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-bottom: 15px; /* Space for scrollbar if it appears on hover */
}

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

.page-index-core-advantages__game-carousel-inner {
  display: flex;
  gap: 25px;
  padding: 10px;
}

.page-index-core-advantages__game-item {
  flex-shrink: 0;
  width: 280px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-advantages__game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-index-core-advantages__game-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-index-core-advantages__game-name {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-core-advantages__game-desc {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-index-core-advantages__btn-play {
  display: inline-block;
  background: #8B0000; /* Dark Red */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-core-advantages__btn-play:hover {
  background: #a00000;
  transform: translateY(-2px);
}

/* --- Promo Section --- */
.page-index-core-advantages__promo-section {
  background-color: #000000;
  padding: 80px 0;
}

.page-index-core-advantages__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-index-core-advantages__promo-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-advantages__promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-index-core-advantages__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-core-advantages__promo-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* --- Security & Support Section --- */
.page-index-core-advantages__security-support-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

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

.page-index-core-advantages__feature-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-advantages__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-index-core-advantages__feature-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-index-core-advantages__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-core-advantages__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

.page-index-core-advantages__contact-info {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.page-index-core-advantages__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 17px;
  color: #ffffff;
}

.page-index-core-advantages__contact-list li {
  margin-bottom: 10px;
}

.page-index-core-advantages__contact-list strong {
  color: #FFD700;
}

/* --- FAQ Section --- */
.page-index-core-advantages__faq-section {
  background-color: #000000;
  padding: 80px 0;
}

.page-index-core-advantages__faq-list {
  margin-top: 40px;
}

.page-index-core-advantages__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-core-advantages__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-core-advantages__faq-question:hover {
  background: #2a2a2a;
}

.page-index-core-advantages__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-index-core-advantages__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-core-advantages__faq-item.active .page-index-core-advantages__faq-toggle {
  color: #8B0000;
  transform: rotate(180deg);
}

.page-index-core-advantages__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
  background: #2a2a2a;
}

.page-index-core-advantages__faq-item.active .page-index-core-advantages__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-core-advantages__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* --- Blog Section --- */
.page-index-core-advantages__blog-section {
  background-color: #0d0d0d;
  padding: 80px 0;
}

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

.page-index-core-advantages__blog-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-core-advantages__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-index-core-advantages__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-core-advantages__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-core-advantages__blog-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-index-core-advantages__blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-core-advantages__blog-title a:hover {
  color: #ffffff;
}

.page-index-core-advantages__blog-excerpt {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-core-advantages__blog-date {
  font-size: 14px;
  color: #999999;
  text-align: right;
  margin-top: auto;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
  .page-index-core-advantages__title {
    font-size: 32px;
  }
  .page-index-core-advantages__subtitle {
    font-size: 24px;
  }
  .page-index-core-advantages__paragraph {
    font-size: 16px;
  }
  .page-index-core-advantages__featured-game-image {
    height: 450px;
  }
}

@media (max-width: 1024px) {
  .page-index-core-advantages__games-layout {
    grid-template-columns: 1fr;
  }
  .page-index-core-advantages__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-index-core-advantages__logo-item {
    width: 180px;
    height: 180px;
  }
  .page-index-core-advantages__game-item {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .page-index-core-advantages {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  .page-index-core-advantages__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-index-core-advantages__section {
    padding: 40px 0;
  }
  .page-index-core-advantages__title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-index-core-advantages__subtitle {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-index-core-advantages__paragraph {
    font-size: 15px;
  }
  .page-index-core-advantages__btn-primary,
  .page-index-core-advantages__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-index-core-advantages__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* HERO Section */
  .page-index-core-advantages__hero-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .page-index-core-advantages__hero-image img {
    width: 100% !important;
    height: auto !important;
  }

  /* LOGO Carousel Section */
  .page-index-core-advantages__logo-carousel-section {
    padding: 30px 15px;
  }
  .page-index-core-advantages__logo-carousel {
    gap: 15px;
  }
  .page-index-core-advantages__logo-item {
    width: 140px;
    height: 140px;
    border-radius: 8px;
  }

  /* Game Display Area */
  .page-index-core-advantages__games-section {
    padding: 50px 15px;
  }
  .page-index-core-advantages__games-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-index-core-advantages__featured-game-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-index-core-advantages__featured-game-image {
    height: 350px;
  }
  .page-index-core-advantages__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  .page-index-core-advantages__games-tab {
    font-size: 16px;
    padding: 10px 0;
  }
  .page-index-core-advantages__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-index-core-advantages__game-card-image {
    height: 150px;
  }
  .page-index-core-advantages__game-card-title {
    font-size: 14px;
    margin: 10px 0;
    padding: 0 5px;
  }

  /* Intro Section */
  .page-index-core-advantages__intro-section {
    padding-top: 100px; /* Adjusted for mobile fixed header */
  }

  /* Quick Access Section */
  .page-index-core-advantages__link-grid {
    grid-template-columns: 1fr;
  }
  .page-index-core-advantages__quick-link-title {
    font-size: 20px;
  }
  .page-index-core-advantages__quick-link-description {
    font-size: 14px;
  }

  /* Game Showcase Section (Tabs) */
  .page-index-core-advantages__tabs-navigation {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
  }
  .page-index-core-advantages__tabs-navigation::-webkit-scrollbar {
    display: none;
  }
  .page-index-core-advantages__tab-btn {
    flex-shrink: 0;
  }
  .page-index-core-advantages__game-item {
    width: 220px;
  }
  .page-index-core-advantages__game-name {
    font-size: 18px;
  }
  .page-index-core-advantages__game-desc {
    font-size: 14px;
  }

  /* Promo Section */
  .page-index-core-advantages__promo-list {
    grid-template-columns: 1fr;
  }
  .page-index-core-advantages__promo-title {
    font-size: 20px;
  }
  .page-index-core-advantages__promo-description {
    font-size: 15px;
  }

  /* Security & Support Section */
  .page-index-core-advantages__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-core-advantages__feature-card img {
    width: 80px;
    height: 80px;
  }
  .page-index-core-advantages__feature-title {
    font-size: 20px;
  }
  .page-index-core-advantages__feature-description {
    font-size: 15px;
  }
  .page-index-core-advantages__contact-list {
    font-size: 15px;
  }

  /* FAQ Section */
  .page-index-core-advantages__faq-question {
    padding: 15px 20px;
  }
  .page-index-core-advantages__faq-question h3 {
    font-size: 16px;
  }
  .page-index-core-advantages__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-index-core-advantages__faq-answer {
    padding: 0 20px;
  }
  .page-index-core-advantages__faq-item.active .page-index-core-advantages__faq-answer {
    padding: 15px 20px !important;
  }

  /* Blog Section */
  .page-index-core-advantages__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-core-advantages__blog-card img {
    height: 180px;
  }
  .page-index-core-advantages__blog-title {
    font-size: 18px;
  }
  .page-index-core-advantages__blog-excerpt {
    font-size: 14px;
  }
  .page-index-core-advantages__blog-date {
    font-size: 13px;
  }

  /* All images responsive */
  .page-index-core-advantages img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-index-core-advantages__title {
    font-size: 24px;
  }
  .page-index-core-advantages__subtitle {
    font-size: 20px;
  }
  .page-index-core-advantages__games-grid {
    grid-template-columns: 1fr;
  }
  .page-index-core-advantages__game-card-image {
    height: 180px;
  }
  .page-index-core-advantages__game-item {
    width: 100%; /* Full width for very small screens */
  }
  .page-index-core-advantages__featured-game-image {
    height: 250px;
  }
  .page-index-core-advantages__games-tab {
    font-size: 15px;
    padding: 8px 0;
  }
  .page-index-core-advantages__game-card-title {
    font-size: 13px;
  }
  .page-index-core-advantages__tabs-navigation {
    gap: 10px;
  }
}