/* style/game-types.css */
.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
}

.page-game-types .highlight {
  color: #FFD700; /* Gold for highlights */
}

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

/* Hero Section */
.page-game-types__hero-section {
  background: linear-gradient(135deg, #1A202C, #3A3F4C);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-game-types__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-game-types__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-game-types__intro-section,
.page-game-types__game-categories,
.page-game-types__deep-content,
.page-game-types__cta-section {
  padding: 60px 0;
}

.page-game-types__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-game-types__sub-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-types__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #D0D0D0;
}

/* Buttons */
.page-game-types__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-types__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-types__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types__btn--details {
  background-color: #2D3748; /* Darker variant of primary background */
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-game-types__btn--details:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-game-types__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-game-types__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-types__text-link:hover {
  color: #E6C200;
  text-decoration: underline;
}

/* Game Categories Grid */
.page-game-types__game-categories {
  background-color: #252A36;
}

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

.page-game-types__category-card {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-game-types__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-game-types__card-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 15px 20px;
  line-height: 1.5;
}

.page-game-types__feature-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 40px auto 20px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-types__hero-title {
    font-size: 3em;
  }
  .page-game-types__section-title {
    font-size: 2em;
  }
  .page-game-types__sub-title {
    font-size: 1.6em;
  }
  .page-game-types__hero-image {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-game-types__hero-section {
    padding: 80px 0;
  }
  .page-game-types__hero-title {
    font-size: 2.5em;
  }
  .page-game-types__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-game-types__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types__btn--secondary {
    margin-left: 10px;
  }
  .page-game-types__section-title {
    font-size: 1.8em;
  }
  .page-game-types__sub-title {
    font-size: 1.4em;
  }
  .page-game-types__text-content {
    font-size: 0.95em;
  }
  .page-game-types__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-game-types__card-title {
    font-size: 1.4em;
  }
  .page-game-types__card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero-section {
    padding: 60px 0;
  }
  .page-game-types__hero-title {
    font-size: 2em;
  }
  .page-game-types__hero-description {
    font-size: 0.9em;
  }
  .page-game-types__btn {
    display: block;
    width: 90%;
    margin: 15px auto;
  }
  .page-game-types__btn--secondary {
    margin-left: auto;
  }
  .page-game-types__section-title {
    font-size: 1.5em;
  }
  .page-game-types__sub-title {
    font-size: 1.2em;
  }
  .page-game-types__category-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types__card-image {
    height: 160px;
  }
}