/* style/e-games-arcade-games.css */

/* Variables */
:root {
    --page-e-games-arcade-games-primary-color: #1A2B4C;
    --page-e-games-arcade-games-secondary-color: #F0B90B;
    --page-e-games-arcade-games-text-light: #FFFFFF;
    --page-e-games-arcade-games-text-dark: #333333;
    --page-e-games-arcade-games-text-dark-contrast: #000000; /* For F0B90B background */
    --page-e-games-arcade-games-bg-light: #F8F8F8;
    --page-e-games-arcade-games-bg-dark: #1A2B4C;
    --page-e-games-arcade-games-accent-color: #e5d4b3; /* Complementary to primary */
    --page-e-games-arcade-games-border-color: #ddd;
}

.page-e-games-arcade-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-e-games-arcade-games-text-dark);
    background-color: var(--page-e-games-arcade-games-bg-light);
}

.page-e-games-arcade-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-e-games-arcade-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-e-games-arcade-games__section:nth-of-type(even) {
    background-color: var(--page-e-games-arcade-games-bg-dark);
    color: var(--page-e-games-arcade-games-text-light);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__section-title,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__section-description,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__feature-title,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__feature-text,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__step-title,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__step-text,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__promo-list li,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__safety-list li,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__faq-question,
.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__faq-answer {
    color: var(--page-e-games-arcade-games-text-light);
}

.page-e-games-arcade-games__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--page-e-games-arcade-games-primary-color);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__section-title {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-e-games-arcade-games__hero-section {
    background: linear-gradient(135deg, var(--page-e-games-arcade-games-bg-dark) 0%, #3a4a6b 100%);
    color: var(--page-e-games-arcade-games-text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-e-games-arcade-games__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M100 0L0 100h100V0z" fill="%23F0B90B" opacity="0.05"/%3E%3C/svg%3E') repeat;
    opacity: 0.1;
    z-index: 0;
}

.page-e-games-arcade-games__hero-section .page-e-games-arcade-games__container {
    position: relative;
    z-index: 1;
}

.page-e-games-arcade-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-e-games-arcade-games-text-light);
    line-height: 1.2;
}

.page-e-games-arcade-games__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-e-games-arcade-games__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-e-games-arcade-games__hero-image-wrapper {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-e-games-arcade-games__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-e-games-arcade-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-e-games-arcade-games__btn--primary {
    background-color: var(--page-e-games-arcade-games-secondary-color);
    color: var(--page-e-games-arcade-games-text-dark-contrast);
    border-color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__btn--primary:hover {
    background-color: #d1a10a; /* Slightly darker gold */
    border-color: #d1a10a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.4);
}

.page-e-games-arcade-games__btn--secondary {
    background-color: transparent;
    color: var(--page-e-games-arcade-games-secondary-color);
    border-color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__btn--secondary:hover {
    background-color: var(--page-e-games-arcade-games-secondary-color);
    color: var(--page-e-games-arcade-games-text-dark-contrast);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.4);
}

.page-e-games-arcade-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* Features Grid */
.page-e-games-arcade-games__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-e-games-arcade-games__feature-item {
    background-color: var(--page-e-games-arcade-games-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__feature-item {
    background-color: #2b3d5e; /* Darker variant of primary for contrast */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-e-games-arcade-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-e-games-arcade-games__feature-title {
    font-size: 1.5em;
    color: var(--page-e-games-arcade-games-primary-color);
    margin-bottom: 15px;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__feature-title {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__feature-text {
    color: var(--page-e-games-arcade-games-text-dark);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__feature-text {
    color: var(--page-e-games-arcade-games-accent-color);
}

/* Game Categories */
.page-e-games-arcade-games__game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-e-games-arcade-games__game-card {
    background-color: var(--page-e-games-arcade-games-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__game-card {
    background-color: #2b3d5e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-e-games-arcade-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-e-games-arcade-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-e-games-arcade-games__game-title {
    font-size: 1.4em;
    color: var(--page-e-games-arcade-games-primary-color);
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__game-title {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__game-description {
    font-size: 0.95em;
    color: var(--page-e-games-arcade-games-text-dark);
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__game-description {
    color: var(--page-e-games-arcade-games-accent-color);
}

.page-e-games-arcade-games__game-card .page-e-games-arcade-games__btn {
    margin-bottom: 20px;
}

/* How to Play Steps */
.page-e-games-arcade-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-e-games-arcade-games__step-item {
    background-color: var(--page-e-games-arcade-games-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__step-item {
    background-color: #2b3d5e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-e-games-arcade-games__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--page-e-games-arcade-games-secondary-color);
    color: var(--page-e-games-arcade-games-text-dark-contrast);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-e-games-arcade-games__step-title {
    font-size: 1.4em;
    color: var(--page-e-games-arcade-games-primary-color);
    margin-bottom: 10px;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__step-title {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__step-text {
    color: var(--page-e-games-arcade-games-text-dark);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__step-text {
    color: var(--page-e-games-arcade-games-accent-color);
}

.page-e-games-arcade-games__cta-center {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-e-games-arcade-games__process-image {
    max-width: 800px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Promotions */
.page-e-games-arcade-games__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-e-games-arcade-games__promo-list li {
    background-color: var(--page-e-games-arcade-games-text-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--page-e-games-arcade-games-text-dark);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__promo-list li {
    background-color: #2b3d5e;
    color: var(--page-e-games-arcade-games-accent-color);
}

.page-e-games-arcade-games__promo-list li strong {
    color: var(--page-e-games-arcade-games-primary-color);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__promo-list li strong {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__promo-image {
    max-width: 900px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Safety & Fairness */
.page-e-games-arcade-games__safety-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-e-games-arcade-games__safety-list li {
    background-color: var(--page-e-games-arcade-games-text-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--page-e-games-arcade-games-secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--page-e-games-arcade-games-text-dark);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__safety-list li {
    background-color: #2b3d5e;
    color: var(--page-e-games-arcade-games-accent-color);
}

.page-e-games-arcade-games__safety-list li strong {
    color: var(--page-e-games-arcade-games-primary-color);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__safety-list li strong {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__safety-image {
    max-width: 600px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.page-e-games-arcade-games__faq-items {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-e-games-arcade-games__faq-item {
    background-color: var(--page-e-games-arcade-games-text-light);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__faq-item {
    background-color: #2b3d5e;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-e-games-arcade-games__faq-question {
    font-size: 1.2em;
    color: var(--page-e-games-arcade-games-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__faq-question {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__faq-question.active::after {
    content: '-';
}

.page-e-games-arcade-games__faq-answer {
    font-size: 1em;
    color: var(--page-e-games-arcade-games-text-dark);
    display: none;
    padding-top: 10px;
    border-top: 1px solid var(--page-e-games-arcade-games-border-color);
    margin-top: 10px;
}

.page-e-games-arcade-games__section:nth-of-type(even) .page-e-games-arcade-games__faq-answer {
    color: var(--page-e-games-arcade-games-accent-color);
    border-top-color: #4a5d7c;
}

.page-e-games-arcade-games__faq-answer.active {
    display: block;
}

/* Final CTA */
.page-e-games-arcade-games__final-cta {
    background: linear-gradient(135deg, #3a4a6b 0%, var(--page-e-games-arcade-games-bg-dark) 100%);
    color: var(--page-e-games-arcade-games-text-light);
    padding: 80px 0;
}

.page-e-games-arcade-games__final-cta .page-e-games-arcade-games__section-title {
    color: var(--page-e-games-arcade-games-secondary-color);
}

.page-e-games-arcade-games__final-cta .page-e-games-arcade-games__section-description {
    color: var(--page-e-games-arcade-games-accent-color);
}

.page-e-games-arcade-games__final-image {
    max-width: 900px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-e-games-arcade-games__hero-title {
        font-size: 2.5em;
    }

    .page-e-games-arcade-games__hero-subtitle {
        font-size: 1.2em;
    }

    .page-e-games-arcade-games__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-e-games-arcade-games__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-e-games-arcade-games__section-title {
        font-size: 2em;
    }

    .page-e-games-arcade-games__features-grid,
    .page-e-games-arcade-games__game-categories,
    .page-e-games-arcade-games__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-e-games-arcade-games__feature-item,
    .page-e-games-arcade-games__game-card,
    .page-e-games-arcade-games__step-item {
        text-align: center;
        padding-top: 30px;
    }

    .page-e-games-arcade-games__step-number {
        position: static;
        margin: 0 auto 15px;
    }

    .page-e-games-arcade-games__cta-center {
        flex-direction: column;
        gap: 15px;
    }
}

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

    .page-e-games-arcade-games__hero-subtitle {
        font-size: 1em;
    }

    .page-e-games-arcade-games__section-title {
        font-size: 1.8em;
    }
}