/* style/resources-panaloko-casino-latest-games-review.css */

:root {
    --primary-color: #000000;
    --secondary-color: #FFFFFF;
    --accent-color-login: #FCBC45;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-light: #f8f8f8;
}

.page-resources-panaloko-casino-latest-games-review {
    color: var(--text-color-dark); /* Dark text for light body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Desktop fixed header offset */
    overflow-x: hidden;
}

.page-resources-panaloko-casino-latest-games-review__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-panaloko-casino-latest-games-review__hero-section {
    background-color: var(--background-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-resources-panaloko-casino-latest-games-review__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-panaloko-casino-latest-games-review__hero-title {
    color: var(--primary-color);
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-panaloko-casino-latest-games-review__hero-description {
    font-size: 1.1em;
    color: var(--text-color-dark);
    margin-bottom: 30px;
}

.page-resources-panaloko-casino-latest-games-review__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-panaloko-casino-latest-games-review__hero-button {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.page-resources-panaloko-casino-latest-games-review__hero-button--register {
    background-color: var(--primary-color); /* Black background */
    color: var(--secondary-color); /* White text */
}

.page-resources-panaloko-casino-latest-games-review__hero-button--register:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-resources-panaloko-casino-latest-games-review__hero-button--login {
    background-color: var(--accent-color-login); /* FCBC45 background */
    color: var(--primary-color); /* Black text */
}

.page-resources-panaloko-casino-latest-games-review__hero-button--login:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

.page-resources-panaloko-casino-latest-games-review__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-panaloko-casino-latest-games-review__introduction,
.page-resources-panaloko-casino-latest-games-review__why-choose,
.page-resources-panaloko-casino-latest-games-review__how-to-start,
.page-resources-panaloko-casino-latest-games-review__responsible-gaming,
.page-resources-panaloko-casino-latest-games-review__conclusion {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.page-resources-panaloko-casino-latest-games-review__games-list {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-resources-panaloko-casino-latest-games-review__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-panaloko-casino-latest-games-review__section-text {
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: justify;
}

.page-resources-panaloko-casino-latest-games-review__game-card {
    display: flex;
    flex-direction: row;
    background-color: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-resources-panaloko-casino-latest-games-review__game-card:hover {
    transform: translateY(-5px);
}

.page-resources-panaloko-casino-latest-games-review__game-image {
    flex: 1;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-resources-panaloko-casino-latest-games-review__game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-panaloko-casino-latest-games-review__game-content {
    flex: 1.5;
    padding: 40px;
}

.page-resources-panaloko-casino-latest-games-review__game-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-panaloko-casino-latest-games-review__game-subtitle {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-panaloko-casino-latest-games-review__game-description {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-resources-panaloko-casino-latest-games-review__game-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-resources-panaloko-casino-latest-games-review__game-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
}

.page-resources-panaloko-casino-latest-games-review__game-features li::before {
    content: '✓';
    color: var(--accent-color-login);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-resources-panaloko-casino-latest-games-review__game-button {
    background-color: var(--accent-color-login);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.page-resources-panaloko-casino-latest-games-review__game-button:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

.page-resources-panaloko-casino-latest-games-review__features-grid,
.page-resources-panaloko-casino-latest-games-review__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-panaloko-casino-latest-games-review__feature-item,
.page-resources-panaloko-casino-latest-games-review__step-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-resources-panaloko-casino-latest-games-review__feature-item:hover,
.page-resources-panaloko-casino-latest-games-review__step-item:hover {
    transform: translateY(-5px);
}

.page-resources-panaloko-casino-latest-games-review__feature-title,
.page-resources-panaloko-casino-latest-games-review__step-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-panaloko-casino-latest-games-review__feature-text,
.page-resources-panaloko-casino-latest-games-review__step-text {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-resources-panaloko-casino-latest-games-review__step-button,
.page-resources-panaloko-casino-latest-games-review__responsible-gaming-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.page-resources-panaloko-casino-latest-games-review__step-button:hover,
.page-resources-panaloko-casino-latest-games-review__responsible-gaming-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-resources-panaloko-casino-latest-games-review__cta-banner {
    background-color: var(--primary-color); /* Dark background for CTA */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-panaloko-casino-latest-games-review__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.page-resources-panaloko-casino-latest-games-review__cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-panaloko-casino-latest-games-review__cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--text-color-light);
}

.page-resources-panaloko-casino-latest-games-review__cta-title {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-panaloko-casino-latest-games-review__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-resources-panaloko-casino-latest-games-review__cta-button {
    background-color: var(--accent-color-login);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.page-resources-panaloko-casino-latest-games-review__cta-button:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

.page-resources-panaloko-casino-latest-games-review__back-to-resources {
    padding: 30px 0;
    text-align: center;
    background-color: var(--background-light);
}

.page-resources-panaloko-casino-latest-games-review__back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-panaloko-casino-latest-games-review__back-link:hover {
    color: var(--accent-color-login);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-panaloko-casino-latest-games-review__game-image {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-resources-panaloko-casino-latest-games-review__hero-section {
        padding: 50px 15px;
    }

    .page-resources-panaloko-casino-latest-games-review__hero-title {
        font-size: 2.2em;
    }

    .page-resources-panaloko-casino-latest-games-review__hero-description {
        font-size: 1em;
    }

    .page-resources-panaloko-casino-latest-games-review__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-panaloko-casino-latest-games-review__section-title {
        font-size: 2em;
    }

    .page-resources-panaloko-casino-latest-games-review__game-card {
        flex-direction: column;
    }

    .page-resources-panaloko-casino-latest-games-review__game-image {
        min-width: unset;
    }

    .page-resources-panaloko-casino-latest-games-review__game-content {
        padding: 30px;
    }

    .page-resources-panaloko-casino-latest-games-review__game-title {
        font-size: 1.5em;
    }

    .page-resources-panaloko-casino-latest-games-review__game-subtitle {
        font-size: 1.2em;
    }

    .page-resources-panaloko-casino-latest-games-review__features-grid,
    .page-resources-panaloko-casino-latest-games-review__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-panaloko-casino-latest-games-review__cta-title {
        font-size: 1.8em;
    }

    .page-resources-panaloko-casino-latest-games-review__cta-description {
        font-size: 1em;
    }

    .page-resources-panaloko-casino-latest-games-review__hero-image img,
    .page-resources-panaloko-casino-latest-games-review__game-image img,
    .page-resources-panaloko-casino-latest-games-review__cta-image img,
    .page-resources-panaloko-casino-latest-games-review img { /* Apply to all content images */
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-panaloko-casino-latest-games-review__hero-title {
        font-size: 1.8em;
    }

    .page-resources-panaloko-casino-latest-games-review__section-title {
        font-size: 1.6em;
    }

    .page-resources-panaloko-casino-latest-games-review__game-title {
        font-size: 1.3em;
    }

    .page-resources-panaloko-casino-latest-games-review__feature-title,
    .page-resources-panaloko-casino-latest-games-review__step-title {
        font-size: 1.3em;
    }

    .page-resources-panaloko-casino-latest-games-review__cta-title {
        font-size: 1.5em;
    }

    .page-resources-panaloko-casino-latest-games-review__hero-button,
    .page-resources-panaloko-casino-latest-games-review__cta-button {
        font-size: 0.9em;
        padding: 12px 25px;
    }
}

/* Ensure all content images meet minimum size requirements for display */
.page-resources-panaloko-casino-latest-games-review img:not([class*="shared-"]) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensures images fill their space without distortion */
}