.page-index-featured-games {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-index-featured-games .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-featured-games .section-title {
  color: #FFD700; /* Gold for titles */
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-featured-games .section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #c0c0c0;
}

.page-index-featured-games .hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-games .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-index-featured-games .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-index-featured-games .hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-index-featured-games .hero-subtitle {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-featured-games .hero-actions .btn {
  margin: 0 15px;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.page-index-featured-games .btn-primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-index-featured-games .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-index-featured-games .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-featured-games .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-index-featured-games .hero-image-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-featured-games .hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #FFD700;
}

.page-index-featured-games .about-b52-section, 
.page-index-featured-games .featured-games-section, 
.page-index-featured-games .promo-section, 
.page-index-featured-games .get-started-section, 
.page-index-featured-games .safety-responsible-section, 
.page-index-featured-games .faq-section, 
.page-index-featured-games .call-to-action-final {
  padding: 80px 0;
}

.page-index-featured-games .about-b52-section {
  background-color: #122a4c;
}

.page-index-featured-games .about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index-featured-games .about-content .text-content {
  flex: 2;
}

.page-index-featured-games .about-content .text-content h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-index-featured-games .about-content .text-content p {
  margin-bottom: 15px;
  color: #c0c0c0;
}

.page-index-featured-games .about-content .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-featured-games .about-content .feature-list li {
  background: rgba(255, 215, 0, 0.1);
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-index-featured-games .about-content .feature-list li strong {
  color: #FFD700;
}

.page-index-featured-games .about-content .image-content {
  flex: 1;
  text-align: center;
}

.page-index-featured-games .feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-featured-games .featured-games-section {
  background-color: #0A192F;
}

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

.page-index-featured-games .game-card {
  background-color: #1a3a61;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-featured-games .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.page-index-featured-games .game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-featured-games .game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-featured-games .game-card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-index-featured-games .game-card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-featured-games .game-card-title a:hover {
    color: #fff;
}

.page-index-featured-games .game-card-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-featured-games .btn-play {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #FFD700;
  color: #0A192F;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-featured-games .btn-play:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-featured-games .promo-section {
  background-color: #122a4c;
}

.page-index-featured-games .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-featured-games .promo-item {
  background-color: #1a3a61;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-featured-games .promo-item:hover {
  transform: translateY(-8px);
}

.page-index-featured-games .promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

.page-index-featured-games .promo-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-index-featured-games .promo-item p {
  color: #c0c0c0;
  margin-bottom: 25px;
}

.page-index-featured-games .btn-promo {
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-featured-games .btn-promo:hover {
  background-color: #e6c200;
}

.page-index-featured-games .promo-call-to-action {
  text-align: center;
  margin-top: 60px;
  font-size: 1.2em;
  color: #f0f0f0;
}

.page-index-featured-games .btn-lg {
    padding: 18px 40px;
    font-size: 1.4em;
    margin-top: 30px;
}

.page-index-featured-games .get-started-section {
  background-color: #0A192F;
}

.page-index-featured-games .step-by-step-guide {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.page-index-featured-games .guide-step {
  background-color: #1a3a61;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-featured-games .guide-step:hover {
  transform: translateY(-8px);
}

.page-index-featured-games .step-icon {
  background-color: #FFD700;
  color: #0A192F;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-index-featured-games .guide-step h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-featured-games .guide-step p {
  color: #c0c0c0;
  margin-bottom: 25px;
}

.page-index-featured-games .btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-featured-games .btn-outline:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index-featured-games .safety-responsible-section {
  background-color: #122a4c;
}

.page-index-featured-games .safety-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index-featured-games .safety-content .text-content {
  flex: 2;
}

.page-index-featured-games .safety-content .text-content p {
  margin-bottom: 15px;
  color: #c0c0c0;
}

.page-index-featured-games .safety-content .image-content {
  flex: 1;
  text-align: center;
}

.page-index-featured-games .safety-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-featured-games .faq-section {
  background-color: #0A192F;
}

.page-index-featured-games .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-featured-games .accordion-item {
  margin-bottom: 15px;
  background-color: #1a3a61;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-featured-games .accordion-header {
  width: 100%;
  background-color: #1a3a61;
  color: #FFD700;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-featured-games .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-featured-games .accordion-header.active::after {
  transform: rotate(45deg);
}

.page-index-featured-games .accordion-header:hover {
  background-color: #2b4f7a;
}

.page-index-featured-games .accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #c0c0c0;
}

.page-index-featured-games .accordion-content p {
  padding-bottom: 20px;
}

.page-index-featured-games .call-to-action-final {
  background: linear-gradient(45deg, #0A192F, #1a3a61);
  text-align: center;
  padding: 100px 0;
}

.page-index-featured-games .btn-xl {
  padding: 20px 50px;
  font-size: 1.6em;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-featured-games .hero-title {
    font-size: 3em;
  }
  .page-index-featured-games .section-title {
    font-size: 2.2em;
  }
  .page-index-featured-games .about-content, 
  .page-index-featured-games .safety-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-featured-games .about-content .image-content, 
  .page-index-featured-games .safety-content .image-content {
    order: -1;
    margin-bottom: 30px;
  }
  .page-index-featured-games .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-featured-games .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-featured-games .hero-title {
    font-size: 2.5em;
  }
  .page-index-featured-games .hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-featured-games .hero-actions .btn {
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
  }
  .page-index-featured-games .section-title {
    font-size: 1.8em;
  }
  .page-index-featured-games .section-description {
    font-size: 1em;
  }
  .page-index-featured-games .about-b52-section, 
  .page-index-featured-games .featured-games-section, 
  .page-index-featured-games .promo-section, 
  .page-index-featured-games .get-started-section, 
  .page-index-featured-games .safety-responsible-section, 
  .page-index-featured-games .faq-section, 
  .page-index-featured-games .call-to-action-final {
    padding: 60px 0;
  }
  .page-index-featured-games .guide-step {
    min-width: unset;
    width: 100%;
  }
  .page-index-featured-games .btn-xl {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-featured-games .hero-title {
    font-size: 2em;
  }
  .page-index-featured-games .hero-subtitle {
    font-size: 1em;
  }
  .page-index-featured-games .hero-actions .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-featured-games .section-title {
    font-size: 1.6em;
  }
  .page-index-featured-games .game-card-title {
    font-size: 1.5em;
  }
  .page-index-featured-games .promo-item h3 {
    font-size: 1.4em;
  }
  .page-index-featured-games .guide-step h3 {
    font-size: 1.5em;
  }
  .page-index-featured-games .accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}