/* style/poker.css */
.page-poker {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  scroll-behavior: smooth;
}

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

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-poker__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-poker__hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 900px;
}

.page-poker__hero-content {
  background: rgba(17, 17, 17, 0.7); /* Card BG with transparency */
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-poker__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-poker__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__btn-primary, .page-poker__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  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: #000000; /* Dark text for contrast on bright button */
  border: 2px solid transparent;
}

.page-poker__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-poker__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-poker__btn-secondary:hover {
  background: #FFD36B;
  color: #0A0A0A; /* Dark text on hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

/* General Section Styling */
.page-poker__info-section, .page-poker__feature-section, .page-poker__games-section, .page-poker__process-section, .page-poker__promo-section, .page-poker__mobile-section, .page-poker__faq-section, .page-poker__responsible-gaming-section, .page-poker__outlook-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-poker__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-poker__text-block {
  font-size: 1.1rem;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

/* Feature Section / Card Layout */
.page-poker__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
}

.page-poker__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-poker__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__card-text {
  font-size: 1rem;
  color: #FFF6D6;
}

/* Games Section */
.page-poker__game-list {
  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: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-poker__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 180px;
}

.page-poker__game-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
}

.page-poker__game-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-poker__tournament-info {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 40px;
  margin-top: 50px;
  text-align: center;
}

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

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

.page-poker__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 100px;
  min-height: 100px;
}

.page-poker__step-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
}

.page-poker__step-description {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-poker__cta-block {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Mobile Section */
.page-poker__mobile-app-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__app-image {
  max-width: 100%;
  width: 600px;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__app-features {
  flex: 1;
  min-width: 300px;
  color: #FFF6D6;
}

.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.page-poker__feature-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
}

.page-poker__list-icon {
  color: #F2C14E; /* Main Color */
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* FAQ Section */
.page-poker__faq-list {
  margin-top: 40px;
}

.page-poker__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #FFD36B; /* Glow */
  font-weight: bold;
  background: #111111;
  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.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-poker__faq-answer p {
  margin-bottom: 15px;
}

.page-poker__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsible Gaming Section */
.page-poker__responsible-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__responsible-image {
  max-width: 100%;
  width: 600px;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  min-width: 200px;
  min-height: 200px;
}

/* Outlook Section */
.page-poker__outlook-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__outlook-image {
  max-width: 100%;
  width: 600px;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__outlook-text {
  flex: 1;
  min-width: 300px;
  color: #FFF6D6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-content {
    padding: 30px;
  }
  .page-poker__section-title {
    font-size: 2rem;
  }
  .page-poker__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 500px;
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-poker__hero-content {
    padding: 25px;
  }
  .page-poker__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-poker__subtitle {
    font-size: 1rem;
  }
  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn-primary, .page-poker__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-poker__info-section, .page-poker__feature-section, .page-poker__games-section, .page-poker__process-section, .page-poker__promo-section, .page-poker__mobile-section, .page-poker__faq-section, .page-poker__responsible-gaming-section, .page-poker__outlook-section {
    padding: 40px 0;
  }
  .page-poker__section-title {
    font-size: 1.8rem;
  }
  .page-poker__text-block {
    font-size: 0.95rem;
  }

  .page-poker__card, .page-poker__game-card, .page-poker__step-item {
    padding: 20px;
  }
  .page-poker__card-image, .page-poker__game-image, .page-poker__step-icon, .page-poker__app-image, .page-poker__responsible-image, .page-poker__outlook-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 150px;
  }
  .page-poker__card-title, .page-poker__game-title, .page-poker__step-title {
    font-size: 1.3rem;
  }

  .page-poker__mobile-app-showcase, .page-poker__responsible-features, .page-poker__outlook-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-poker__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-poker__faq-answer {
    padding: 0 20px;
  }
  .page-poker__faq-item.active .page-poker__faq-answer {
    padding: 15px 20px;
  }

  .page-poker__container, .page-poker__cta-block {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-poker__cta-buttons, .page-poker__button-group, .page-poker__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__main-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
  .page-poker__section-title {
    font-size: 1.5rem;
  }
  .page-poker__card-image, .page-poker__game-image, .page-poker__step-icon, .page-poker__app-image, .page-poker__responsible-image, .page-poker__outlook-image {
    min-width: 150px;
    min-height: 100px;
  }
}