/* style/arcade.css */

/* Base styles for the arcade page */
.page-arcade {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Page background color */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

/* Hero Section */
.page-arcade__hero-section {
    position: relative;
    overflow: hidden;
    color: #FFFFFF; /* Light text for hero content */
    text-align: center;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure hero section has a minimum height */
}

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

.page-arcade__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-arcade__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
    padding: 40px;
    border-radius: 10px;
}

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

.page-arcade__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

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

.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;
    white-space: nowrap;
}

.page-arcade__button--register {
    background-color: #FFFFFF; /* Register button background */
    color: #000000; /* Dark text for register button */
    border: 2px solid #FFFFFF;
}

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

.page-arcade__button--login {
    background-color: #FCBC45; /* Login button background */
    color: #000000; /* Dark text for login button */
    border: 2px solid #FCBC45;
}

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

/* General Section Styles */
.page-arcade__section-title {
    font-size: 2.5em;
    color: #000000; /* Main dark color for titles */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-arcade__section-text {
    font-size: 1.1em;
    color: #333333;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.page-arcade__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-arcade__feature-card {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-arcade__feature-description {
    font-size: 1em;
    color: #555555;
    flex-grow: 1;
}

.page-arcade__feature-image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Ensure images are not too wide */
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* Bonuses Section */
.page-arcade__bonuses-section {
    background-color: #F0F0F0;
    padding: 60px 20px;
    text-align: center;
}

.page-arcade__bonus-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-arcade__button--promo {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-arcade__button--promo:hover {
    background-color: transparent;
    color: #FCBC45;
}

/* Get Started Section */
.page-arcade__get-started-section {
    padding: 60px 20px;
}

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

.page-arcade__step-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-arcade__step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-arcade__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-arcade__button--register-small,
.page-arcade__button--deposit,
.page-arcade__button--play {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    padding: 10px 20px;
    font-size: 1em;
}

.page-arcade__button--register-small:hover,
.page-arcade__button--deposit:hover,
.page-arcade__button--play:hover {
    background-color: #FCBC45;
    border-color: #FCBC45;
    color: #000000;
}

/* Support Section */
.page-arcade__support-section {
    background-color: #000000; /* Dark background for this section */
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.page-arcade__support-section .page-arcade__section-title,
.page-arcade__support-section .page-arcade__section-text {
    color: #FFFFFF;
}

.page-arcade__support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-arcade__button--support,
.page-arcade__button--terms {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-arcade__button--support:hover,
.page-arcade__button--terms:hover {
    background-color: transparent;
    color: #FCBC45;
}

/* CTA Section */
.page-arcade__cta-section {
    padding: 80px 20px;
    text-align: center;
}

.page-arcade__button--join-now {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-arcade__button--join-now:hover {
    background-color: transparent;
    color: #FCBC45;
}

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

@media (max-width: 768px) {
    .page-arcade {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }

    .page-arcade__hero-section {
        padding: 60px 20px;
        min-height: 450px;
    }

    .page-arcade__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-arcade__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-arcade__section-text {
        font-size: 0.95em;
    }

    .page-arcade__features-grid,
    .page-arcade__steps-list {
        grid-template-columns: 1fr;
    }

    /* Ensure images in content areas are responsive and don't overflow */
    .page-arcade__feature-image,
    .page-arcade__bonus-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
    }

    .page-arcade__support-links {
        flex-direction: column;
        gap: 15px;
    }

    .page-arcade__button--join-now {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

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

    .page-arcade__hero-content {
        padding: 25px;
    }

    .page-arcade__section-title {
        font-size: 1.8em;
    }

    .page-arcade__feature-title {
        font-size: 1.3em;
    }

    .page-arcade__step-title {
        font-size: 1.2em;
    }
}