.page-arcade {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #1a1a1a; /* Dark background as per industry style */
  color: #f0f0f0; /* Light text for contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-arcade__section-title {
  color: #FFD700; /* Gold accent for titles */
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
}

.page-arcade__section-subtitle {
  color: #cccccc;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
}

.page-arcade__description {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-arcade__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-arcade__btn--primary {
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-arcade__btn--primary:hover {
  background-color: #e00000;
  border-color: #e00000;
}

.page-arcade__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold accent */
  border: 2px solid #FFD700;
}

.page-arcade__btn--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-arcade__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-arcade__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-arcade__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-arcade__hero-container {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade__hero-content {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-arcade__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.1;
}

.page-arcade__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-arcade__hero-buttons .page-arcade__btn {
  margin: 0 10px;
}

/* About Section */
.page-arcade__about-section {
  padding: 80px 0;
  background-color: #222222;
}

.page-arcade__grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-arcade__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-arcade__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Featured Games Section */
.page-arcade__featured-games-section {
  padding: 80px 0;
}

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

.page-arcade__game-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-arcade__game-card:hover {
  transform: translateY(-5px);
}

.page-arcade__game-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-arcade__game-card-content {
  padding: 25px;
}

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

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

.page-arcade__game-card-title a:hover {
  color: #ffffff;
}

.page-arcade__game-card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-arcade__btn--card {
  background-color: #CC0000;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.95em;
  border: none;
}

.page-arcade__btn--card:hover {
  background-color: #e00000;
}

/* Experience Section */
.page-arcade__experience-section {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-arcade__benefit-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade__benefit-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-arcade__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-arcade__benefit-description {
  color: #cccccc;
  font-size: 1em;
}

/* Getting Started Section */
.page-arcade__getting-started-section {
  padding: 80px 0;
}

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

.page-arcade__step-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #CC0000;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-arcade__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-arcade__step-description {
  color: #cccccc;
}

.page-arcade__cta-bottom {
  text-align: center;
}

/* Responsible Gaming Section */
.page-arcade__responsible-gaming-section {
  padding: 80px 0;
  background-color: #222222;
  text-align: center;
}

/* Why Choose Section */
.page-arcade__why-choose-section {
  padding: 80px 0;
}

/* Details Pages Section */
.page-arcade__details-pages-section {
  padding: 80px 0;
  background-color: #2a2a2a;
}

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

.page-arcade__details-card {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade__details-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-arcade__details-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-arcade__details-card-title a:hover {
  color: #e00000;
}

.page-arcade__details-card-description {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@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.2em;
  }
  .page-arcade__grid-two-col {
    grid-template-columns: 1fr;
  }
  .page-arcade__image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-arcade {
    padding-top: var(--header-offset, 80px); /* Adjust for potentially smaller header on mobile */
  }
  .page-arcade img {
    max-width: 100%;
    height: auto;
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1.1em;
  }
  .page-arcade__hero-buttons .page-arcade__btn {
    margin: 10px 0;
    display: block;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-arcade__section-subtitle {
    font-size: 1em;
  }
  .page-arcade__about-section, .page-arcade__featured-games-section, .page-arcade__experience-section, .page-arcade__getting-started-section, .page-arcade__responsible-gaming-section, .page-arcade__why-choose-section, .page-arcade__details-pages-section {
    padding: 50px 0;
  }
  .page-arcade__game-card-image {
    height: 200px;
  }
  .page-arcade__game-card-title {
    font-size: 1.4em;
  }
  .page-arcade__benefit-title, .page-arcade__step-title {
    font-size: 1.5em;
  }
  .page-arcade__details-card-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-arcade__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}