.page-game-guides {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-game-guides__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.page-game-guides__hero-title {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-game-guides__hero-description {
    font-size: 1.2em;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-game-guides__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-game-guides__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-game-guides__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

.page-game-guides__button--register:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-game-guides__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-game-guides__button--login:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.page-game-guides__button--details {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-guides__button--details:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-game-guides__button--explore {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-game-guides__button--explore:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.page-game-guides__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

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

.page-game-guides__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-guides__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: left;
    color: #333333;
}

.page-game-guides__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

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

.page-game-guides__benefit-item {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-game-guides__benefit-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-game-guides__benefit-description {
    font-size: 1em;
    color: #555555;
}

.page-game-guides__game-list {
    list-style: disc;
    padding-left: 30px;
    margin-top: 20px;
}

.page-game-guides__game-list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333333;
}

.page-game-guides__game-list-item strong {
    color: #000000;
}

.page-game-guides__guide-card {
    display: flex;
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    overflow: hidden;
    max-width: 900px;
}

.page-game-guides__guide-card-image {
    width: 40%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Ensure card image is not too small */
    min-height: 200px;
}

.page-game-guides__guide-card-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-game-guides__guide-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-game-guides__guide-card-title a {
    color: #000000;
    text-decoration: none;
}

.page-game-guides__guide-card-title a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-game-guides__guide-card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

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

.page-game-guides__tip-item {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-game-guides__tip-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-game-guides__tip-description {
    font-size: 1em;
    color: #555555;
}

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

.page-game-guides__faq-item {
    background-color: #F8F8F8;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-game-guides__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-game-guides__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-game-guides__cta-section {
    background-color: #F8F8F8;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-game-guides__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.page-game-guides__image-cta {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-game-guides__hero-title {
        font-size: 3em;
    }

    .page-game-guides__section-title {
        font-size: 2em;
    }

    .page-game-guides__guide-card {
        flex-direction: column;
        max-width: 600px;
    }

    .page-game-guides__guide-card-image,
    .page-game-guides__guide-card-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-guides__hero-title {
        font-size: 2.5em;
    }

    .page-game-guides__hero-description {
        font-size: 1em;
    }

    .page-game-guides__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-guides__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-game-guides__section-title {
        font-size: 1.8em;
    }

    .page-game-guides__paragraph,
    .page-game-guides__game-list-item,
    .page-game-guides__benefit-description,
    .page-game-guides__tip-description,
    .page-game-guides__guide-card-description,
    .page-game-guides__faq-answer {
        font-size: 0.95em;
    }

    .page-game-guides__guide-card-image,
    .page-game-guides__image-content,
    .page-game-guides__image-cta {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure mobile images are not too small */
        min-height: 200px;
    }

    .page-game-guides__container {
        padding: 20px 15px;
    }

    .page-game-guides__hero-container {
        padding: 40px 15px;
    }

    .page-game-guides__guide-card-content {
        padding: 20px;
    }

    .page-game-guides__guide-card-title {
        font-size: 1.4em;
    }

    .page-game-guides__tip-title,
    .page-game-guides__benefit-title {
        font-size: 1.3em;
    }

    .page-game-guides__faq-question {
        font-size: 1.1em;
    }

    .page-game-guides__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-guides__cta-actions .page-game-guides__button {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .page-game-guides__hero-title {
        font-size: 2em;
    }

    .page-game-guides__section-title {
        font-size: 1.5em;
    }

    .page-game-guides__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-game-guides__hero-container {
        padding: 30px 10px;
    }
}