/* style/card-games-landlord.css */

.page-card-games-landlord {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0F1A2B; /* Dark background */
  line-height: 1.6;
}

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

.page-card-games-landlord__hero-section {
  background: linear-gradient(135deg, #0F1A2B 0%, #3a4b6b 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-card-games-landlord__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-card-games-landlord__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-card-games-landlord__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-card-games-landlord__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-card-games-landlord__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-card-games-landlord__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-card-games-landlord__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;
  border: none;
  cursor: pointer;
}

.page-card-games-landlord__btn--primary {
  background-color: #DC143C; /* Deep red for primary CTA */
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.page-card-games-landlord__btn--primary:hover {
  background-color: #A5002A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
}

.page-card-games-landlord__btn--secondary {
  background-color: #FFD700; /* Gold for secondary CTA */
  color: #0F1A2B;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-card-games-landlord__btn--secondary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-card-games-landlord__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFD700; /* Gold for section titles */
  padding-top: 60px;
  position: relative;
}

.page-card-games-landlord__section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-card-games-landlord__section-paragraph {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-card-games-landlord__intro-section, 
.page-card-games-landlord__rules-section, 
.page-card-games-landlord__strategy-section, 
.page-card-games-landlord__cta-section, 
.page-card-games-landlord__faq-section {
  padding: 80px 0;
}

.page-card-games-landlord__intro-section {
  background-color: #1a2a40;
}

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

.page-card-games-landlord__feature-item {
  background-color: #0F1A2B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card-games-landlord__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-card-games-landlord__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

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

.page-card-games-landlord__rules-section {
  background-color: #0F1A2B;
}

.page-card-games-landlord__image-text-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-card-games-landlord__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-card-games-landlord__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-card-games-landlord__text-content {
  flex: 2;
  min-width: 300px;
}

.page-card-games-landlord__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-card-games-landlord__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-card-games-landlord__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-card-games-landlord__list li strong {
  color: #FFD700;
}

.page-card-games-landlord__strategy-section {
  background-color: #1a2a40;
}

.page-card-games-landlord__grid-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-card-games-landlord__grid-item {
  background-color: #0F1A2B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card-games-landlord__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-card-games-landlord__strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-card-games-landlord__cta-section {
  text-align: center;
  background-color: #0F1A2B;
  position: relative;
  overflow: hidden;
}

.page-card-games-landlord__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(15, 26, 43, 0.8) 70%);
  z-index: 1;
}

.page-card-games-landlord__cta-section .page-card-games-landlord__container {
  position: relative;
  z-index: 2;
}

.page-card-games-landlord__cta-section .page-card-games-landlord__section-title {
  margin-bottom: 30px;
}

.page-card-games-landlord__cta-section .page-card-games-landlord__section-paragraph {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-card-games-landlord__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.page-card-games-landlord__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-card-games-landlord__faq-section {
  background-color: #1a2a40;
}

.page-card-games-landlord__faq-item {
  background-color: #0F1A2B;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-card-games-landlord__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-card-games-landlord__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-card-games-landlord .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-card-games-landlord__hero-title {
    font-size: 2.8em;
  }
  .page-card-games-landlord__section-title {
    font-size: 2.2em;
  }
  .page-card-games-landlord__image-text-layout {
    flex-direction: column;
  }
  .page-card-games-landlord__image-wrapper, .page-card-games-landlord__text-content {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-card-games-landlord__hero-title {
    font-size: 2.2em;
  }
  .page-card-games-landlord__hero-description {
    font-size: 1.1em;
  }
  .page-card-games-landlord__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-card-games-landlord__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-card-games-landlord__section-title {
    font-size: 1.8em;
  }
  .page-card-games-landlord__features, .page-card-games-landlord__grid-columns {
    grid-template-columns: 1fr;
  }
  .page-card-games-landlord__feature-title, .page-card-games-landlord__sub-title {
    font-size: 1.5em;
  }
  .page-card-games-landlord__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-card-games-landlord__hero-title {
    font-size: 1.8em;
  }
  .page-card-games-landlord__hero-description {
    font-size: 1em;
  }
  .page-card-games-landlord__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-card-games-landlord__section-title {
    font-size: 1.5em;
  }
  .page-card-games-landlord__section-paragraph, .page-card-games-landlord__list li, .page-card-games-landlord__faq-answer {
    font-size: 0.95em;
  }
  .page-card-games-landlord__faq-question {
    font-size: 1.2em;
  }
  .page-card-games-landlord__hero-section, .page-card-games-landlord__intro-section, .page-card-games-landlord__rules-section, .page-card-games-landlord__strategy-section, .page-card-games-landlord__cta-section, .page-card-games-landlord__faq-section {
    padding: 60px 0;
  }
}