/* style/poker.css */

/* Base styles for the poker page */
.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-poker__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Main color for titles */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-poker__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #FFF6D6; /* Text Main */
}

.page-poker__text-block--center {
  text-align: center;
}

.page-poker__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6; /* Text Main */
}

.page-poker__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Main color for card titles */
}

.page-poker__card-description {
  font-size: 1em;
  line-height: 1.5;
  color: #FFF6D6; /* Text Main */
}

/* Buttons */
.page-poker__btn-primary,
.page-poker__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure buttons adapt */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-poker__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111; /* Dark text for contrast */
  transform: translateY(-2px);
}

.page-poker__btn-primary--center,
.page-poker__btn-secondary--center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-poker__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-poker__dark-section {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #0A0A0A;
}

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

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

.page-poker__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

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

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

/* Introduction Section */
.page-poker__introduction-section {
  padding: 60px 20px;
}

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

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

.page-poker__feature-card {
  text-align: center;
}

.page-poker__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: inline-block;
}

/* Game Selection Section */
.page-poker__game-selection-section {
  padding: 60px 20px;
}

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

.page-poker__game-card {
  text-align: center;
}

.page-poker__game-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Bonuses Section */
.page-poker__bonuses-section {
  padding: 60px 20px;
  background-color: #111111; /* Card BG */
}

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

.page-poker__bonus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__bonus-card .page-poker__btn-secondary {
  margin-top: 20px;
}

/* Getting Started Section */
.page-poker__getting-started-section {
  padding: 60px 20px;
}

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

.page-poker__step-card .page-poker__btn-primary {
  margin-top: 20px;
}

/* App Section */
.page-poker__app-section {
  padding: 60px 20px;
  background-color: #111111; /* Card BG */
}

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

.page-poker__app-content {
  flex: 1;
  min-width: 300px;
}

.page-poker__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-poker__app-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
}

.page-poker__app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-poker__app-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #FFF6D6;
}

.page-poker__app-features li img {
  
  
  margin-right: 15px;
  min-
  min-
  border-radius: 0;
}

/* Security Section */
.page-poker__security-section {
  padding: 60px 20px;
}

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

.page-poker__security-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  background-color: #111111; /* Card BG */
}

.page-poker__security-item img {
  
  
  margin-bottom: 15px;
  min-
  min-
  border-radius: 0;
}

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

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

/* Support Section */
.page-poker__support-section {
  padding: 60px 20px;
}

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

.page-poker__channel-card {
  text-align: center;
}

.page-poker__channel-card img {
  
  
  margin-bottom: 15px;
  min-
  min-
  border-radius: 0;
}

/* FAQ Section */
.page-poker__faq-section {
  padding: 60px 20px;
  background-color: #111111; /* Card BG */
}

.page-poker__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-poker__faq-item {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2C14E; /* Main color */
  transition: background-color 0.3s ease;
}

.page-poker__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-poker__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #FFF6D6;
}

.page-poker__faq-item.active .page-poker__faq-toggle {
  transform: rotate(45deg);
}

.page-poker__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 20px;
}

.page-poker__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Call to Action Section */
.page-poker__call-to-action-section {
  padding: 80px 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-poker {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-poker__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-poker__main-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-poker__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__btn-primary,
  .page-poker__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-poker__app-section .page-poker__container {
    flex-direction: column;
  }

  .page-poker__app-image-wrapper {
    order: -1; /* Image above content on mobile */
    margin-bottom: 30px;
  }

  /* All images responsive for mobile */
  .page-poker img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All containers with images need this for mobile */
  .page-poker__section,
  .page-poker__card,
  .page-poker__container,
  .page-poker__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-poker__hero-section {
    padding-top: 10px !important; /* Small top padding for hero on mobile */
  }

  .page-poker__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-poker__faq-answer {
    padding: 0 15px;
  }

  .page-poker__faq-item.active .page-poker__faq-answer {
    padding: 10px 15px;
  }

  /* Content area images minimum size */
  .page-poker__features-grid .page-poker__feature-icon,
  .page-poker__game-grid .page-poker__game-image {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-poker__app-features li img,
  .page-poker__security-item img,
  .page-poker__channel-card img {
    min-
    min-
    
    
  }

}