:root {
    --primary-color: #F2C14E; /* Main accent color */
    --secondary-color: #FFD36B; /* Secondary accent color */
    --bg-dark: #0A0A0A; /* Body background */
    --card-bg: #111111; /* Card/section background */
    --text-light: #FFF6D6; /* Main text color on dark backgrounds */
    --text-white: #ffffff; /* Pure white for contrast on buttons/darkest elements */
    --border-color: #3A2A12; /* Border color */
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --glow-color: #FFD36B;
}

.page-blog-c54-info-game-strategy {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Main text color */
    background-color: var(--bg-dark); /* Body background */
    line-height: 1.6;
    font-size: 16px;
    padding-bottom: 50px; /* Space above footer */
}

.page-blog-c54-info-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-c54-info-game-strategy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--bg-dark); /* Ensure consistency */
    overflow: hidden; /* Prevent image overflow */
}

.page-blog-c54-info-game-strategy__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width within max-width */
}

.page-blog-c54-info-game-strategy__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-c54-info-game-strategy__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-blog-c54-info-game-strategy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px; /* Inner padding for text */
    box-sizing: border-box;
}

.page-blog-c54-info-game-strategy__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
    color: var(--secondary-color); /* Highlight with secondary color */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Soft glow */
}

.page-blog-c54-info-game-strategy__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-c54-info-game-strategy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: 1px solid var(--primary-color);
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-c54-info-game-strategy__cta-button:hover {
    background: var(--primary-color); /* Solid primary on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-c54-info-game-strategy__cta-button--small {
    padding: 10px 25px;
    font-size: 16px;
    margin: 10px 5px; /* Adjust margin for multiple buttons */
}

.page-blog-c54-info-game-strategy__cta-button--large {
    padding: 18px 45px;
    font-size: 20px;
}

/* General Section Styling */
.page-blog-c54-info-game-strategy__section {
    padding: 50px 0;
    background-color: var(--card-bg); /* Use card background for sections */
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-c54-info-game-strategy__section-title {
    font-size: clamp(24px, 3vw, 38px);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-c54-info-game-strategy__sub-section-title {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--secondary-color);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.page-blog-c54-info-game-strategy p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-blog-c54-info-game-strategy__highlight-text {
    color: var(--primary-color);
    font-weight: bold;
}

.page-blog-c54-info-game-strategy__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-blog-c54-info-game-strategy__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.page-blog-c54-info-game-strategy__list li::before {
    content: '✓'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.page-blog-c54-info-game-strategy__list-item-title {
    color: var(--primary-color);
}

.page-blog-c54-info-game-strategy__image-center {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

/* FAQ Section Styling */
.page-blog-c54-info-game-strategy__faq-list {
    margin-top: 30px;
}

details.page-blog-c54-info-game-strategy__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

details.page-blog-c54-info-game-strategy__faq-item summary.page-blog-c54-info-game-strategy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

details.page-blog-c54-info-game-strategy__faq-item summary.page-blog-c54-info-game-strategy__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-c54-info-game-strategy__faq-item summary.page-blog-c54-info-game-strategy__faq-question:hover {
    background: rgba(var(--primary-color), 0.1); /* Lighter hover effect */
}

.page-blog-c54-info-game-strategy__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-light); /* Question text color */
}

.page-blog-c54-info-game-strategy__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-blog-c54-info-game-strategy__faq-item[open] .page-blog-c54-info-game-strategy__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

details.page-blog-c54-info-game-strategy__faq-item .page-blog-c54-info-game-strategy__faq-answer {
    padding: 0 25px 20px;
    background: rgba(var(--primary-color), 0.05); /* Slightly lighter background for answer */
    border-radius: 0 0 8px 8px;
    color: var(--text-light); /* Answer text color */
}

.page-blog-c54-info-game-strategy__faq-answer p {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-c54-info-game-strategy__hero-image {
        margin-bottom: 20px;
    }
    .page-blog-c54-info-game-strategy__hero-image img {
        border-radius: 10px;
    }
    .page-blog-c54-info-game-strategy__main-title {
        font-size: clamp(26px, 3.5vw, 40px);
    }
    .page-blog-c54-info-game-strategy__subtitle {
        font-size: clamp(15px, 1.8vw, 18px);
    }
    .page-blog-c54-info-game-strategy__cta-button {
        padding: 12px 30px;
        font-size: 17px;
    }
    .page-blog-c54-info-game-strategy__section-title {
        font-size: clamp(22px, 2.8vw, 34px);
    }
    .page-blog-c54-info-game-strategy__sub-section-title {
        font-size: clamp(18px, 2.2vw, 24px);
    }
    details.page-blog-c54-info-game-strategy__faq-item summary.page-blog-c54-info-game-strategy__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-blog-c54-info-game-strategy__faq-qtext {
        font-size: 16px;
    }
    .page-blog-c54-info-game-strategy__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-c54-info-game-strategy {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-blog-c54-info-game-strategy__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }
    .page-blog-c54-info-game-strategy__hero-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .page-blog-c54-info-game-strategy__main-title {
        font-size: clamp(24px, 7vw, 36px);
        margin-bottom: 10px;
    }
    .page-blog-c54-info-game-strategy__subtitle {
        font-size: clamp(14px, 3.5vw, 16px);
        margin-bottom: 20px;
    }
    .page-blog-c54-info-game-strategy__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        margin-top: 15px;
        width: 100% !important; /* Button responsiveness */
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
        margin-right: 0;
    }
    .page-blog-c54-info-game-strategy__cta-button--small {
        margin: 5px 0; /* Stack small buttons */
    }
    .page-blog-c54-info-game-strategy__section {
        padding: 30px 0;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .page-blog-c54-info-game-strategy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-blog-c54-info-game-strategy__section-title {
        font-size: clamp(20px, 6vw, 30px);
        margin-bottom: 30px;
    }
    .page-blog-c54-info-game-strategy__sub-section-title {
        font-size: clamp(17px, 5vw, 22px);
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .page-blog-c54-info-game-strategy__list li {
        padding-left: 25px;
        font-size: 15px;
    }
    .page-blog-c54-info-game-strategy__list li::before {
        font-size: 18px;
    }
    .page-blog-c54-info-game-strategy__image-center {
        margin: 20px auto;
        border-radius: 6px;
    }

    /* Images responsiveness */
    .page-blog-c54-info-game-strategy img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
    }
    .page-blog-c54-info-game-strategy__section,
    .page-blog-c54-info-game-strategy__card,
    .page-blog-c54-info-game-strategy__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-blog-c54-info-game-strategy__hero-section {
      padding-top: 10px !important;
    }

    /* FAQ */
    details.page-blog-c54-info-game-strategy__faq-item {
        margin-bottom: 10px;
        border-radius: 6px;
    }
    details.page-blog-c54-info-game-strategy__faq-item summary.page-blog-c54-info-game-strategy__faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }
    .page-blog-c54-info-game-strategy__faq-qtext {
        font-size: 15px;
    }
    .page-blog-c54-info-game-strategy__faq-toggle {
        font-size: 24px;
        width: 25px;
        margin-left: 10px;
    }
    details.page-blog-c54-info-game-strategy__faq-item .page-blog-c54-info-game-strategy__faq-answer {
        padding: 0 15px 12px;
    }
}