.page-arcade {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-arcade__section {
    padding: 60px 0;
    text-align: center;
}

.page-arcade__section:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-arcade__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-arcade__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.page-arcade__section-paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Section */
.page-arcade__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0; /* No padding-top here as it's on .page-arcade */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Minimum height for hero */
}

.page-arcade__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-arcade__hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 900px;
}

.page-arcade__hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent for main title */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-arcade__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-arcade__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    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, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.page-arcade__button--primary {
    background-color: #FFD700; /* Accent color */
    color: #1A202C; /* Dark text on accent */
    border: none;
}

.page-arcade__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-arcade__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color */
    border: 2px solid #FFD700;
}

.page-arcade__button--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-arcade__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    min-width: unset;
}

.page-arcade__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

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

.page-arcade__feature-card {
    background-color: #1A202C; /* Main brand color for card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-arcade__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

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

.page-arcade__feature-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Games Showcase */
.page-arcade__game-category {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-arcade__game-category:last-child {
    margin-bottom: 0;
}

.page-arcade__category-image {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-arcade__category-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-arcade__category-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Exclusive Features List */
.page-arcade__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-arcade__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
}

.page-arcade__feature-list-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-arcade__feature-list-text {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
}

.page-arcade__cta-bottom {
    margin-top: 50px;
}

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

.page-arcade__step-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-arcade__step-number {
    background-color: #FFD700;
    color: #1A202C;
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.page-arcade__step-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

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

.page-arcade__testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
}

.page-arcade__testimonial-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.page-arcade__testimonial-author {
    font-weight: bold;
    color: #FFD700;
    font-size: 0.9em;
}

/* FAQ Section */
.page-arcade__faq-item {
    background-color: #1A202C;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-arcade__faq-question {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-arcade__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-arcade__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-arcade__faq-answer {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
}

.page-arcade__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 15px;
}

/* Final CTA */
.page-arcade__cta-final {
    background-color: #1A202C;
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.page-arcade__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-arcade__link:hover {
    text-decoration: underline;
}

.page-arcade__small-text {
    font-size: 0.9em;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 768px) {
    .page-arcade__hero-section {
        min-height: 60vh;
    }
    .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__button {
        width: 100%;
        min-width: unset;
    }
    .page-arcade__features-grid,
    .page-arcade__testimonials-grid,
    .page-arcade__steps-grid,
    .page-arcade__feature-list {
        grid-template-columns: 1fr;
    }
    .page-arcade__feature-image,
    .page-arcade__category-image {
        height: 250px;
        max-width: 100%; /* Ensure images are responsive */
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }
    .page-arcade__hero-image img,
    .page-arcade__container img,
    .page-arcade__game-category img,
    .page-arcade__feature-card img,
    .page-arcade__step-card img,
    .page-arcade__faq-item img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }
    .page-arcade__feature-item, .page-arcade__game-category, .page-arcade__feature-card, .page-arcade__step-card, .page-arcade__faq-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-arcade__hero-title {
        font-size: 2.2em;
    }
    .page-arcade__hero-description {
        font-size: 1em;
    }
    .page-arcade__section-title {
        font-size: 1.8em;
    }
    .page-arcade__button--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }
}

/* Ensure content images do not display smaller than 200px */
.page-arcade img:not(.shared-header img, .shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no filter on images */
.page-arcade img {
    filter: none !important; /* Override any potential unwanted filters */
}

/* Hero image filter is an exception for readability, but not changing the image's "color" */
.page-arcade__hero-image {
    filter: brightness(0.6);
}