.page-game-guides {
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-game-guides__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px; /* Space below content */
    background-color: #08160F; /* Ensure dark background */
    padding-top: 10px; /* Small top padding for first section */
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-game-guides__hero-content {
    max-width: 900px;
    padding: 20px 20px 0;
    margin-top: -80px; /* Overlap slightly with image for visual effect, but not text on image */
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.page-game-guides__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-game-guides__description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button fits container */
    box-sizing: border-box;
}

.page-game-guides__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-game-guides__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-game-guides__btn-secondary {
    background-color: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border color */
}

.page-game-guides__btn-secondary:hover {
    background-color: #2E7A4E; /* Border color */
    color: #F2FFF6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 122, 78, 0.4);
}

.page-game-guides__btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.page-game-guides__section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-game-guides__section:nth-of-type(even) {
    background-color: #111e17; /* Slightly different background for contrast */
}

.page-game-guides__container {
    width: 100%; /* Ensure desktop width: 100% is present */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-game-guides__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-game-guides__list-item {
    background-color: #11271B; /* Card B G */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #F2FFF6; /* Text Main */
    border-left: 5px solid #11A84E; /* Main color accent */
    font-size: 1.05rem;
}

.page-game-guides__list-item strong {
    color: #57E38D; /* Glow */
}

.page-game-guides__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__card {
    background-color: #11271B; /* Card B G */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #F2FFF6; /* Text Main */
    border: 1px solid #1E3A2A; /* Divider */
}

.page-game-guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.4); /* Glow on hover */
}

.page-game-guides__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-game-guides__card-title {
    font-size: 1.5rem;
    color: #F2FFF6; /* Text Main */
    padding: 20px 20px 10px;
    margin: 0;
}

.page-game-guides__card p {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-game-guides__btn-text {
    display: block;
    text-align: center;
    padding: 15px 20px;
    background-color: #11A84E; /* Main color */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    font-weight: bold;
    border-top: 1px solid #2E7A4E; /* Border */
    transition: background-color 0.3s ease;
}

.page-game-guides__btn-text:hover {
    background-color: #22C768; /* Auxiliary color */
}

.page-game-guides__article-block {
    background-color: #11271B; /* Card B G */
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #1E3A2A; /* Divider */
}

.page-game-guides__article-title {
    font-size: 1.6rem;
    color: #F2FFF6; /* Text Main */
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #2E7A4E; /* Border */
    padding-bottom: 10px;
}

.page-game-guides__article-block p {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-game-guides__article-block strong {
    color: #57E38D; /* Glow */
}

.page-game-guides__strategy-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: block;
}

.page-game-guides__faq {
    padding-bottom: 60px;
}

.page-game-guides__faq-list {
    margin-top: 40px;
}

.page-game-guides__faq-item {
    background-color: #11271B; /* Card B G */
    border: 1px solid #1E3A2A; /* Divider */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-game-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card B G */
    position: relative;
    list-style: none; /* For <summary> */
}

.page-game-guides__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-game-guides__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow */
    transition: transform 0.3s ease;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
}

.page-game-guides__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.5;
}

.page-game-guides__faq-answer p {
    margin-top: 0;
    color: #A7D9B8; /* Text Secondary */
}

.page-game-guides__conclusion .page-game-guides__text-center {
    text-align: center;
}

.page-game-guides__conclusion p {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-guides__hero-content {
        margin-top: -60px;
    }
    .page-game-guides__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-game-guides__description {
        font-size: 1rem;
    }
    .page-game-guides__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-game-guides__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-guides {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-game-guides__hero-section {
        padding-top: 10px !important;
    }
    .page-game-guides__hero-content {
        margin-top: -40px;
        padding-top: 10px !important; /* Small top padding for mobile */
    }
    .page-game-guides__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-game-guides__description {
        font-size: 0.95rem;
    }
    .page-game-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary,
    .page-game-guides a[class*="button"],
    .page-game-guides a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides__cta-buttons,
    .page-game-guides__button-group,
    .page-game-guides__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-game-guides__section,
    .page-game-guides__card,
    .page-game-guides__container,
    .page-game-guides__article-block,
    .page-game-guides__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-guides__hero-image-wrapper {
        max-height: 300px;
    }
    .page-game-guides__card-image {
        height: 180px;
    }
    .page-game-guides__video-section {
        padding-top: 10px !important;
    }
}