.page-arcade-games {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-arcade-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding for visual separation */
}

.page-arcade-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 40.625%; /* 1920/780 aspect ratio for desktop hero */
  overflow: hidden;
}

.page-arcade-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-arcade-games__hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}

.page-arcade-games__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #E44D26;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-arcade-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D0DDE7;
}

.page-arcade-games__hero-cta {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__hero-cta:hover {
  background-color: #ff6633;
  transform: translateY(-2px);
}

.page-arcade-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}

.page-arcade-games__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-arcade-games__featured-games-section,
.page-arcade-games__why-bet100-section,
.page-arcade-games__how-to-play-section,
.page-arcade-games__faq-section,
.page-arcade-games__join-us-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-arcade-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-arcade-games__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-arcade-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-arcade-games__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-arcade-games__game-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 15px 10px 5px 10px;
  color: #E44D26;
}

.page-arcade-games__game-provider {
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 15px;
}

.page-arcade-games__game-cta {
  display: block;
  background-color: #333333;
  color: #ffffff;
  padding: 10px 15px;
  margin: 0 15px 15px 15px; /* Margin around the button */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.page-arcade-games__game-cta:hover {
  background-color: #E44D26;
}

.page-arcade-games__view-all-cta {
  display: block;
  width: fit-content;
  margin: 20px auto 0 auto;
  background-color: #E44D26;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-arcade-games__view-all-cta:hover {
  background-color: #ff6633;
}

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

.page-arcade-games__feature-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade-games__feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-arcade-games__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-arcade-games__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E44D26;
  margin-bottom: 10px;
}

.page-arcade-games__feature-text {
  font-size: 1rem;
  color: #666666;
}

.page-arcade-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-arcade-games__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #E44D26;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-arcade-games__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}

.page-arcade-games__step-text {
  font-size: 1rem;
  color: #555555;
}

.page-arcade-games__start-playing-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #333333;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-arcade-games__start-playing-cta:hover {
  background-color: #E44D26;
  transform: translateY(-2px);
}

.page-arcade-games__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.page-arcade-games__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #E44D26;
  margin-bottom: 10px;
}

.page-arcade-games__faq-answer {
  font-size: 1rem;
  color: #555555;
}

.page-arcade-games__join-us-cta {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #E44D26;
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__join-us-cta:hover {
  background-color: #ff6633;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-arcade-games__hero-content {
    padding: 30px 15px;
  }

  .page-arcade-games__hero-title {
    font-size: 2.8rem;
  }

  .page-arcade-games__hero-description {
    font-size: 1.1rem;
  }

  .page-arcade-games__section-title {
    font-size: 2.2rem;
  }

  .page-arcade-games__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .page-arcade-games__game-card img {
    height: 200px;
  }

  .page-arcade-games__feature-item img {
    
    
  }
}

@media (max-width: 768px) {
  .page-arcade-games__hero-image-wrapper {
    padding-bottom: 133.33%; /* 3:4 aspect ratio for mobile hero */
  }

  .page-arcade-games__hero-content {
    padding: 20px 10px;
  }

  .page-arcade-games__hero-title {
    font-size: 2.2rem;
  }

  .page-arcade-games__hero-description {
    font-size: 1rem;
  }

  .page-arcade-games__hero-cta,
  .page-arcade-games__view-all-cta,
  .page-arcade-games__start-playing-cta,
  .page-arcade-games__join-us-cta {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px; /* Constrain width for better mobile appearance */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-arcade-games__section-title {
    font-size: 1.8rem;
  }

  .page-arcade-games__section-description {
    font-size: 0.95rem;
  }

  .page-arcade-games__games-grid {
    grid-template-columns: 1fr 1fr; /* Two columns on mobile */
    gap: 15px;
  }

  .page-arcade-games__game-card {
    min-width: 150px;
  }

  .page-arcade-games__game-card img {
    
  }

  .page-arcade-games__game-title {
    font-size: 1.1rem;
  }

  .page-arcade-games__game-cta {
    padding: 8px 10px;
    font-size: 0.9rem;
    margin: 0 10px 10px 10px;
  }

  .page-arcade-games__features-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }

  .page-arcade-games__feature-item img {
    
    
  }

  .page-arcade-games__feature-title {
    font-size: 1.2rem;
  }

  .page-arcade-games__feature-text {
    font-size: 0.9rem;
  }

  .page-arcade-games__step-item {
    padding: 15px 20px;
  }

  .page-arcade-games__step-title {
    font-size: 1.1rem;
  }

  .page-arcade-games__step-text {
    font-size: 0.9rem;
  }

  .page-arcade-games__faq-question {
    font-size: 1.1rem;
  }

  .page-arcade-games__faq-answer {
    font-size: 0.9rem;
  }

  .page-arcade-games img {
    max-width: 100% !important;
    height: auto !important;
  }
}