/* style/card-poker.css */
.page-card-poker {
  font-family: 'Arial', sans-serif;
  color: #F5E6CE; /* Light text on dark backgrounds */
  background-color: #0A1931; /* Main dark background */
}

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

.page-card-poker__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-card-poker__hero-content {
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-card-poker__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-card-poker__hero-description {
  font-size: 1.2em;
  color: #F5E6CE;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-card-poker__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-card-poker__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-card-poker__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-card-poker__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-card-poker__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-card-poker__btn--tertiary {
  background-color: #1a2a47;
  color: #F5E6CE;
  border: 2px solid #1a2a47;
}

.page-card-poker__btn--tertiary:hover {
  background-color: #2c426b;
  border-color: #2c426b;
  transform: translateY(-2px);
}

.page-card-poker__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A1931;
  border: none;
}

.page-card-poker__btn--small:hover {
  background-color: #e6c200;
}

.page-card-poker__btn--large {
  padding: 16px 35px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #FFD700;
  color: #0A1931;
  border: none;
  margin-top: 30px;
}

.page-card-poker__btn--large:hover {
  background-color: #e6c200;
}

.page-card-poker__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  z-index: 1;
}

.page-card-poker__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-card-poker__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
  font-weight: bold;
}

.page-card-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-card-poker__description-text {
  font-size: 1.1em;
  color: #F5E6CE;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.page-card-poker__about-section {
  background-color: #0A1931;
  padding: 60px 0;
}

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

.page-card-poker__feature-item {
  background-color: #1a2a47; /* Slightly lighter dark blue for feature cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card-poker__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.page-card-poker__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-card-poker__feature-text {
  font-size: 1em;
  color: #F5E6CE;
  line-height: 1.6;
}

.page-card-poker__feature-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-card-poker__games-overview {
  background-color: #0A1931;
  padding: 60px 0;
}

.page-card-poker__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-card-poker__game-card {
  background-color: #1a2a47;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-card-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

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

.page-card-poker__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-card-poker__game-description {
  font-size: 1em;
  color: #F5E6CE;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-card-poker__game-lobby {
  background-color: #0A1931;
  padding: 60px 0;
  text-align: center;
}

.page-card-poker__lobby-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  object-fit: cover;
}

.page-card-poker__responsible-gaming {
  background-color: #1a2a47;
  padding: 60px 0;
  text-align: center;
}

.page-card-poker__cta-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
  padding: 80px 0;
  text-align: center;
}

.page-card-poker__brand-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-card-poker__brand-link:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-card-poker__hero-title {
    font-size: 2.8em;
  }
  .page-card-poker__hero-description {
    font-size: 1.1em;
  }
  .page-card-poker__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-card-poker__hero-section {
    padding: 60px 0 30px;
  }
  .page-card-poker__hero-title {
    font-size: 2.2em;
  }
  .page-card-poker__hero-description {
    font-size: 1em;
  }
  .page-card-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-card-poker__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-card-poker__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-card-poker__description-text {
    font-size: 0.95em;
  }
  .page-card-poker__feature-title, .page-card-poker__game-title {
    font-size: 1.5em;
  }
  .page-card-poker__feature-text, .page-card-poker__game-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-card-poker__hero-section {
    padding: 40px 0 20px;
  }
  .page-card-poker__hero-title {
    font-size: 1.8em;
  }
  .page-card-poker__hero-description {
    font-size: 0.9em;
  }
  .page-card-poker__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-card-poker__section-title {
    font-size: 1.5em;
  }
  .page-card-poker__btn--large {
    font-size: 1.1em;
    padding: 14px 30px;
  }
}