/* style/game-types.css */
.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background-color: #000000;
}

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

.page-game-types-section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-types-section-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-game-types-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-game-types-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-game-types-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
  z-index: 2;
}

.page-game-types-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-game-types-hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-types-hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-game-types-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-types-btn-primary {
  background-color: #FFD700;
  color: #000000;
}

.page-game-types-btn-primary:hover {
  background-color: #e6c200;
  color: #333333;
}

.page-game-types-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types-btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

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

.page-game-types-why-choose {
  background-color: #1a1a1a;
}

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

.page-game-types-feature-item {
  background-color: #0d0d0d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border-left: 3px solid #FFD700;
}

.page-game-types-feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-feature-text {
  font-size: 1em;
  color: #bbbbbb;
  line-height: 1.6;
}

.page-game-types-game-categories {
  background-color: #000000;
}

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

.page-game-types-category-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.page-game-types-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.8);
}

.page-game-types-category-card .page-game-types-card-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin-bottom: 0;
}

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

.page-game-types-category-card .page-game-types-card-title a:hover {
  color: #fff;
}

.page-game-types-card-description {
  font-size: 0.95em;
  color: #bbbbbb;
  padding: 0 20px 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.page-game-types-category-card .page-game-types-btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-game-types-promotions {
  background-color: #1a1a1a;
}

.page-game-types-promotion-banner {
  background-color: #0d0d0d;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types-promotion-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-game-types-promotion-content {
  padding: 30px;
  text-align: center;
}

.page-game-types-promotion-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-promotion-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-game-types-how-to-start {
  background-color: #000000;
}

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

.page-game-types-step-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-game-types-step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #000000;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-game-types-step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-step-text {
  font-size: 1em;
  color: #bbbbbb;
  line-height: 1.6;
}

.page-game-types-conclusion {
  background-color: #1a1a1a;
  padding-bottom: 80px;
}

.page-game-types-cta-center {
  text-align: center;
}

.page-game-types-mt-40 {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-types-hero-title {
    font-size: 3em;
  }
  .page-game-types-hero-description {
    font-size: 1.1em;
  }
  .page-game-types-section-title {
    font-size: 2.2em;
  }
  .page-game-types-promotion-banner {
    flex-direction: column;
  }
  .page-game-types-promotion-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-game-types-hero {
    height: 500px;
  }
  .page-game-types-hero-title {
    font-size: 2.5em;
  }
  .page-game-types-hero-description {
    font-size: 1em;
  }
  .page-game-types-section {
    padding: 40px 0;
  }
  .page-game-types-section-title {
    font-size: 1.8em;
  }
  .page-game-types-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-features, .page-game-types-category-grid, .page-game-types-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-promotion-title {
    font-size: 1.6em;
  }
}

@media (max-width: 480px) {
  .page-game-types-hero-title {
    font-size: 2em;
  }
  .page-game-types-hero-description {
    font-size: 0.9em;
  }
  .page-game-types-section-title {
    font-size: 1.6em;
  }
  .page-game-types-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-types-promotion-title {
    font-size: 1.4em;
  }
  .page-game-types-step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }
}