.page-arcade-games__hero-section {
    position: relative;
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding-bottom: 40px;
}

.page-arcade-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

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

.page-arcade-games__hero-content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative; /* Ensure content is above image but not overlapping */
    z-index: 1; /* Ensure content is on top if any subtle overlap occurs due to margins */
}

.page-arcade-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.page-arcade-games__main-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #E5E5E5;
}

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

.page-arcade-games__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade-games__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

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

.page-arcade-games__button--secondary {
    background-color: transparent;
    border: 2px solid #F2C14E;
    color: #F2C14E;
}

.page-arcade-games__button--secondary:hover {
    background-color: #F2C14E;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-arcade-games__button--small {
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
}

.page-arcade-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #0A0A0A;
    color: #FFF6D6;
}

.page-arcade-games__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-arcade-games__text-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #E5E5E5;
}

.page-arcade-games__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-arcade-games__game-card {
    background-color: #111111;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
}

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

.page-arcade-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-arcade-games__card-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-arcade-games__card-description {
    font-size: 0.95rem;
    color: #E5E5E5;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-arcade-games__game-trial-wrapper {
    background-color: #111111;
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
}

.page-arcade-games__game-trial-title {
    font-size: 2rem;
    color: #F2C14E;
    margin-bottom: 20px;
}

.page-arcade-games__game-trial-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid #F2C14E;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-arcade-games__game-trial-text {
    font-size: 1.1rem;
    color: #E5E5E5;
    margin-bottom: 30px;
}

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

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

.page-arcade-games__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    min-width: 60px; /* Enforce min size for icons */
    min-height: 60px;
}

.page-arcade-games__feature-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-arcade-games__cta-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 60px 20px;
    text-align: center;
}

.page-arcade-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-arcade-games__faq-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 60px 20px;
}

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

.page-arcade-games__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-arcade-games__faq-answer a {
    color: #FFD36B;
    text-decoration: none;
}

.page-arcade-games__faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-arcade-games__hero-content-area {
        padding: 15px;
    }

    .page-arcade-games__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-arcade-games__main-description {
        font-size: 1rem;
    }

    .page-arcade-games__hero-buttons,
    .page-arcade-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-arcade-games__button {
        width: 100%;
    }

    .page-arcade-games__container {
        padding: 30px 15px;
    }

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

    .page-arcade-games__game-grid,
    .page-arcade-games__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-arcade-games__card-image,
    .page-arcade-games__image-content {
        max-width: 100%;
        height: auto;
    }

    .page-arcade-games__game-trial-wrapper {
        padding: 25px;
    }

    .page-arcade-games__game-trial-title {
        font-size: 1.6rem;
    }

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

    .page-arcade-games__text-content img,
    .page-arcade-games__game-card img,
    .page-arcade-games__feature-item img,
    .page-arcade-games__hero-image {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-arcade-games__text-content img,
    .page-arcade-games__game-card img,
    .page-arcade-games__feature-item img,
    .page-arcade-games__image-content,
    .page-arcade-games__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
}