.page-game-types {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-game-types__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-game-types__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-types__hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-game-types__section {
  padding: 60px 0;
}

.page-game-types__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
}

.page-game-types__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

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

.page-game-types__game-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-game-types__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.page-game-types__game-card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-game-types__game-card-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-types__game-card-title a:hover {
  color: #0056b3;
}

.page-game-types__game-card-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-types__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 15px;
  cursor: pointer;
}

.page-game-types__btn--primary {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

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

.page-game-types__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  margin-right: 10px;
}

.page-game-types__btn--secondary:hover {
  background-color: #0056b3;
  color: #fff;
  transform: translateY(-2px);
}

.page-game-types__btn--accent {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

.page-game-types__btn--accent:hover {
  background-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
}

.page-game-types__why-choose-vf555 {
  background-color: #e9f5ff;
  padding: 80px 0;
}

.page-game-types__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-types__text-content {
  flex: 1;
  min-width: 300px;
}

.page-game-types__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-game-types__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-game-types__text-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444;
}

.page-game-types__text-content strong {
  color: #007bff;
}

.page-game-types__why-choose-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-game-types__how-to-join {
  background-color: #fff;
  padding: 80px 0;
}

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

.page-game-types__step-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-game-types__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-types__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-game-types__step-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-game-types__offers {
  background-color: #f8f9fa;
  padding: 80px 0;
}

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

.page-game-types__offer-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types__offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-types__offer-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.page-game-types__offer-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-game-types__offer-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
}

.page-game-types__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-game-types__cta-bottom p {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-game-types__detail-pages {
  background-color: #fff;
  padding: 80px 0;
}

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

.page-game-types__detail-item {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-types__detail-item:hover {
  transform: translateY(-5px);
}

.page-game-types__detail-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-game-types__detail-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-types__detail-title a:hover {
  color: #0056b3;
}

.page-game-types__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-types .highlight {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types__hero-title {
    font-size: 2.5em;
  }
  .page-game-types__section-title {
    font-size: 2em;
  }
  .page-game-types__content-wrapper {
    flex-direction: column;
  }
  .page-game-types__why-choose-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-game-types__hero-title {
    font-size: 2em;
  }
  .page-game-types__hero-description {
    font-size: 1em;
  }
  .page-game-types__section-title {
    font-size: 1.8em;
  }
  .page-game-types__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-types__grid, .page-game-types__steps-grid, .page-game-types__offer-grid, .page-game-types__detail-list {
    grid-template-columns: 1fr;
  }
  .page-game-types__game-card, .page-game-types__step-card, .page-game-types__offer-card, .page-game-types__detail-item {
    padding: 20px;
  }
  .page-game-types__game-card-title, .page-game-types__offer-title, .page-game-types__step-title, .page-game-types__detail-title {
    font-size: 1.3em;
  }
  .page-game-types__btn--secondary {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero {
    padding: 60px 0;
  }
  .page-game-types__hero-title {
    font-size: 1.8em;
  }
  .page-game-types__section-title {
    font-size: 1.6em;
  }
  .page-game-types__btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-game-types__cta-bottom p {
    font-size: 1.1em;
  }
}