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

.page-arcade__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Dark background for hero content */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.page-arcade__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.page-arcade__hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-arcade__hero-content {
    max-width: 800px;
}

.page-arcade__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-arcade__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

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

.page-arcade__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.page-arcade__button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-arcade__button--register:hover {
    background-color: #F0F0F0;
}

.page-arcade__button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-arcade__button--login:hover {
    background-color: #E0A83A;
}

.page-arcade__button--play, .page-arcade__button--promo, .page-arcade__button--register-large {
    background-color: #FCBC45;
    color: #000000;
}

.page-arcade__button--play:hover, .page-arcade__button--promo:hover, .page-arcade__button--register-large:hover {
    background-color: #E0A83A;
}

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

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

.page-arcade__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

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

.page-arcade__category-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-arcade__category-card:hover {
    transform: translateY(-5px);
}

.page-arcade__category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-arcade__category-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 10px;
}

.page-arcade__category-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
}

.page-arcade__features-section {
    background-color: #F8F8F8;
    padding: 60px 0;
}

.page-arcade__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-arcade__feature-item {
    text-align: center;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.page-arcade__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-arcade__feature-heading {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-arcade__feature-description {
    color: #666666;
    font-size: 0.95em;
}

.page-arcade__promotions-section {
    padding: 60px 0;
}

.page-arcade__promo-banner {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-arcade__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-arcade__cta-title {
    font-size: 3em;
    color: #FCBC45;
    margin-bottom: 20px;
}

.page-arcade__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-arcade__button--register-large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-arcade__hero-title {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .page-arcade {
        overflow-x: hidden;
    }
    .page-arcade__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
        padding-bottom: 60px;
    }
    .page-arcade__hero-title {
        font-size: 2.2em;
    }
    .page-arcade__hero-description {
        font-size: 1em;
    }
    .page-arcade__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-arcade__button {
        width: 100%;
        max-width: 250px;
    }
    .page-arcade__section-title {
        font-size: 2em;
    }
    .page-arcade__section-description {
        font-size: 1em;
    }
    .page-arcade__game-categories,
    .page-arcade__feature-list {
        grid-template-columns: 1fr;
    }
    .page-arcade__category-image,
    .page-arcade__promo-banner,
    .page-arcade__feature-icon {
        max-width: 100%;
        height: auto;
    }
    .page-arcade__cta-title {
        font-size: 2.5em;
    }
    .page-arcade__cta-description {
        font-size: 1em;
    }
    /* Ensure all content area images are responsive and not smaller than 200px */
    .page-arcade img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-arcade__feature-icon {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
    }
    .page-arcade__category-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-arcade__hero-title {
        font-size: 1.8em;
    }
    .page-arcade__section-title {
        font-size: 1.8em;
    }
    .page-arcade__cta-title {
        font-size: 2em;
    }
}