:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --card-bg: #11271B;
    --background-color-page: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-game-guides {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background-color-page);
    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-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

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

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-game-guides__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-game-guides__main-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
}

.page-game-guides__hero-description {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary,
.page-game-guides__btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__btn-primary {
    background: var(--btn-gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-game-guides__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-game-guides__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-game-guides__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-game-guides__btn-read-more {
    background-color: var(--deep-green);
    color: var(--text-main);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 15px;
}

.page-game-guides__btn-read-more:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
}

.page-game-guides__why-thomo38-section {
    padding: 80px 0;
    background-color: var(--deep-green);
}

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

.page-game-guides__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-guides__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.page-game-guides__popular-guides-section {
    padding: 80px 0;
    background-color: var(--background-color-page);
}

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

.page-game-guides__guide-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.page-game-guides__guide-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-game-guides__guide-card-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.page-game-guides__guide-card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides__guide-card-title a:hover {
    color: var(--gold-color);
}

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

.page-game-guides__access-guides-section {
    padding: 80px 0;
    background-color: var(--deep-green);
}

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

.page-game-guides__step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-guides__step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.page-game-guides__step-title {
    font-size: 24px;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-game-guides__step-text {
    font-size: 16px;
    color: var(--text-secondary);
}

.page-game-guides__step-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-game-guides__step-text a:hover {
    text-decoration: underline;
}

.page-game-guides__cta-bottom {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-game-guides__faq-section {
    padding: 80px 0;
    background-color: var(--background-color-page);
}

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

.page-game-guides__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-game-guides__faq-item[open] {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.page-game-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
    list-style: none;
}

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

.page-game-guides__faq-question:hover {
    background-color: rgba(17, 168, 78, 0.1);
}

.page-game-guides__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

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

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
    color: var(--gold-color);
}

.page-game-guides__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.page-game-guides__faq-answer p {
    margin-bottom: 10px;
}

.page-game-guides__faq-answer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-game-guides__faq-answer a:hover {
    text-decoration: underline;
}

.page-game-guides__cta-final-section {
    padding: 80px 0;
    background-color: var(--deep-green);
    text-align: center;
}

.page-game-guides__cta-final-section .page-game-guides__cta-buttons {
    margin-top: 40px;
}

.page-game-guides a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-game-guides a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .page-game-guides__container {
        padding: 0 15px;
    }

    .page-game-guides__section-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .page-game-guides__hero-description,
    .page-game-guides__section-description {
        font-size: 17px;
    }

    .page-game-guides__main-title {
        font-size: clamp(28px, 6vw, 48px);
    }

    .page-game-guides__hero-image-wrapper {
        max-height: 450px;
    }

    .page-game-guides__hero-section,
    .page-game-guides__why-thomo38-section,
    .page-game-guides__popular-guides-section,
    .page-game-guides__access-guides-section,
    .page-game-guides__faq-section,
    .page-game-guides__cta-final-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-game-guides {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-game-guides__container,
    .page-game-guides__hero-content,
    .page-game-guides__hero-image-wrapper,
    .page-game-guides__why-thomo38-section .page-game-guides__container,
    .page-game-guides__popular-guides-section .page-game-guides__container,
    .page-game-guides__access-guides-section .page-game-guides__container,
    .page-game-guides__faq-section .page-game-guides__container,
    .page-game-guides__cta-final-section .page-game-guides__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-game-guides__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-game-guides__feature-icon,
    .page-game-guides__guide-card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-game-guides__hero-cta-buttons,
    .page-game-guides__cta-bottom,
    .page-game-guides__cta-final-section .page-game-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary,
    .page-game-guides__btn-read-more {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-game-guides__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-game-guides__hero-image-wrapper {
        margin-bottom: 20px;
        max-height: 300px;
    }

    .page-game-guides__main-title {
        font-size: clamp(24px, 7vw, 40px);
    }

    .page-game-guides__hero-description {
        font-size: 16px;
    }

    .page-game-guides__why-thomo38-section,
    .page-game-guides__popular-guides-section,
    .page-game-guides__access-guides-section,
    .page-game-guides__faq-section,
    .page-game-guides__cta-final-section {
        padding: 40px 0;
    }

    .page-game-guides__feature-card,
    .page-game-guides__guide-card,
    .page-game-guides__step-card {
        padding: 20px;
    }

    .page-game-guides__feature-title,
    .page-game-guides__guide-card-title,
    .page-game-guides__step-title {
        font-size: 20px;
    }

    .page-game-guides__faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .page-game-guides__faq-answer {
        font-size: 15px;
        padding: 0 20px 15px 20px;
    }
}

.page-game-guides img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-game-guides__video-section {
        padding-top: 10px !important;
    }
}

.page-game-guides p,
.page-game-guides li,
.page-game-guides__feature-text,
.page-game-guides__guide-card-text,
.page-game-guides__step-text,
.page-game-guides__faq-answer p {
    color: var(--text-secondary);
}

.page-game-guides p a,
.page-game-guides li a {
    color: var(--secondary-color);
    text-decoration: underline;
}
.page-game-guides p a:hover,
.page-game-guides li a:hover {
    color: var(--gold-color);
}