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

.page-arcade-games__hero-section {
    position: relative;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding for non-homepage hero */
}

.page-arcade-games__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed */
    overflow: hidden;
}

.page-arcade-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-arcade-games__hero-content {
    padding: 40px 20px;
    background-color: #000000; /* Use main color for content block below image */
    text-align: center;
}

.page-arcade-games__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-arcade-games__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E5E5E5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-arcade-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-arcade-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-arcade-games__btn--primary {
    background-color: #FCBC45;
    color: #000000;
}

.page-arcade-games__btn--primary:hover {
    background-color: #E0A800;
}

.page-arcade-games__btn--secondary {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
}

.page-arcade-games__btn--secondary:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-arcade-games__introduction-section,
.page-arcade-games__game-showcase-section,
.page-arcade-games__features-section,
.page-arcade-games__cta-section,
.page-arcade-games__faq-section {
    padding: 60px 0;
    background-color: #000000;
    color: #FFFFFF;
}

.page-arcade-games__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.page-arcade-games__section-description {
    font-size: 1.1em;
    color: #E5E5E5;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-arcade-games__game-card {
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-arcade-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-arcade-games__game-trial-frame {
    width: 100%;
    height: 200px;
    border: none;
    background-color: #000000; /* Placeholder background for iframe */
}

.page-arcade-games__game-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-arcade-games__game-card-title {
    font-size: 1.5em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-arcade-games__game-card-text {
    color: #E5E5E5;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-arcade-games__game-card-btn {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-arcade-games__game-card-btn:hover {
    background-color: #E0A800;
}

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

.page-arcade-games__feature-item {
    text-align: center;
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-arcade-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-arcade-games__feature-title {
    font-size: 1.4em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-arcade-games__feature-description {
    color: #E5E5E5;
    font-size: 0.95em;
    line-height: 1.6;
}

.page-arcade-games__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #000000;
}

.page-arcade-games__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-arcade-games__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-arcade-games__cta-title {
    font-size: 2.8em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-arcade-games__cta-description {
    font-size: 1.2em;
    color: #E5E5E5;
    margin-bottom: 40px;
}

.page-arcade-games__btn--cta {
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 0 10px;
}

.page-arcade-games__btn--cta:hover {
    background-color: #E0A800;
}

.page-arcade-games__btn--cta-secondary {
    background-color: #FFFFFF;
    color: #000000;
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 0 10px;
    border: 1px solid #FFFFFF;
}

.page-arcade-games__btn--cta-secondary:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-arcade-games__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-arcade-games__faq-item {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__faq-question {
    font-size: 1.2em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-arcade-games__faq-answer {
    color: #E5E5E5;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-arcade-games__hero-title {
        font-size: 2em;
    }

    .page-arcade-games__hero-description {
        font-size: 1em;
    }

    .page-arcade-games__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-arcade-games__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-arcade-games__section-title {
        font-size: 2em;
    }

    .page-arcade-games__section-description {
        font-size: 1em;
    }

    .page-arcade-games__game-grid {
        grid-template-columns: 1fr;
    }

    .page-arcade-games__features-grid {
        grid-template-columns: 1fr;
    }

    .page-arcade-games__feature-icon {
        width: 60px;
        height: 60px;
    }

    .page-arcade-games__cta-title {
        font-size: 2em;
    }

    .page-arcade-games__cta-description {
        font-size: 1em;
    }

    .page-arcade-games__btn--cta,
    .page-arcade-games__btn--cta-secondary {
        font-size: 1em;
        padding: 12px 20px;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }

    /* Enforce min-width for content images in mobile */
    .page-arcade-games__game-card img,
    .page-arcade-games__features-section img,
    .page-arcade-games__cta-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }

    .page-arcade-games__game-card .page-arcade-games__game-trial-frame {
        height: 180px;
    }

    /* Ensure all images within .page-arcade-games are responsive and not too small */
    .page-arcade-games img {
        max-width: 100%;
        height: auto;
    }
    .page-arcade-games__feature-icon {
        width: 80px; /* Override previous 60px to meet min 200px rule for display */
        height: 80px;
        min-width: 200px;
        min-height: 200px;
        object-fit: contain; /* Adjust object-fit to ensure content is visible */
    }
    .page-arcade-games__feature-item .page-arcade-games__feature-icon {
        width: 200px;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
        object-fit: cover;
    }
}