/* style/game-reviews-zbet-card-games-features.css */

:root {
  --zbet-primary: #1A2E5B;
  --zbet-secondary: #FF8C00;
  --zbet-text-dark: #333;
  --zbet-text-light: #f8f8f8;
  --zbet-bg-light: #f0f2f5;
  --zbet-bg-dark: #101d3b;
  --zbet-accent-gold: #e5d1a4;
}

.page-game-reviews-zbet-card-games-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--zbet-text-dark);
  background-color: var(--zbet-bg-light);
}

.page-game-reviews-zbet-card-games-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-reviews-zbet-card-games-features__container--center {
  text-align: center;
}

/* Hero Section */
.page-game-reviews-zbet-card-games-features__hero {
  background: linear-gradient(135deg, var(--zbet-primary) 0%, #2a4a7e 100%);
  color: var(--zbet-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-zbet-card-games-features__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:zbet,card_games_pattern,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-zbet-card-games-features__hero > .page-game-reviews-zbet-card-games-features__container {
  position: relative;
  z-index: 1;
}

.page-game-reviews-zbet-card-games-features__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--zbet-secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-game-reviews-zbet-card-games-features__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-game-reviews-zbet-card-games-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-reviews-zbet-card-games-features__btn--primary {
  background-color: var(--zbet-secondary);
  color: var(--zbet-primary);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.page-game-reviews-zbet-card-games-features__btn--primary:hover {
  background-color: #ff9d2b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.page-game-reviews-zbet-card-games-features__btn--secondary {
  background-color: transparent;
  color: var(--zbet-text-light);
  border: 2px solid var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--zbet-secondary);
  color: var(--zbet-secondary);
}

.page-game-reviews-zbet-card-games-features__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: var(--zbet-secondary);
  color: var(--zbet-primary);
  margin-top: 15px;
}

.page-game-reviews-zbet-card-games-features__btn--small:hover {
  background-color: #ff9d2b;
  transform: translateY(-2px);
}

/* Sections */
.page-game-reviews-zbet-card-games-features__section {
  padding: 80px 0;
}

.page-game-reviews-zbet-card-games-features__section:nth-of-type(even) {
  background-color: var(--zbet-bg-light);
}

.page-game-reviews-zbet-card-games-features__heading {
  font-size: 2.8em;
  color: var(--zbet-primary);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-zbet-card-games-features__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--zbet-secondary);
  border-radius: 2px;
}

.page-game-reviews-zbet-card-games-features__description {
  font-size: 1.1em;
  color: var(--zbet-text-dark);
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

/* About Section */
.page-game-reviews-zbet-card-games-features__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-game-reviews-zbet-card-games-features__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-game-reviews-zbet-card-games-features__content-grid:nth-child(even) .page-game-reviews-zbet-card-games-features__image-wrapper {
    order: 1;
  }
}

.page-game-reviews-zbet-card-games-features__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #555;
}

.page-game-reviews-zbet-card-games-features__image-wrapper {
  text-align: center;
}

.page-game-reviews-zbet-card-games-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Game Cards Section */
.page-game-reviews-zbet-card-games-features__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-reviews-zbet-card-games-features__game-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-zbet-card-games-features__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-zbet-card-games-features__game-card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-reviews-zbet-card-games-features__game-card-title {
  font-size: 1.6em;
  color: var(--zbet-primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-reviews-zbet-card-games-features__game-card-text {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Features Section */
.page-game-reviews-zbet-card-games-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-reviews-zbet-card-games-features__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--zbet-secondary);
}

.page-game-reviews-zbet-card-games-features__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-zbet-card-games-features__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(255, 140, 0, 0.3));
}

.page-game-reviews-zbet-card-games-features__feature-title {
  font-size: 1.4em;
  color: var(--zbet-primary);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-reviews-zbet-card-games-features__feature-text {
  font-size: 0.95em;
  color: #777;
}

/* Offers Section */
.page-game-reviews-zbet-card-games-features__section--offers {
  background-color: var(--zbet-primary);
  color: var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__section--offers .page-game-reviews-zbet-card-games-features__heading {
  color: var(--zbet-secondary);
}

.page-game-reviews-zbet-card-games-features__section--offers .page-game-reviews-zbet-card-games-features__heading::after {
  background-color: var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__section--offers .page-game-reviews-zbet-card-games-features__description {
  color: var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__list {
  list-style: none;
  padding: 0;
  margin: 30px auto 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-game-reviews-zbet-card-games-features__list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: var(--zbet-text-light);
  position: relative;
  padding-left: 40px;
}

.page-game-reviews-zbet-card-games-features__list li::before {
  content: '✔';
  color: var(--zbet-secondary);
  position: absolute;
  left: 15px;
  font-weight: bold;
  font-size: 1.2em;
}

/* Guide Section */
.page-game-reviews-zbet-card-games-features__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-reviews-zbet-card-games-features__guide-step {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 5px solid var(--zbet-primary);
}

.page-game-reviews-zbet-card-games-features__guide-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 3px 8px rgba(26, 46, 91, 0.3));
}

.page-game-reviews-zbet-card-games-features__guide-title {
  font-size: 1.5em;
  color: var(--zbet-primary);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-reviews-zbet-card-games-features__guide-text {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
}

/* Conclusion Section */
.page-game-reviews-zbet-card-games-features__section--conclusion {
  background-color: var(--zbet-bg-dark);
  color: var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__section--conclusion .page-game-reviews-zbet-card-games-features__heading {
  color: var(--zbet-secondary);
}

.page-game-reviews-zbet-card-games-features__section--conclusion .page-game-reviews-zbet-card-games-features__heading::after {
  background-color: var(--zbet-text-light);
}

.page-game-reviews-zbet-card-games-features__section--conclusion .page-game-reviews-zbet-card-games-features__description {
  color: var(--zbet-text-light);
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-reviews-zbet-card-games-features__title {
    font-size: 2.8em;
  }
  .page-game-reviews-zbet-card-games-features__subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews-zbet-card-games-features__heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-zbet-card-games-features__hero {
    padding: 80px 0;
  }
  .page-game-reviews-zbet-card-games-features__title {
    font-size: 2.2em;
  }
  .page-game-reviews-zbet-card-games-features__subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-zbet-card-games-features__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews-zbet-card-games-features__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-reviews-zbet-card-games-features__section {
    padding: 60px 0;
  }
  .page-game-reviews-zbet-card-games-features__heading {
    font-size: 1.8em;
  }
  .page-game-reviews-zbet-card-games-features__description {
    font-size: 1em;
  }
  .page-game-reviews-zbet-card-games-features__game-card, 
  .page-game-reviews-zbet-card-games-features__feature-item, 
  .page-game-reviews-zbet-card-games-features__guide-step {
    padding: 20px;
  }
  .page-game-reviews-zbet-card-games-features__game-card-title, 
  .page-game-reviews-zbet-card-games-features__feature-title, 
  .page-game-reviews-zbet-card-games-features__guide-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-zbet-card-games-features__hero {
    padding: 60px 0;
  }
  .page-game-reviews-zbet-card-games-features__title {
    font-size: 1.8em;
  }
  .page-game-reviews-zbet-card-games-features__subtitle {
    font-size: 0.95em;
  }
  .page-game-reviews-zbet-card-games-features__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-zbet-card-games-features__section {
    padding: 40px 0;
  }
  .page-game-reviews-zbet-card-games-features__heading {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-game-reviews-zbet-card-games-features__description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-game-reviews-zbet-card-games-features__list li {
    font-size: 0.95em;
    padding: 12px 15px 12px 35px;
  }
  .page-game-reviews-zbet-card-games-features__game-card-image {
    max-height: 150px;
  }
}