/* style/poker-rooms.css */
.page-poker-rooms {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
}

.page-poker-rooms__hero-section {
  padding: 60px 20px;
  padding-top: 10px;
  text-align: center;
  overflow: hidden;
  background-color: #0A0A0A;
}

.page-poker-rooms__hero-image {
  margin-bottom: 20px;
}

.page-poker-rooms__hero-image img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3); /* Glow */
}

.page-poker-rooms__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.page-poker-rooms__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #F2C14E; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-poker-rooms__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-poker-rooms__hero-buttons,
.page-poker-rooms__cta-buttons,
.page-poker-rooms__final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.page-poker-rooms__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #111111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  text-align: center;
}

.page-poker-rooms__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-poker-rooms__button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4); /* Glow on hover */
}

.page-poker-rooms__button--secondary {
  background-color: transparent;
  border: 2px solid #F2C14E;
  color: #F2C14E;
}

.page-poker-rooms__button--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.4); /* Glow on hover */
}

.page-poker-rooms__button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  min-width: 120px;
}

.page-poker-rooms__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-poker-rooms__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-poker-rooms__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #FFD36B;
  border-radius: 2px;
}

.page-poker-rooms__section-title--light {
  color: #FFF6D6;
}

.page-poker-rooms__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF6D6;
  text-align: center;
}

.page-poker-rooms__text--light {
  color: #FFF6D6;
}

.page-poker-rooms__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

.page-poker-rooms__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.5); /* Glow on hover */
}

.page-poker-rooms__feature-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-poker-rooms__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
}

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

.page-poker-rooms__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker-rooms__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.5); /* Glow on hover */
}

.page-poker-rooms__game-card img {
  width: 100%;
  height: auto;
  max-width: 400px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #3A2A12;
}

.page-poker-rooms__game-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-poker-rooms__game-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker-rooms__cta-section {
  background-color: #0A0A0A;
  padding: 60px 20px;
  text-align: center;
}

.page-poker-rooms__cta-section--alt {
  background: linear-gradient(135deg, #111111 0%, #0A0A0A 100%);
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

.page-poker-rooms__cta-content {
  max-width: 800px;
}

.page-poker-rooms__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-poker-rooms__guide-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-poker-rooms__guide-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
}

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

.page-poker-rooms__bonus-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker-rooms__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.5); /* Glow on hover */
}

.page-poker-rooms__bonus-card img {
  width: 100%;
  height: auto;
  max-width: 400px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #3A2A12;
}

.page-poker-rooms__bonus-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-poker-rooms__bonus-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker-rooms__security-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-poker-rooms__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-poker-rooms__security-text {
  flex: 1;
  min-width: 300px;
}

.page-poker-rooms__security-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-poker-rooms__security-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.3); /* Glow */
  border: 1px solid #3A2A12;
}

.page-poker-rooms__security-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-poker-rooms__security-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #FFF6D6;
  text-align: left;
}

.page-poker-rooms__security-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-weight: bold;
}

.page-poker-rooms__mobile-section {
  padding: 60px 20px;
}

.page-poker-rooms__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-poker-rooms__mobile-feature {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-poker-rooms__mobile-feature img {
  width: 100%;
  max-width: 300px;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.4); /* Glow */
  border: 1px solid #3A2A12;
}

.page-poker-rooms__mobile-features-list {
  flex: 1.5;
  min-width: 300px;
}

.page-poker-rooms__feature-list--light .page-poker-rooms__feature-title {
  color: #F2C14E;
}
.page-poker-rooms__feature-list--light .page-poker-rooms__feature-description {
  color: #FFF6D6;
}

.page-poker-rooms__responsible-gaming-section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-poker-rooms__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.page-poker-rooms__responsible-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #FFF6D6;
  display: inline-block;
  margin-right: 20px;
  text-align: left;
}

.page-poker-rooms__responsible-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-poker-rooms__responsible-gaming-section a {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
}

.page-poker-rooms__responsible-gaming-section a:hover {
  text-decoration: underline;
}

.page-poker-rooms__faq-section {
  padding: 60px 20px;
  background-color: #111111; /* Card BG */
  border-top: 1px solid #3A2A12;
}

.page-poker-rooms__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-poker-rooms__faq-question {
  font-size: 1.2rem;
  color: #FFD36B;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-poker-rooms__faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  display: none;
}

.page-poker-rooms__final-cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #111111 0%, #0A0A0A 100%);
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-poker-rooms__final-cta-content {
  max-width: 900px;
}

@media (max-width: 768px) {
  .page-poker-rooms__hero-buttons,
  .page-poker-rooms__cta-buttons,
  .page-poker-rooms__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker-rooms__button {
    width: 100%;
    max-width: 300px;
  }

  .page-poker-rooms__feature-list,
  .page-poker-rooms__game-grid,
  .page-poker-rooms__bonus-grid,
  .page-poker-rooms__guide-list {
    grid-template-columns: 1fr;
  }

  .page-poker-rooms__security-content,
  .page-poker-rooms__mobile-content {
    flex-direction: column;
  }

  .page-poker-rooms__security-image,
  .page-poker-rooms__mobile-feature {
    order: -1;
  }

  .page-poker-rooms__text {
    text-align: left;
  }

  .page-poker-rooms__responsible-item {
    display: block;
    margin-right: 0;
  }

  .page-poker-rooms img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-poker-rooms__game-card img,
  .page-poker-rooms__bonus-card img,
  .page-poker-rooms__security-image img,
  .page-poker-rooms__mobile-feature img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

.page-poker-rooms img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-poker-rooms img:not(.page-poker-rooms__hero-image img) {
  min-width: 200px;
  min-height: 200px;
}