/* style/game-strategies-tips-landlord-strategy.css */
:root {
    --primary-color: #0056B3;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #0d0d0d; /* Slightly lighter than black for better contrast on text */
    --background-light: #f8f9fa;
    --card-background: #ffffff;
    --border-color: #e0e0e0;
}

.page-game-strategies-tips-landlord-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Main page text color for dark body background */
    background-color: var(--background-dark);
}

/* Fixed navigation bar spacing for desktop */
.page-game-strategies-tips-landlord-strategy__hero-banner {
    padding-top: 180px; /* Adjust based on actual header height */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-game-strategies-tips-landlord-strategy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-strategies-tips-landlord-strategy__main-title {
    font-size: 3.5em;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-game-strategies-tips-landlord-strategy__main-title .highlight {
    color: var(--secondary-color);
}

.page-game-strategies-tips-landlord-strategy__subtitle {
    font-size: 1.4em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-game-strategies-tips-landlord-strategy__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page-game-strategies-tips-landlord-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.6);
}

.page-game-strategies-tips-landlord-strategy__section {
    padding: 60px 20px;
}

.page-game-strategies-tips-landlord-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-game-strategies-tips-landlord-strategy__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.page-game-strategies-tips-landlord-strategy__introduction-section .page-game-strategies-tips-landlord-strategy__section-title,
.page-game-strategies-tips-landlord-strategy__promotions-section .page-game-strategies-tips-landlord-strategy__section-title,
.page-game-strategies-tips-landlord-strategy__faq-section .page-game-strategies-tips-landlord-strategy__section-title {
    color: var(--text-dark);
}

.page-game-strategies-tips-landlord-strategy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-game-strategies-tips-landlord-strategy__introduction-section .page-game-strategies-tips-landlord-strategy__text-block,
.page-game-strategies-tips-landlord-strategy__promotions-section .page-game-strategies-tips-landlord-strategy__text-block,
.page-game-strategies-tips-landlord-strategy__faq-section .page-game-strategies-tips-landlord-strategy__text-block {
    color: var(--text-dark);
}

.page-game-strategies-tips-landlord-strategy__link-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-game-strategies-tips-landlord-strategy__link-text:hover {
    text-decoration: underline;
}

.page-game-strategies-tips-landlord-strategy__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-game-strategies-tips-landlord-strategy__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

/* Strategy Cards */
.page-game-strategies-tips-landlord-strategy__strategy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-tips-landlord-strategy__card {
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategies-tips-landlord-strategy__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-game-strategies-tips-landlord-strategy__card-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too small */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-strategies-tips-landlord-strategy__card-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-game-strategies-tips-landlord-strategy__card-content p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-game-strategies-tips-landlord-strategy__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(90deg, var(--primary-color), #003a7a);
    border-radius: 10px;
    color: var(--text-light);
}

.page-game-strategies-tips-landlord-strategy__call-to-action p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Promotion Cards */
.page-game-strategies-tips-landlord-strategy__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-tips-landlord-strategy__promotion-card {
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-game-strategies-tips-landlord-strategy__promotion-image {
    width: 100%;
    max-width: 300px; /* Ensure images are not too small */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-strategies-tips-landlord-strategy__promotion-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-game-strategies-tips-landlord-strategy__promotion-description {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Article Cards */
.page-game-strategies-tips-landlord-strategy__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategies-tips-landlord-strategy__article-card {
    background: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategies-tips-landlord-strategy__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-game-strategies-tips-landlord-strategy__article-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.page-game-strategies-tips-landlord-strategy__article-content {
    padding: 20px;
}

.page-game-strategies-tips-landlord-strategy__article-title {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-game-strategies-tips-landlord-strategy__article-excerpt {
    font-size: 0.95em;
    color: var(--text-dark);
}

.page-game-strategies-tips-landlord-strategy__article-title .highlight {
    color: var(--secondary-color);
}

/* Buttons */
.page-game-strategies-tips-landlord-strategy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-game-strategies-tips-landlord-strategy__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.page-game-strategies-tips-landlord-strategy__btn-primary:hover {
    background: #004499;
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
}

.page-game-strategies-tips-landlord-strategy__btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-game-strategies-tips-landlord-strategy__btn-secondary:hover {
    background: #e6c200;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

/* FAQ Section */
.page-game-strategies-tips-landlord-strategy__faq-list {
    margin-top: 40px;
}

.page-game-strategies-tips-landlord-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-game-strategies-tips-landlord-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-game-strategies-tips-landlord-strategy__faq-item.active .page-game-strategies-tips-landlord-strategy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-game-strategies-tips-landlord-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-game-strategies-tips-landlord-strategy__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-game-strategies-tips-landlord-strategy__faq-question:active {
  background: #eeeeee;
}

.page-game-strategies-tips-landlord-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-dark);
}

.page-game-strategies-tips-landlord-strategy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-game-strategies-tips-landlord-strategy__faq-item.active .page-game-strategies-tips-landlord-strategy__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* General text contrast fix */
.page-game-strategies-tips-landlord-strategy p,
.page-game-strategies-tips-landlord-strategy li {
    color: var(--text-dark); /* Ensure in most light backgrounds readable */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-strategies-tips-landlord-strategy__main-title {
        font-size: 2.8em;
    }
    .page-game-strategies-tips-landlord-strategy__subtitle {
        font-size: 1.2em;
    }
    .page-game-strategies-tips-landlord-strategy__section-title {
        font-size: 2em;
    }
    .page-game-strategies-tips-landlord-strategy__card-image,
    .page-game-strategies-tips-landlord-strategy__promotion-image,
    .page-game-strategies-tips-landlord-strategy__article-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-game-strategies-tips-landlord-strategy__hero-banner {
        padding-top: 140px !important; /* Mobile: Adjust for mobile header height */
        padding-bottom: 40px;
    }
    .page-game-strategies-tips-landlord-strategy__main-title {
        font-size: 2.2em;
    }
    .page-game-strategies-tips-landlord-strategy__subtitle {
        font-size: 1em;
    }
    .page-game-strategies-tips-landlord-strategy__section {
        padding: 40px 15px;
    }
    .page-game-strategies-tips-landlord-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-game-strategies-tips-landlord-strategy__text-block {
        font-size: 1em;
    }
    .page-game-strategies-tips-landlord-strategy__strategy-card-grid,
    .page-game-strategies-tips-landlord-strategy__promotion-grid,
    .page-game-strategies-tips-landlord-strategy__article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-game-strategies-tips-landlord-strategy__card,
    .page-game-strategies-tips-landlord-strategy__promotion-card,
    .page-game-strategies-tips-landlord-strategy__article-card {
        padding: 20px;
    }
    .page-game-strategies-tips-landlord-strategy__card-image,
    .page-game-strategies-tips-landlord-strategy__promotion-image,
    .page-game-strategies-tips-landlord-strategy__article-image {
        height: 180px;
    }
    .page-game-strategies-tips-landlord-strategy__card-title {
        font-size: 1.4em;
    }
    .page-game-strategies-tips-landlord-strategy__promotion-title {
        font-size: 1.3em;
    }
    .page-game-strategies-tips-landlord-strategy__article-title {
        font-size: 1.2em;
    }
    .page-game-strategies-tips-landlord-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-strategies-tips-landlord-strategy__call-to-action p {
        font-size: 1.2em;
    }
    /* Mobile image responsive fix */
    .page-game-strategies-tips-landlord-strategy img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    .page-game-strategies-tips-landlord-strategy__section,
    .page-game-strategies-tips-landlord-strategy__container,
    .page-game-strategies-tips-landlord-strategy__card,
    .page-game-strategies-tips-landlord-strategy__promotion-card,
    .page-game-strategies-tips-landlord-strategy__article-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-strategies-tips-landlord-strategy__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-game-strategies-tips-landlord-strategy__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-game-strategies-tips-landlord-strategy__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-game-strategies-tips-landlord-strategy__faq-answer {
        padding: 0 15px;
    }
    .page-game-strategies-tips-landlord-strategy__faq-item.active .page-game-strategies-tips-landlord-strategy__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-game-strategies-tips-landlord-strategy__main-title {
        font-size: 1.8em;
    }
    .page-game-strategies-tips-landlord-strategy__subtitle {
        font-size: 0.9em;
    }
    .page-game-strategies-tips-landlord-strategy__section-title {
        font-size: 1.5em;
    }
    .page-game-strategies-tips-landlord-strategy__card-image,
    .page-game-strategies-tips-landlord-strategy__promotion-image,
    .page-game-strategies-tips-landlord-strategy__article-image {
        height: 150px;
    }
}