/* style/game-introductions-poker.css */
.page-game-introductions-poker {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-game-introductions-poker__hero-section {
  background: linear-gradient(135deg, #2C3E50, #F39C12);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-introductions-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-introductions-poker__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

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

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

.page-game-introductions-poker__btn--primary {
  background-color: #F39C12;
  color: #2C3E50;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-game-introductions-poker__btn--primary:hover {
  background-color: #e08b0a;
  transform: translateY(-2px);
}

.page-game-introductions-poker__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-game-introductions-poker__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-game-introductions-poker__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #2C3E50;
  color: #F39C12;
}

.page-game-introductions-poker__btn--small:hover {
  background-color: #1a2a36;
  color: #e08b0a;
}

.page-game-introductions-poker__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-game-introductions-poker__section-title {
  font-size: 2.5em;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-game-introductions-poker__section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-game-introductions-poker__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px auto;
  color: #555;
}

.page-game-introductions-poker__intro-section,
.page-game-introductions-poker__game-types-section,
.page-game-introductions-poker__guide-section,
.page-game-introductions-poker__strategy-section,
.page-game-introductions-poker__why-sodo66-section,
.page-game-introductions-poker__cta-section {
  padding: 60px 0;
}

.page-game-introductions-poker__intro-section {
  background-color: #fff;
}

.page-game-introductions-poker__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-introductions-poker__text-content {
  flex: 1;
}

.page-game-introductions-poker__text-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444;
}

.page-game-introductions-poker__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-introductions-poker__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-introductions-poker__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-introductions-poker__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-game-introductions-poker__card-image {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-introductions-poker__card-title {
  font-size: 1.8em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-game-introductions-poker__card-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-game-introductions-poker__step-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-introductions-poker__step-icon {
  background-color: #F39C12;
  color: #2C3E50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.page-game-introductions-poker__step-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-game-introductions-poker__step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-game-introductions-poker__strategy-section {
  background-color: #f0f0f0;
}

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

.page-game-introductions-poker__strategy-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-game-introductions-poker__strategy-image {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-game-introductions-poker__strategy-title {
  font-size: 1.7em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-game-introductions-poker__strategy-text {
  font-size: 1em;
  color: #666;
}

.page-game-introductions-poker__why-sodo66-section {
  background-color: #fff;
}

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

.page-game-introductions-poker__feature-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-introductions-poker__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.page-game-introductions-poker__feature-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-game-introductions-poker__feature-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-game-introductions-poker__feature-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 15px;
}

.page-game-introductions-poker__cta-section {
  background: linear-gradient(45deg, #2C3E50, #4A6C8C);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-introductions-poker__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
}

.page-game-introductions-poker__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-introductions-poker__hero-title {
    font-size: 2.8em;
  }
  .page-game-introductions-poker__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-introductions-poker__section-title {
    font-size: 2em;
  }
  .page-game-introductions-poker__content-wrapper {
    flex-direction: column;
  }
  .page-game-introductions-poker__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-introductions-poker__hero-title {
    font-size: 2.2em;
  }
  .page-game-introductions-poker__hero-subtitle {
    font-size: 1em;
  }
  .page-game-introductions-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-introductions-poker__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-game-introductions-poker__section-title {
    font-size: 1.8em;
  }
  .page-game-introductions-poker__section-description {
    font-size: 0.95em;
  }
  .page-game-introductions-poker__game-cards,
  .page-game-introductions-poker__steps-grid,
  .page-game-introductions-poker__strategy-grid,
  .page-game-introductions-poker__features-grid {
    grid-template-columns: 1fr;
  }
  .page-game-introductions-poker__card,
  .page-game-introductions-poker__step-item,
  .page-game-introductions-poker__strategy-item,
  .page-game-introductions-poker__feature-item {
    padding: 20px;
  }
  .page-game-introductions-poker__cta-title {
    font-size: 2.2em;
  }
  .page-game-introductions-poker__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-introductions-poker__hero-title {
    font-size: 1.8em;
  }
  .page-game-introductions-poker__hero-section {
    padding: 60px 0;
  }
  .page-game-introductions-poker__section-title {
    font-size: 1.5em;
  }
  .page-game-introductions-poker__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}