/* style/poker.css */

/* Base styles for the poker page content */
.page-poker {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main color for overall page content */
  background-color: #0A0A0A; /* Background color for the page body, per custom colors */
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Section common styling */
.page-poker__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem); /* Responsive font size for H2 */
  color: #F2C14E; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.page-poker__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Ensure text is light on dark background */
}

.page-poker__text-block--small {
  font-size: 0.9rem;
  color: rgba(255, 246, 214, 0.7);
}

.page-poker__text-block--more {
  margin-top: 30px;
}

.page-poker__inline-link {
  color: #FFD36B; /* Auxiliary brand color for links */
  text-decoration: underline;
}

.page-poker__inline-link:hover {
  color: #F2C14E;
}

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

.page-poker__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary,
.page-poker__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word; /* Allow text to wrap */
  box-sizing: border-box;
  text-align: center;
  border: 2px solid transparent; /* Default transparent border */
}

.page-poker__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text on bright button for contrast */
}

.page-poker__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6AE2A 100%);
  transform: translateY(-2px);
}

.page-poker__btn-secondary {
  background: #111111; /* Card BG color */
  color: #FFD36B; /* Glow color for text */
  border-color: #3A2A12; /* Border color */
}

.page-poker__btn-secondary:hover {
  background: #1F1F1F;
  color: #F2C14E;
  border-color: #F2C14E;
  transform: translateY(-2px);
}

.page-poker__btn-tertiary {
  background: transparent;
  color: #FFD36B;
  border-color: #FFD36B;
}

.page-poker__btn-tertiary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding for first content block */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper scales */
  margin-bottom: 40px;
}

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

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

.page-poker__main-title {
  color: #F2C14E; /* Main brand color for H1 */
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.page-poker__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Light text on dark background */
}

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

/* Why Choose Section */
.page-poker__why-choose-section {
  background-color: #111111; /* Card BG color for this section */
  padding: 60px 0;
}

.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: #0A0A0A; /* Background color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__feature-title {
  color: #FFD36B; /* Auxiliary brand color for feature titles */
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__feature-item p {
  color: #FFF6D6; /* Light text on dark background */
  font-size: 0.95rem;
}

/* Games Section */
.page-poker__games-section {
  padding: 60px 0;
}