/* style/poker.css */
.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

.page-poker__section {
  padding: 60px 0;
  text-align: center;
}

.page-poker__section:nth-of-type(even) {
  background-color: #f8f8f8; /* Slightly off-white for visual separation */
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff; /* Light text for dark hero overlay */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-poker__hero-container {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  background-color: rgba(0, 51, 102, 0.7); /* Dark blue overlay for text readability */
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold accent for title */
  line-height: 1.2;
}

.page-poker__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
  text-align: center;
  font-size: 1.1em;
}

.page-poker__button--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFCC00;
}

.page-poker__button--primary:hover {
  background-color: #e6b800; /* Darker gold */
  border-color: #e6b800;
}

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold text */
  border: 2px solid #FFCC00;
}

.page-poker__button--secondary:hover {
  background-color: #FFCC00; /* Gold background */
  color: #003366; /* Dark blue text */
}

.page-poker__button--outline {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-poker__button--outline:hover {
  background-color: #003366;
  color: #ffffff;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: auto;
}

.page-poker__button--table {
  padding: 8px 15px;
  font-size: 0.85em;
  min-width: auto;
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #003366;
}

.page-poker__button--table:hover {
  background-color: #002244;
  color: #FFCC00;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue */
  margin-bottom: 20px;
}

.page-poker__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-poker__link {
  color: #003366; /* Dark blue for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker__link:hover {
  color: #FFCC00; /* Gold on hover */
}

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

.page-poker__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-poker__feature-text {
  color: #666666;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__game-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__game-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-poker__game-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tournaments Section */
.page-poker__tournament-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__tournament-schedule {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  text-align: left;
}

.page-poker__schedule-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 25px;
  text-align: center;
}

.page-poker__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.page-poker__table th,
.page-poker__table td {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  text-align: left;
}

.page-poker__table-header {
  background-color: #003366;
  color: #ffffff;
}

.page-poker__table-header th {
  font-weight: bold;
}

.page-poker__table-row:nth-child(even) {
  background-color: #f2f2f2;
}

.page-poker__schedule-note {
  font-size: 0.9em;
  color: #777777;
  text-align: center;
  margin-top: 20px;
}

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

.page-poker__promo-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__promo-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__promo-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-poker__promo-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__promo-footer {
  margin-top: 40px;
}

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