/* style/poker.css */

/* Base styles for the poker page content */
.page-poker {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  box-sizing: border-box;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-poker__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-poker__tagline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F2C14E, transparent);
  border-radius: 2px;
}

.page-poker__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__text-block p {
  margin-bottom: 1em;
}

/* CTA Buttons */
.page-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px;
}

.page-poker__cta-buttons--centered {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-poker__btn-primary,
.page-poker__btn-secondary,
.page-poker__btn-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons don't overflow */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-poker__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main color for text */
  border: 2px solid #F2C14E; /* Border color */
}

.page-poker__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A; /* Dark text on hover */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-poker__btn-link {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 1px solid #3A2A12; /* Border */
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: 15px;
}

.page-poker__btn-link:hover {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border-color: #F2C14E;
}


/* Why Nustar Poker Section */
.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: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
}

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

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


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

.page-poker__game-card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
}

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

.page-poker__game-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow */
  padding: 15px;
  font-weight: 600;
}

.page-poker__game-description {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  padding: 0 15px 20px;
  flex-grow: 1; /* Push button to bottom */
}

/* Tournaments & 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: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
}

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

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

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


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

.page-poker__step-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 2px solid #F2C14E;
}

.page-poker__step-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-poker__step-item p {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}


/* Security & Fairness Section */
.page-poker__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-poker__security-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-poker__security-item p {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}


/* Mobile Experience Section */
.page-poker__app-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  background: #111111; /* Card BG */
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #3A2A12; /* Border */
  flex-wrap: wrap;
}

.page-poker__app-image {
  width: 400px;
  height: 300px;
  object-fit: contain;
  display: block;
}

.page-poker__app-content {
  max-width: 500px;
  text-align: left;
}

.page-poker__app-title {
  font-size: 2rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-poker__app-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-poker__app-content .page-poker__cta-buttons {
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}


/* Payment Methods Section */
.page-poker__payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__payment-item {
  background: #111111; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
}

.page-poker__payment-logo {
  width: 100px;
  height: 75px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-poker__payment-name {
  font-size: 1.3rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-poker__payment-info {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
}


/* FAQ Section */
.page-poker__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}