.page-game-guides {
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-game-guides__section {
    padding: 60px 0;
}

.page-game-guides__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold, #F2C14E);
}

.page-game-guides__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-secondary, #A7D9B8);
}

.page-game-guides__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.page-game-guides__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    text-align: center;
    background: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
    width: 100%;
    max-width: 900px;
    margin-top: -80px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.page-game-guides__main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--gold, #F2C14E);
}

.page-game-guides__intro-text {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-game-guides__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
    background: transparent;
    color: var(--primary-color, #11A84E);
    border: 2px solid var(--primary-color, #11A84E);
}

.page-game-guides__btn-secondary:hover {
    background: var(--primary-color, #11A84E);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-game-guides__light-bg {
    background-color: var(--background, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-game-guides__dark-bg {
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
}

.page-game-guides__why-choose .page-game-guides__section-title {
    color: var(--gold, #F2C14E);
}

.page-game-guides__why-choose .page-game-guides__section-description {
    color: var(--text-secondary, #A7D9B8);
}

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

.page-game-guides__feature-item {
    background: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-game-guides__feature-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gold, #F2C14E);
}

.page-game-guides__feature-text {
    font-size: 16px;
    color: var(--text-secondary, #A7D9B8);
}

.page-game-guides__game-guides-section {
    background-color: var(--card-bg, #11271B);
}

.page-game-guides__game-guides-section .page-game-guides__section-title {
    color: var(--gold, #F2C14E);
}

.page-game-guides__game-guides-section .page-game-guides__section-description {
    color: var(--text-secondary, #A7D9B8);
}

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

.page-game-guides__card {
    background: var(--background, #08160F);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--divider, #1E3A2A);
    display: flex;
    flex-direction: column;
}

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

.page-game-guides__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-game-guides__card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-main, #F2FFF6);
}

.page-game-guides__card-text {
    font-size: 16px;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__btn-text {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color, #11A84E);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    margin-top: auto;
}

.page-game-guides__btn-text:hover {
    color: var(--gold, #F2C14E);
}

.page-game-guides__arrow {
    margin-left: 8px;
    font-size: 18px;
    line-height: 1;
}

.page-game-guides__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-game-guides__tips-section .page-game-guides__section-title {
    color: var(--gold, #F2C14E);
}

.page-game-guides__tips-section .page-game-guides__section-description {
    color: var(--text-secondary, #A7D9B8);
}

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

.page-game-guides__tip-item {
    background: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-game-guides__tip-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--gold, #F2C14E);
}

.page-game-guides__tip-text {
    font-size: 16px;
    color: var(--text-secondary, #A7D9B8);
}

.page-game-guides__faq-section {
    background-color: var(--card-bg, #11271B);
}

.page-game-guides__faq-section .page-game-guides__section-title {
    color: var(--gold, #F2C14E);
}

.page-game-guides__faq-section .page-game-guides__section-description {
    color: var(--text-secondary, #A7D9B8);
}

.page-game-guides__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-game-guides__faq-item {
    background: var(--background, #08160F);
    border: 1px solid var(--divider, #1E3A2A);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-game-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-main, #F2FFF6);
    cursor: pointer;
    background: var(--deep-green, #0A4B2C);
    border-bottom: 1px solid transparent;
    list-style: none;
}

.page-game-guides__faq-question::-webkit-details-marker {
    display: none;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
    border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-game-guides__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color, #11A84E);
}

.page-game-guides__faq-answer {
    padding: 20px 25px;
    font-size: 16px;
    color: var(--text-secondary, #A7D9B8);
}

.page-game-guides__faq-answer p {
    margin: 0;
}

.page-game-guides__cta-bottom {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--background, #08160F);
}

.page-game-guides__cta-bottom .page-game-guides__section-title {
    color: var(--gold, #F2C14E);
}

.page-game-guides__cta-bottom .page-game-guides__section-description {
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 50px;
}

.page-game-guides__cta-bottom .page-game-guides__cta-buttons {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .page-game-guides__hero-content {
        max-width: 800px;
        margin-top: -60px;
    }
    .page-game-guides__main-title {
        font-size: clamp(28px, 4.5vw, 48px);
    }
    .page-game-guides__intro-text {
        font-size: 18px;
    }
    .page-game-guides__section-title {
        font-size: clamp(26px, 3.5vw, 38px);
    }
    .page-game-guides__section-description {
        font-size: 16px;
    }
    .page-game-guides__feature-title,
    .page-game-guides__card-title,
    .page-game-guides__tip-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-game-guides__section {
        padding: 40px 0;
    }
    .page-game-guides__hero-section {
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
    }
    .page-game-guides__hero-content {
        padding: 30px 15px;
        margin-top: -40px;
        border-radius: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides__main-title {
        font-size: clamp(26px, 6vw, 38px);
    }
    .page-game-guides__intro-text {
        font-size: 16px;
    }
    .page-game-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary {
        padding: 12px 20px;
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-game-guides__container,
    .page-game-guides__hero-image-wrapper,
    .page-game-guides__card,
    .page-game-guides__feature-item,
    .page-game-guides__tip-item,
    .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__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-game-guides__faq-answer {
        padding: 15px 20px;
        font-size: 15px;
    }
    .page-game-guides__hero-section {
        padding-top: 10px !important;
    }
    .page-game-guides__cta-bottom {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .page-game-guides__cta-bottom .page-game-guides__section-description {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-content {
        margin-top: -30px;
    }
    .page-game-guides__main-title {
        font-size: clamp(24px, 7vw, 32px);
    }
    .page-game-guides__intro-text {
        font-size: 15px;
    }
    .page-game-guides__section-title {
        font-size: clamp(22px, 5vw, 30px);
    }
    .page-game-guides__section-description {
        font-size: 14px;
    }
    .page-game-guides__feature-title,
    .page-game-guides__card-title,
    .page-game-guides__tip-title {
        font-size: 20px;
    }
    .page-game-guides__feature-item,
    .page-game-guides__card,
    .page-game-guides__tip-item {
        padding: 20px;
    }
    .page-game-guides__faq-question {
        font-size: 15px;
    }
    .page-game-guides__faq-answer {
        font-size: 14px;
    }
}