.page-arcade {
    color: #333333; /* Dark text for light body background */
}

.page-arcade__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-arcade__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-top: 20px;
}

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

.page-arcade__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-bottom: 20px;
}

.page-arcade__hero-title {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

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

.page-arcade__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-arcade__hero-button:hover {
    background-color: #e0a53c;
    transform: translateY(-3px);
}

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

.page-arcade__introduction-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

.page-arcade__introduction-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-arcade__introduction-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555555;
    max-width: 900px;
    margin: 0 auto;
}

.page-arcade__games-showcase {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-arcade__showcase-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.page-arcade__game-card {
    background-color: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 30px;
}

.page-arcade__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.page-arcade__game-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 5px solid #FCBC45;
}

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

.page-arcade__game-card-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-arcade__game-card-title a:hover {
    color: #FCBC45;
}

.page-arcade__game-card-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    padding: 0 20px;
    margin-bottom: 25px;
}

.page-arcade__game-card-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-arcade__game-card-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-arcade__why-choose-us {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.page-arcade__why-choose-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

.page-arcade__why-choose-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.page-arcade__why-choose-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-arcade__why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

.page-arcade__why-choose-item-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
}

.page-arcade__why-choose-item-description a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: 600;
}

.page-arcade__why-choose-item-description a:hover {
    text-decoration: underline;
}

.page-arcade__getting-started {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.page-arcade__getting-started-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-arcade__getting-started-intro {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 50px;
}

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

.page-arcade__steps-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    text-align: left;
    position: relative;
}

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

.page-arcade__steps-item-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-arcade__steps-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-arcade__steps-button:hover {
    background-color: #e0a53c;
    transform: translateY(-2px);
}

.page-arcade__responsible-gaming {
    background-color: #000000;
    padding: 60px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-arcade__responsible-gaming-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45;
}

.page-arcade__responsible-gaming-text {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.page-arcade__responsible-gaming-text a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
}

.page-arcade__responsible-gaming-text a:hover {
    color: #FCBC45;
}

.page-arcade__call-to-action {
    background-color: #FCBC45;
    padding: 80px 0;
    text-align: center;
    color: #000000;
}

.page-arcade__cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-arcade__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-arcade__cta-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.6em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-arcade__cta-button:hover {
    background-color: #333333;
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-arcade__hero-title {
        font-size: 3em;
    }
    .page-arcade__hero-description {
        font-size: 1.1em;
    }
    .page-arcade__hero-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
    .page-arcade__introduction-title,
    .page-arcade__showcase-title,
    .page-arcade__why-choose-title,
    .page-arcade__getting-started-title,
    .page-arcade__responsible-gaming-title,
    .page-arcade__cta-title {
        font-size: 2.2em;
    }
    .page-arcade__game-card-title,
    .page-arcade__why-choose-item-title,
    .page-arcade__steps-item-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-arcade__hero-section {
        flex-direction: column;
        padding: 40px 15px;
    }
    .page-arcade__hero-title {
        font-size: 2.5em;
    }
    .page-arcade__hero-description {
        font-size: 1em;
    }
    .page-arcade__hero-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-arcade__hero-image-wrapper {
        max-height: 400px;
    }
    .page-arcade__introduction-section,
    .page-arcade__games-showcase,
    .page-arcade__why-choose-us,
    .page-arcade__getting-started,
    .page-arcade__responsible-gaming,
    .page-arcade__call-to-action {
        padding: 40px 0;
    }
    .page-arcade__introduction-title,
    .page-arcade__showcase-title,
    .page-arcade__why-choose-title,
    .page-arcade__getting-started-title,
    .page-arcade__responsible-gaming-title,
    .page-arcade__cta-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-arcade__game-grid,
    .page-arcade__why-choose-list,
    .page-arcade__steps-list {
        grid-template-columns: 1fr;
    }
    .page-arcade__game-card-image {
        height: 200px;
    }
    .page-arcade__game-card-title,
    .page-arcade__why-choose-item-title,
    .page-arcade__steps-item-title {
        font-size: 1.3em;
    }
    .page-arcade__cta-button {
        font-size: 1.2em;
        padding: 15px 35px;
    }
    .page-arcade__container {
        padding: 0 15px;
    }
    /* Ensure content images do not overflow on mobile */
    .page-arcade img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-arcade__hero-title {
        font-size: 2em;
    }
    .page-arcade__hero-description {
        font-size: 0.9em;
    }
    .page-arcade__introduction-title,
    .page-arcade__showcase-title,
    .page-arcade__why-choose-title,
    .page-arcade__getting-started-title,
    .page-arcade__responsible-gaming-title,
    .page-arcade__cta-title {
        font-size: 1.5em;
    }
    .page-arcade__game-card-title,
    .page-arcade__why-choose-item-title,
    .page-arcade__steps-item-title {
        font-size: 1.2em;
    }
    .page-arcade__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}