.page-resources-how-to-play-effectively {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default for light body background */
    background-color: #FFFFFF; /* Ensures content area has defined background */
    padding-top: var(--header-offset, 120px); /* For desktop */
}

.page-resources-how-to-play-effectively__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* Text on hero image */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}

.page-resources-how-to-play-effectively__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-resources-how-to-play-effectively__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-resources-how-to-play-effectively__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
    padding: 30px;
    border-radius: 8px;
}

.page-resources-how-to-play-effectively__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-how-to-play-effectively__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-resources-how-to-play-effectively__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-how-to-play-effectively__hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-how-to-play-effectively__hero-button--register {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-how-to-play-effectively__hero-button--register:hover {
    background-color: #e0a030;
    transform: translateY(-2px);
}

.page-resources-how-to-play-effectively__hero-button--login {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-how-to-play-effectively__hero-button--login:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-resources-how-to-play-effectively__content-section {
    padding: 40px 20px;
    background-color: #FFFFFF;
}

.page-resources-how-to-play-effectively__content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-how-to-play-effectively__intro-paragraph {
    font-size: 1.15em;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #333333;
}

.page-resources-how-to-play-effectively__heading {
    font-size: 2.2em;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-how-to-play-effectively__subheading {
    font-size: 1.7em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-resources-how-to-play-effectively__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333333;
}

.page-resources-how-to-play-effectively__action-button {
    display: inline-block;
    background-color: #000000;
    color: #FCBC45;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #000000;
}

.page-resources-how-to-play-effectively__action-button:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-resources-how-to-play-effectively__image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-how-to-play-effectively__final-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.page-resources-how-to-play-effectively__action-button--primary {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-resources-how-to-play-effectively__action-button--primary:hover {
    background-color: #e0a030;
    color: #000000;
    border-color: #e0a030;
}

.page-resources-how-to-play-effectively__action-button--secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.page-resources-how-to-play-effectively__action-button--secondary:hover {
    background-color: #f0f0f0;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-how-to-play-effectively__hero-title {
        font-size: 2.8em;
    }
    .page-resources-how-to-play-effectively__hero-description {
        font-size: 1.1em;
    }
    .page-resources-how-to-play-effectively__heading {
        font-size: 2em;
    }
    .page-resources-how-to-play-effectively__subheading {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-play-effectively {
        padding-top: var(--header-offset, 80px);
    }
    .page-resources-how-to-play-effectively__hero-section {
        padding: 60px 15px;
    }
    .page-resources-how-to-play-effectively__hero-title {
        font-size: 2.2em;
    }
    .page-resources-how-to-play-effectively__hero-description {
        font-size: 1em;
    }
    .page-resources-how-to-play-effectively__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-how-to-play-effectively__hero-button {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-how-to-play-effectively__content-section {
        padding: 30px 15px;
    }
    .page-resources-how-to-play-effectively__heading {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-resources-how-to-play-effectively__subheading {
        font-size: 1.3em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-resources-how-to-play-effectively__paragraph {
        font-size: 0.95em;
    }
    .page-resources-how-to-play-effectively__action-button {
        width: 100%;
        max-width: 300px;
    }
    .page-resources-how-to-play-effectively__final-cta {
        margin-top: 40px;
    }
    .page-resources-how-to-play-effectively__image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-resources-how-to-play-effectively__content-wrapper img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-play-effectively__hero-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-play-effectively__hero-description {
        font-size: 0.9em;
    }
    .page-resources-how-to-play-effectively__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-how-to-play-effectively__heading {
        font-size: 1.5em;
    }
    .page-resources-how-to-play-effectively__subheading {
        font-size: 1.2em;
    }
    .page-resources-how-to-play-effectively__intro-paragraph {
        font-size: 1em;
    }
    .page-resources-how-to-play-effectively__paragraph {
        font-size: 0.9em;
    }
}