.page-arcade {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-arcade__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-arcade__hero-section {
  background-color: #1A1A1A; /* Auxiliary color for hero background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-arcade__hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-arcade__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Main color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-arcade__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-arcade__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure button minimum size */
}

.page-arcade__hero-button--primary {
  background-color: #FFD700; /* Main color */
  color: #1A1A1A; /* Auxiliary color */
}

.page-arcade__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-arcade__hero-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-arcade__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-arcade__section-title {
  font-size: 2.8em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-arcade__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-arcade__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555555;
}

.page-arcade__about-section, .page-arcade__games-showcase, .page-arcade__why-choose-us, .page-arcade__faq-section, .page-arcade__call-to-action, .page-arcade__responsible-gaming {
  padding: 80px 0;
}

.page-arcade__about-section {
  background-color: #f8f8f8;
}

.page-arcade__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-arcade__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-arcade__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-arcade__feature-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain; /* Ensure large icons fit */
}

.page-arcade__feature-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-arcade__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-arcade__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 18px 40px;
  background-color: #FFD700;
  color: #1A1A1A;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-arcade__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-arcade__cta-button--wide {
  min-width: 300px;
}

.page-arcade__cta-button--large {
  font-size: 1.4em;
  padding: 20px 45px;
  min-width: 350px;
}

.page-arcade__games-showcase {
  background-color: #1A1A1A;
  color: #ffffff;
}

.page-arcade__games-showcase .page-arcade__section-title {
  color: #FFD700;
}

.page-arcade__games-showcase .page-arcade__section-title::after {
  background-color: #f0f0f0;
}

.page-arcade__games-showcase .page-arcade__text-content {
  color: #cccccc;
}

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

.page-arcade__game-card {
  background-color: #333333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-arcade__game-image {
  width: 100%;
  height: 300px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 4px solid #FFD700;
}

.page-arcade__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-arcade__game-description {
  font-size: 0.95em;
  color: #dddddd;
  padding: 0 15px 20px;
}

.page-arcade__game-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-arcade__game-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-arcade__why-choose-us {
  background-color: #ffffff;
}

.page-arcade__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-arcade__benefit-item {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-arcade__benefit-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-arcade__benefit-icon {
  width: 200px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-arcade__benefit-title {
  font-size: 1.7em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-arcade__benefit-description {
  font-size: 0.95em;
  color: #666666;
}

.page-arcade__faq-section {
  background-color: #f0f0f0;
}

.page-arcade__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-arcade__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-arcade__faq-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.page-arcade__faq-question {
  font-size: 1.4em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-arcade__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-arcade__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade__faq-answer a:hover {
  text-decoration: underline;
}

.page-arcade__call-to-action {
  background: linear-gradient(135deg, #1A1A1A, #333333);
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
}

.page-arcade__call-to-action-content {
  max-width: 900px;
}

.page-arcade__call-to-action .page-arcade__section-title {
  color: #FFD700;
}

.page-arcade__call-to-action .page-arcade__section-title::after {
  background-color: #f0f0f0;
}

.page-arcade__call-to-action .page-arcade__text-content {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-arcade__responsible-gaming {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.page-arcade__responsible-gaming .page-arcade__section-title {
  font-size: 2em;
}

.page-arcade__responsible-gaming .page-arcade__text-content {
  font-size: 1em;
  color: #777777;
  margin-bottom: 30px;
}

.page-arcade__responsible-gaming a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-arcade__responsible-gaming a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-arcade__hero-title {
    font-size: 3em;
  }
  .page-arcade__hero-description {
    font-size: 1.2em;
  }
  .page-arcade__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-section {
    min-height: 500px;
    padding: 60px 0;
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1.1em;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__hero-button {
    width: 80%;
    min-width: unset;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__text-content {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-arcade__about-section, .page-arcade__games-showcase, .page-arcade__why-choose-us, .page-arcade__faq-section, .page-arcade__call-to-action, .page-arcade__responsible-gaming {
    padding: 60px 0;
  }
  .page-arcade__features-grid, .page-arcade__game-grid, .page-arcade__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-arcade__game-image {
    height: 250px;
  }
  .page-arcade__cta-button--wide, .page-arcade__cta-button--large {
    min-width: unset;
    width: 90%;
    font-size: 1.1em;
    padding: 15px 30px;
  }
  /* Ensure all images within .page-arcade are responsive */
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  /* Specific overrides for icons if they are set to fixed sizes */
  .page-arcade__feature-icon, .page-arcade__benefit-icon {
    max-width: 200px; /* Maintain minimum size but allow scaling down */
    height: auto;
  }
  .page-arcade__hero-image {
    height: 100%; /* Ensure hero image covers background */
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 0.9em;
  }
  .page-arcade__hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__feature-title {
    font-size: 1.5em;
  }
  .page-arcade__game-title {
    font-size: 1.4em;
  }
  .page-arcade__faq-question {
    font-size: 1.2em;
  }
}

/* Ensure no image filters are used */
.page-arcade img {
  filter: none; /* Explicitly disable any potential filters */
}

/* Content area image size enforcement */
.page-arcade__hero-image, 
.page-arcade__feature-icon, 
.page-arcade__game-image, 
.page-arcade__benefit-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Override for smaller images if they exist in content area to ensure min-size */
.page-arcade__feature-icon, .page-arcade__benefit-icon {
  width: 200px; /* Fixed to min-size */
  height: 200px; /* Fixed to min-size */
}

/* Ensure images in the content area maintain minimum size on desktop */
@media (min-width: 769px) {
  .page-arcade__feature-icon, .page-arcade__benefit-icon {
    width: 200px;
    height: 200px;
  }
  .page-arcade__game-image {
    width: 100%; /* Fill card width */
    height: 300px; /* Maintain aspect ratio */
  }
}