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

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

.page-arcade__hero-section {
    background-color: var(--secondary-color); /* White background as per color scheme */
    padding-top: var(--header-offset, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
}

.page-arcade__hero-content {
    padding: 60px 20px 30px;
    max-width: 900px;
}

.page-arcade__hero-title {
    font-size: 3.2em;
    color: #000000; /* Main color for headings */
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.page-arcade__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    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: #000000; /* Main color for register button background */
    color: #FFFFFF; /* Register text color */
    border: 2px solid #000000;
}

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

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

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

.page-arcade__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.page-arcade__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-arcade__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-arcade__introduction-section,
.page-arcade__game-categories-section,
.page-arcade__why-choose-section,
.page-arcade__getting-started-section,
.page-arcade__responsible-gaming-section,
.page-arcade__faq-section,
.page-arcade__contact-section {
    padding: 60px 0;
}

.page-arcade__introduction-section {
    background-color: #f8f8f8;
}

.page-arcade__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-arcade__keyword {
    font-weight: bold;
    color: #FCBC45;
}

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

.page-arcade__game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-arcade__game-card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-arcade__game-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-arcade__game-card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-arcade__button--play {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 12px 25px;
    font-size: 0.95em;
}

.page-arcade__button--play:hover {
    background-color: #e0a53b;
}

.page-arcade__why-choose-section {
    background-color: #000000;
    color: #ffffff;
}

.page-arcade__why-choose-section .page-arcade__section-title {
    color: #FCBC45;
}

.page-arcade__why-choose-section .page-arcade__text-content {
    color: #f0f0f0;
}

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

.page-arcade__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

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

.page-arcade__feature-description {
    color: #e0e0e0;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-arcade__button--download,
.page-arcade__button--view-promo,
.page-arcade__button--learn-about-security,
.page-arcade__button--contact {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: auto; /* Push button to bottom */
}

.page-arcade__button--download:hover,
.page-arcade__button--view-promo:hover,
.page-arcade__button--learn-about-security:hover,
.page-arcade__button--contact:hover {
    background-color: #e0a53b;
}

.page-arcade__getting-started-section {
    background-color: #f8f8f8;
}

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

.page-arcade__step-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

.page-arcade__button--register-small,
.page-arcade__button--deposit,
.page-arcade__button--play-now {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    font-size: 0.95em;
    margin-top: auto;
}

.page-arcade__button--register-small:hover,
.page-arcade__button--deposit:hover,
.page-arcade__button--play-now:hover {
    background-color: #333333;
}

.page-arcade__text-content--call-to-action {
    font-size: 1.2em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000000;
}

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

.page-arcade__button--large-register {
    background-color: #000000;
    color: #FFFFFF;
    padding: 18px 35px;
    font-size: 1.2em;
    border: 2px solid #000000;
}

.page-arcade__button--large-register:hover {
    background-color: #333333;
    color: #FCBC45;
}

.page-arcade__button--large-login {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 35px;
    font-size: 1.2em;
    border: 2px solid #FCBC45;
}

.page-arcade__button--large-login:hover {
    background-color: #e0a53b;
    color: #000000;
}

.page-arcade__responsible-gaming-section {
    background-color: #f0f0f0;
}

.page-arcade__button--responsible-gaming {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    font-size: 0.95em;
    display: block;
    margin: 30px auto 0;
    max-width: 300px;
    text-align: center;
}

.page-arcade__button--responsible-gaming:hover {
    background-color: #333333;
}

.page-arcade__faq-section {
    background-color: var(--secondary-color);
}

.page-arcade__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-arcade__faq-question {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-arcade__faq-answer {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-arcade__button--view-all-faq {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 12px 25px;
    font-size: 0.95em;
    display: block;
    margin: 30px auto 0;
    max-width: 200px;
    text-align: center;
}

.page-arcade__button--view-all-faq:hover {
    background-color: #e0a53b;
}

.page-arcade__contact-section {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.page-arcade__contact-section .page-arcade__section-title {
    color: #FCBC45;
}

.page-arcade__contact-section .page-arcade__text-content {
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-arcade__button--final-cta {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 35px;
    font-size: 1.3em;
    border: 2px solid #FCBC45;
    margin-top: 20px;
}

.page-arcade__button--final-cta:hover {
    background-color: #e0a53b;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-arcade__hero-title {
        font-size: 2.8em;
    }
    .page-arcade__hero-description {
        font-size: 1.1em;
    }
    .page-arcade__section-title {
        font-size: 2em;
    }
    .page-arcade__game-card-title {
        font-size: 1.5em;
    }
    .page-arcade__feature-title {
        font-size: 1.5em;
    }
    .page-arcade__step-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-arcade__hero-section {
        flex-direction: column;
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-arcade__hero-content {
        padding: 40px 15px 20px;
    }
    .page-arcade__hero-title {
        font-size: 2.2em;
    }
    .page-arcade__hero-description {
        font-size: 1em;
    }
    .page-arcade__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-arcade__button {
        width: 100%;
        max-width: 300px;
    }
    .page-arcade__hero-image-wrapper {
        margin-top: 15px;
    }
    .page-arcade__hero-image,
    .page-arcade__game-card-image,
    .page-arcade__feature-list img,
    .page-arcade__steps-grid img,
    .page-arcade__faq-section img,
    .page-arcade__contact-section img {
        max-width: 100%;
        height: auto;
    }
    .page-arcade__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-arcade__introduction-section,
    .page-arcade__game-categories-section,
    .page-arcade__why-choose-section,
    .page-arcade__getting-started-section,
    .page-arcade__responsible-gaming-section,
    .page-arcade__faq-section,
    .page-arcade__contact-section {
        padding: 40px 0;
    }
    .page-arcade__container {
        padding: 0 15px;
    }
    .page-arcade__grid,
    .page-arcade__feature-list,
    .page-arcade__steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-arcade__game-card-image {
        height: 200px;
    }
    .page-arcade__button--large-register,
    .page-arcade__button--large-login,
    .page-arcade__button--final-cta {
        width: 100%;
        font-size: 1.1em;
        padding: 15px 25px;
    }
    .page-arcade__cta-buttons {
        flex-direction: column;
    }
    .page-arcade__button--responsible-gaming,
    .page-arcade__button--view-all-faq {
        max-width: 100%;
    }
    .page-arcade__faq-question {
        font-size: 1.2em;
    }
}