/* style/resources-f1686-popular-game-strategy.css */

:root {
    --primary-color: #002060;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0d0d1a;
    --bg-light-card: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
}

.page-resources-f1686-popular-game-strategy {
    color: var(--text-light); /* Body background is dark, so text is light */
    background-color: var(--bg-dark);
    padding-top: 120px; /* Adjust for fixed header on desktop */
    line-height: 1.6;
}

.page-resources-f1686-popular-game-strategy__content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-f1686-popular-game-strategy__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-f1686-popular-game-strategy__hero-title {
    font-size: 3.2em;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-f1686-popular-game-strategy__hero-description {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-resources-f1686-popular-game-strategy__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-f1686-popular-game-strategy__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensures responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-f1686-popular-game-strategy__cta-button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-f1686-popular-game-strategy__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-f1686-popular-game-strategy__cta-button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-f1686-popular-game-strategy__cta-button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-f1686-popular-game-strategy__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin: 60px 0 40px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-resources-f1686-popular-game-strategy__content-section,
.page-resources-f1686-popular-game-strategy__game-types-section,
.page-resources-f1686-popular-game-strategy__strategy-section,
.page-resources-f1686-popular-game-strategy__getting-started-section,
.page-resources-f1686-popular-game-strategy__app-download-section,
.page-resources-f1686-popular-game-strategy__faq-section,
.page-resources-f1686-popular-game-strategy__contact-cta-section {
    padding: 40px 0;
}

.page-resources-f1686-popular-game-strategy__content-section p,
.page-resources-f1686-popular-game-strategy__strategy-section p,
.page-resources-f1686-popular-game-strategy__getting-started-section p,
.page-resources-f1686-popular-game-strategy__app-download-section p,
.page-resources-f1686-popular-game-strategy__contact-cta-section p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-f1686-popular-game-strategy__image-text-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    background: var(--bg-light-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-f1686-popular-game-strategy__image-text-block-img {
    width: 40%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
    display: block;
}

.page-resources-f1686-popular-game-strategy__text-content {
    width: 60%;
}

.page-resources-f1686-popular-game-strategy__text-content-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-resources-f1686-popular-game-strategy__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-f1686-popular-game-strategy__list li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.3s ease;
}

.page-resources-f1686-popular-game-strategy__list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-f1686-popular-game-strategy__list li strong {
    color: var(--secondary-color);
}

.page-resources-f1686-popular-game-strategy__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-f1686-popular-game-strategy__game-card {
    background: var(--bg-light-card);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-f1686-popular-game-strategy__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-resources-f1686-popular-game-strategy__game-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    display: block;
}

.page-resources-f1686-popular-game-strategy__game-card-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-f1686-popular-game-strategy__game-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-resources-f1686-popular-game-strategy__game-card-title a:hover {
    text-decoration: underline;
}

.page-resources-f1686-popular-game-strategy__game-card-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: left;
}

.page-resources-f1686-popular-game-strategy__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-resources-f1686-popular-game-strategy__strategy-list li {
    background: var(--bg-light-card);
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 25px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-resources-f1686-popular-game-strategy__strategy-list li:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-f1686-popular-game-strategy__strategy-list-item-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-resources-f1686-popular-game-strategy__strategy-list li p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
}

.page-resources-f1686-popular-game-strategy__strategy-cta {
    text-align: center;
    margin-top: 40px;
}

.page-resources-f1686-popular-game-strategy__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-f1686-popular-game-strategy__step-card {
    background: var(--bg-light-card);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-f1686-popular-game-strategy__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.page-resources-f1686-popular-game-strategy__step-card-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    max-width: 100%;
    display: block;
}

.page-resources-f1686-popular-game-strategy__step-card-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-f1686-popular-game-strategy__step-card p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-resources-f1686-popular-game-strategy__app-download-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(90deg, #002d73 0%, var(--primary-color) 100%);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.page-resources-f1686-popular-game-strategy__app-download-img {
    width: 35%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
    display: block;
}

.page-resources-f1686-popular-game-strategy__app-download-text {
    width: 65%;
}

.page-resources-f1686-popular-game-strategy__app-download-text .page-resources-f1686-popular-game-strategy__section-title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.page-resources-f1686-popular-game-strategy__app-download-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.page-resources-f1686-popular-game-strategy__app-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section Styles */
.page-resources-f1686-popular-game-strategy__faq-list {
    margin-top: 40px;
}

.page-resources-f1686-popular-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-light-card);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f1686-popular-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-resources-f1686-popular-game-strategy__faq-item.active .page-resources-f1686-popular-game-strategy__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-resources-f1686-popular-game-strategy__faq-question:hover {
  background: #002d73;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-f1686-popular-game-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: var(--text-light);
}

.page-resources-f1686-popular-game-strategy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-f1686-popular-game-strategy__faq-item.active .page-resources-f1686-popular-game-strategy__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(180deg);
}

.page-resources-f1686-popular-game-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 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0 0 10px 10px;
}

.page-resources-f1686-popular-game-strategy__faq-item.active .page-resources-f1686-popular-game-strategy__faq-answer {
  max-height: 2000px !important; /* Use !important and large value */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-f1686-popular-game-strategy__faq-answer p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-f1686-popular-game-strategy__faq-answer p a:hover {
    color: #e6c200;
}

.page-resources-f1686-popular-game-strategy__contact-cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #002d73 0%, #001a40 100%);
}

.page-resources-f1686-popular-game-strategy__contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-f1686-popular-game-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-resources-f1686-popular-game-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-f1686-popular-game-strategy__image-text-block {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-f1686-popular-game-strategy__image-text-block-img,
    .page-resources-f1686-popular-game-strategy__text-content {
        width: 100%;
    }
    .page-resources-f1686-popular-game-strategy__app-download-content {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .page-resources-f1686-popular-game-strategy__app-download-img {
        width: 60%;
        margin: 0 auto 30px auto;
    }
    .page-resources-f1686-popular-game-strategy__app-download-text {
        width: 100%;
    }
    .page-resources-f1686-popular-game-strategy__app-download-text .page-resources-f1686-popular-game-strategy__section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-resources-f1686-popular-game-strategy {
        padding-top: 100px !important; /* Adjust for fixed header on mobile */
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-f1686-popular-game-strategy__content-container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-f1686-popular-game-strategy__hero-section {
        padding: 60px 0;
    }
    .page-resources-f1686-popular-game-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-resources-f1686-popular-game-strategy__hero-description {
        font-size: 1em;
    }
    .page-resources-f1686-popular-game-strategy__hero-cta-buttons,
    .page-resources-f1686-popular-game-strategy__app-download-buttons,
    .page-resources-f1686-popular-game-strategy__contact-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .page-resources-f1686-popular-game-strategy__cta-button {
        padding: 12px 25px !important;
        font-size: 1em !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-f1686-popular-game-strategy__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }
    .page-resources-f1686-popular-game-strategy__image-text-block {
        padding: 20px;
        gap: 20px;
    }
    .page-resources-f1686-popular-game-strategy__image-text-block-img,
    .page-resources-f1686-popular-game-strategy__text-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-resources-f1686-popular-game-strategy__image-text-block-img {
        height: auto !important;
    }
    .page-resources-f1686-popular-game-strategy__text-content-title {
        font-size: 1.5em;
    }
    .page-resources-f1686-popular-game-strategy__list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .page-resources-f1686-popular-game-strategy__game-grid {
        gap: 20px;
    }
    .page-resources-f1686-popular-game-strategy__game-card {
        padding: 20px;
    }
    .page-resources-f1686-popular-game-strategy__game-card-img {
        height: 180px;
    }
    .page-resources-f1686-popular-game-strategy__game-card-title {
        font-size: 1.4em;
    }
    .page-resources-f1686-popular-game-strategy__strategy-list li {
        padding: 20px 25px;
        margin-bottom: 20px;
    }
    .page-resources-f1686-popular-game-strategy__strategy-list-item-title {
        font-size: 1.3em;
    }
    .page-resources-f1686-popular-game-strategy__step-grid {
        gap: 20px;
    }
    .page-resources-f1686-popular-game-strategy__step-card {
        padding: 20px;
    }
    .page-resources-f1686-popular-game-strategy__step-card-img {
        width: 100px;
        height: 100px;
    }
    .page-resources-f1686-popular-game-strategy__step-card-title {
        font-size: 1.2em;
    }
    .page-resources-f1686-popular-game-strategy__app-download-content {
        padding: 30px;
    }
    .page-resources-f1686-popular-game-strategy__app-download-img {
        width: 80%;
    }
    .page-resources-f1686-popular-game-strategy__app-download-text .page-resources-f1686-popular-game-strategy__section-title {
        font-size: 1.8em;
    }
    .page-resources-f1686-popular-game-strategy__faq-question {
        padding: 15px 20px;
    }
    .page-resources-f1686-popular-game-strategy__faq-question h3 {
        font-size: 1.1em;
    }
    .page-resources-f1686-popular-game-strategy__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-resources-f1686-popular-game-strategy__faq-answer {
        padding: 0 20px;
    }
    .page-resources-f1686-popular-game-strategy__faq-item.active .page-resources-f1686-popular-game-strategy__faq-answer {
        padding: 15px 20px !important;
    }
    .page-resources-f1686-popular-game-strategy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-resources-f1686-popular-game-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-resources-f1686-popular-game-strategy__section-title {
        font-size: 1.6em;
    }
    .page-resources-f1686-popular-game-strategy__app-download-img {
        width: 90%;
    }
    .page-resources-f1686-popular-game-strategy__app-download-text .page-resources-f1686-popular-game-strategy__section-title {
        font-size: 1.6em;
    }
}