.page-arcade {
  color: #ffffff; /* Text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-arcade__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-arcade__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-arcade__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-arcade__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-arcade__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.page-arcade__btn {
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-arcade__btn--primary {
  background-color: #ffc107;
  color: #343a40;
}

.page-arcade__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-arcade__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-arcade__btn--secondary:hover {
  background-color: rgba(255, 193, 7, 0.2);
  transform: translateY(-2px);
}

.page-arcade__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-arcade__btn--tertiary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-arcade__btn--tertiary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-arcade__about-section,
.page-arcade__games-section,
.page-arcade__cta-section,
.page-arcade__why-choose-section,
.page-arcade__responsible-gaming-section {
  padding: 80px 0;
  background-color: #343a40;
  text-align: center;
}

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

.page-arcade__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #ffc107;
}

.page-arcade__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-arcade__feature-card {
  background-color: #212529;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  color: #ffffff;
}

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

.page-arcade__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-arcade__feature-description {
  font-size: 1em;
  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: #212529;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-arcade__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-arcade__game-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffc107;
}

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

.page-arcade__cta-section {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
}

.page-arcade__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-arcade__why-choose-section {
  background-color: #2b3035;
}

.page-arcade__advantages-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-arcade__advantage-item {
  background-color: #212529;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.page-arcade__advantage-item::before {
  content: '✔️';
  margin-right: 15px;
  color: #ffc107;
  font-size: 1.2em;
}

.page-arcade__responsible-gaming-section {
  background-color: #1a1e21;
  padding-bottom: 100px;
}

/* 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.4em;
  }
}

@media (max-width: 768px) {
  .page-arcade__hero-content {
    padding: 80px 15px;
  }
  .page-arcade__hero-title {
    font-size: 2.5em;
  }
  .page-arcade__hero-description {
    font-size: 1em;
  }
  .page-arcade__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-arcade__btn {
    width: 100%;
  }
  .page-arcade__about-section,
  .page-arcade__games-section,
  .page-arcade__cta-section,
  .page-arcade__why-choose-section,
  .page-arcade__responsible-gaming-section {
    padding: 60px 0;
  }
  .page-arcade__section-title {
    font-size: 2em;
  }
  .page-arcade__section-text {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-arcade__feature-card,
  .page-arcade__game-card {
    padding: 20px;
  }
  .page-arcade__feature-icon {
    width: 200px;
    height: 200px;
  }
  .page-arcade__game-thumbnail {
    height: 180px;
  }
  .page-arcade__advantages-list {
    margin: 30px auto;
  }
  .page-arcade__advantage-item {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-arcade__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-arcade__hero-content {
    padding: 60px 10px;
  }
  .page-arcade__hero-title {
    font-size: 2em;
  }
  .page-arcade__hero-description {
    font-size: 0.9em;
  }
  .page-arcade__section-title {
    font-size: 1.8em;
  }
  .page-arcade__section-text {
    font-size: 0.9em;
  }
  .page-arcade__feature-icon {
    width: 200px;
    height: 200px;
  }
  .page-arcade__game-thumbnail {
    height: 150px;
  }
}