:root {
    --page-game-guide__primary-color: #2F6BFF;
    --page-game-guide__secondary-color: #6FA3FF;
    --page-game-guide__button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --page-game-guide__card-bg: #FFFFFF;
    --page-game-guide__background-color: #F4F7FB;
    --page-game-guide__text-main: #1F2D3D;
    --page-game-guide__text-dark: #000000;
    --page-game-guide__border-color: #D6E2FF;
    --page-game-guide__glow-color: #A5C4FF;
}

.page-game-guide {
    background-color: var(--page-game-guide__background-color);
    color: var(--page-game-guide__text-main);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-game-guide__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
    background-color: var(--page-game-guide__background-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-game-guide__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-game-guide__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--page-game-guide__text-dark);
    margin-bottom: 15px;
    max-width: 100%;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-game-guide__intro-text {
    font-size: 1.1rem;
    color: var(--page-game-guide__text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-guide__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.page-game-guide__btn--primary {
    background: var(--page-game-guide__button-gradient);
    color: var(--page-game-guide__card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guide__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guide__btn--secondary {
    background-color: var(--page-game-guide__card-bg);
    color: var(--page-game-guide__primary-color);
    border: 2px solid var(--page-game-guide__primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guide__btn--secondary:hover {
    background-color: var(--page-game-guide__primary-color);
    color: var(--page-game-guide__card-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guide__btn--small {
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.page-game-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
}

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

.page-game-guide__section--bg-light {
    background-color: var(--page-game-guide__background-color);
}

.page-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guide__section-title {
    font-size: 2.2rem;
    color: var(--page-game-guide__text-dark);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-game-guide__section-description {
    font-size: 1.05rem;
    color: var(--page-game-guide__text-main);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-guide__game-card {
    background-color: var(--page-game-guide__card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-game-guide__border-color);
}

.page-game-guide__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-game-guide__game-card-content {
    padding: 25px;
}

.page-game-guide__game-card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--page-game-guide__text-dark);
}

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

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

.page-game-guide__game-card-text {
    font-size: 0.95rem;
    color: var(--page-game-guide__text-main);
    margin-bottom: 20px;
}

.page-game-guide__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-game-guide__strategy-item {
    background-color: var(--page-game-guide__card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--page-game-guide__primary-color);
}

.page-game-guide__strategy-item-title {
    font-size: 1.25rem;
    color: var(--page-game-guide__primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-guide__strategy-item-text {
    font-size: 1rem;
    color: var(--page-game-guide__text-main);
}

.page-game-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-game-guide__download-section {
    padding: 80px 0;
    background-color: var(--page-game-guide__primary-color);
    color: var(--page-game-guide__card-bg);
}

.page-game-guide__download-section .page-game-guide__section-title,
.page-game-guide__download-section .page-game-guide__section-description {
    color: var(--page-game-guide__card-bg);
}

.page-game-guide__download-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.page-game-guide__download-content {
    flex: 1;
    min-width: 300px;
}

.page-game-guide__download-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.page-game-guide__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-game-guide__hero-content {
        padding: 0 15px;
    }

    .page-game-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-game-guide__intro-text {
        font-size: 1rem;
    }

    .page-game-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-guide__btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-game-guide__section-title {
        font-size: 1.8rem;
    }

    .page-game-guide__section-description {
        font-size: 0.95rem;
    }

    .page-game-guide__game-cards {
        grid-template-columns: 1fr;
    }

    .page-game-guide__download-flex {
        flex-direction: column;
        text-align: center;
    }

    .page-game-guide__download-content,
    .page-game-guide__download-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-game-guide img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-game-guide__hero-section,
    .page-game-guide__content-section,
    .page-game-guide__download-section {
        padding: 30px 0;
    }

    .page-game-guide__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-game-guide__section-title {
        font-size: 1.6rem;
    }
}