/* style/poker.css */

/* General page styles, assuming body has --bg-color as #0A0A0A (dark) from shared.css */
.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

/* Section Styling */
.page-poker__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Consistent dark background */
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-poker__section:last-of-type {
  border-bottom: none;
}

.page-poker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-poker__section-title--centered {
  text-align: center;
}

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

.page-poker__section-intro--centered {
  text-align: center;
}

.page-poker__highlight {
  color: #FFD36B; /* Glow color for highlights */
  font-weight: bold;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-poker__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-poker__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-poker__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-poker__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary,
.page-poker__btn-tertiary,
.page-poker__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping initially */
  box-sizing: border-box;
}

.page-poker__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-poker__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-poker__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color border */
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.2);
}

.page-poker__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  color: #FFD36B; /* Glow color */
  border-color: #FFD36B;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  transform: translateY(-2px);
}

.page-poker__btn-tertiary {
  background-color: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 1px solid #3A2A12; /* Border color */
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-poker__btn-tertiary:hover {
  background-color: #F2C14E;
  color: #111111;
  border-color: #F2C14E;
}

.page-poker__btn-link {
  background: transparent;
  color: #FFD36B; /* Glow color */
  text-decoration: none;
  padding: 0;
  font-size: 1em;
  font-weight: normal;
  border: none;
}

.page-poker__btn-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Main color */
}

/* Why Choose Section */
.page-poker__why-choose {
  background-color: #0A0A0A;
  padding-top: 40px;
}

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

.page-poker__feature-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-poker__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(242, 193, 78, 0.5)); /* Allowed effect, not changing color */
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
}

/* Game Types Section */
.page-poker__game-types {
  background-color: #0A0A0A;
}

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

.page-poker__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-poker__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-poker__game-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  padding: 15px 20px 0;
}

.page-poker__game-description {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px 20px;
}

/* How to Play Section */
.page-poker__how-to-play {
  background-color: #0A0A0A;
}

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

.page-poker__step-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-poker__step-title {
  font-size: 1.6em;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-poker__step-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

/* Strategies Section */
.page-poker__strategies {
  background-color: #0A0A0A;
}

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

.page-poker__strategy-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-poker__strategy-item-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-poker__strategy-item-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
}

.page-poker__section-outro {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-poker__section-outro a {
  color: #FFD36B; /* Glow color */
  text-decoration: none;
}

.page-poker__section-outro a:hover {
  text-decoration: underline;
  color: #F2C14E; /* Main color */
}

/* Promotions Section */
.page-poker__promotions {
  background-color: #0A0A0A;
}

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

.page-poker__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-poker__promo-title {
  font-size: 1.5em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-poker__promo-description {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  padding: 0 20px;
}

/* Mobile App Section */
.page-poker__mobile-app {
  background-color: #0A0A0A;
}

.page-poker__mobile-app-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.page-poker__mobile-app-text {
  flex: 1;
}

.page-poker__app-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-poker__app-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-poker__app-features li::before {
  content: '✓';
  color: #FFD36B; /* Glow color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-poker__app-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-poker__mobile-app-image-wrapper {
  flex: 0 0 400px; /* Fixed width for image on desktop */
  max-width: 400px;
  text-align: center;
}