/* style/poker.css */

/* Base Styles for .page-poker */
.page-poker {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body background from shared.css */
  line-height: 1.6;
}

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

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

.page-poker__section-intro {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary,
.page-poker__btn-tertiary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  border: none; /* Reset border */
}

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

.page-poker__btn-primary:hover {
  background: linear-gradient(180deg, #FFE085 0%, #E6AE2A 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 */
}

.page-poker__btn-secondary:hover {
  background: #F2C14E; /* Main Color */
  color: #111111;
  transform: translateY(-2px);
}

.page-poker__btn-tertiary {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12; /* Border Custom Color */
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-poker__btn-tertiary:hover {
  background: #3A2A12; /* Border Custom Color */
  color: #F2C14E;
}

.page-poker__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Image base styles */
.page-poker img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 40px; /* Space between image and content */
}

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

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

.page-poker__hero-description {
  font-size: 1.2rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Section */
.page-poker__about-section {
  background-color: #111111; /* Card BG */
  padding: 80px 0;
}

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

.page-poker__feature-item {
  text-align: center;
  background-color: #0A0A0A; /* Background for contrast */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border Custom Color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-poker__feature-icon {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-height: 300px; /* Max height to prevent overly tall images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-poker__feature-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* How to Get Started Section */
.page-poker__how-to-section {
  background-color: #0A0A0A; /* Background */
  padding: 80px 0;
}

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

.page-poker__step-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border Custom Color */
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Push button to bottom */
}

.page-poker__step-number {
  font-size: 3rem;
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
  display: block;
}

.page-poker__step-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__step-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 25px;
  flex-grow: 1; /* Allow text to grow */
}

/* Strategy Section */
.page-poker__strategy-section {
  background-color: #111111; /* Card BG */
  padding: 80px 0;
}

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

.page-poker__strategy-card {
  background-color: #0A0A0A; /* Background for contrast */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border Custom Color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-poker__strategy-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__strategy-card-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Main Color */
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-poker__strategy-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-poker__strategy-card-title a:hover {
  text-decoration: underline;
}

.page-poker__strategy-card-text {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-poker__promo-section {
  background-color: #0A0A0A; /* Background */
  padding: 80px 0;
}

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

.page-poker__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border Custom Color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__promo-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Main Color */
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-poker__promo-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Advanced Features Section */
.page-poker__features-advanced-section {
  background-color: #111111; /* Card BG */
  padding: 80px 0;
}

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

.page-poker__advanced-feature-item {
  text-align: center;
  background-color: #0A0A0A; /* Background for contrast */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border Custom Color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-poker__advanced-feature-icon {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__advanced-feature-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__advanced-feature-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
  background-color: #0A0A0A; /* Background */
  padding: 80px 0;
}

.page-poker__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}