.page-arcade-games {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-arcade-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 40px;
    overflow: hidden;
    max-width: 100%;
}

.page-arcade-games__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-arcade-games__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-arcade-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-arcade-games__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: #E5E5E5;
}

.page-arcade-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
    border: none;
}

.page-arcade-games__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-arcade-games__game-showcase {
    padding: 60px 20px;
    text-align: center;
    background-color: #0A0A0A;
}

.page-arcade-games__section-title {
    font-size: 2.5rem;
    color: #F2C14E;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-arcade-games__section-description {
    font-size: 1.1rem;
    color: #E5E5E5;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-arcade-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-arcade-games__game-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-arcade-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 193, 78, 0.3);
}

.page-arcade-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #3A2A12;
}

.page-arcade-games__game-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin: 20px 15px 10px;
}

.page-arcade-games__game-description {
    font-size: 0.95rem;
    color: #CCC;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-arcade-games__game-button {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 12px 0;
    border-radius: 6px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-arcade-games__game-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #FFE080 0%, #E6AE20 100%);
}

.page-arcade-games__view-all-wrapper {
    margin-top: 50px;
}

.page-arcade-games__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    background-color: #F2C14E;
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.page-arcade-games__view-all-button:hover {
    background-color: #FFD36B;
}

.page-arcade-games__features-section {
    background-color: #0A0A0A;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-arcade-games__features-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.page-arcade-games__features-image {
    flex: 1 1 400px;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-arcade-games__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-arcade-games__feature-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-arcade-games__feature-icon {
    font-size: 2rem;
    color: #FFD36B;
    line-height: 1;
}

.page-arcade-games__feature-heading {
    font-size: 1.3rem;
    color: #FFD36B;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-arcade-games__feature-text {
    font-size: 0.95rem;
    color: #CCC;
}

.page-arcade-games__cta-banner {
    background-color: #111111;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

.page-arcade-games__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-arcade-games__cta-button--secondary {
    background: #3A2A12;
    color: #FFF6D6;
    box-shadow: none;
    border: 1px solid #F2C14E;
}

.page-arcade-games__cta-button--secondary:hover {
    background: #4A3A22;
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.4);
}

.page-arcade-games__faq-section {
    padding: 60px 20px;
    background-color: #0A0A0A;
    text-align: center;
}

.page-arcade-games__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-arcade-games__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-arcade-games__faq-question {
    font-size: 1.25rem;
    color: #FFD36B;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-arcade-games__faq-answer {
    font-size: 1rem;
    color: #CCC;
}

@media (max-width: 768px) {
    .page-arcade-games__hero-section {
        padding: 10px 15px 30px;
    }

    .page-arcade-games__main-title {
        font-size: 2rem;
    }

    .page-arcade-games__description {
        font-size: 0.95rem;
    }

    .page-arcade-games__section-title {
        font-size: 2rem;
    }

    .page-arcade-games__section-description {
        font-size: 1rem;
    }

    .page-arcade-games__game-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .page-arcade-games__game-image {
        height: 180px;
    }

    .page-arcade-games__features-section {
        flex-direction: column;
    }

    .page-arcade-games__features-content,
    .page-arcade-games__features-image {
        max-width: 100%;
    }

    .page-arcade-games__feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-arcade-games__feature-icon {
        margin-bottom: 10px;
    }

    .page-arcade-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-arcade-games__cta-button {
        width: 100%;
    }

    .page-arcade-games__game-card img,
    .page-arcade-games__features-image,
    .page-arcade-games__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-arcade-games__game-card img,
    .page-arcade-games__features-image,
    .page-arcade-games__hero-image,
    .page-arcade-games__faq-list img,
    .page-arcade-games__game-showcase img,
    .page-arcade-games__features-section img,
    .page-arcade-games__cta-banner img,
    .page-arcade-games__faq-section img {
        min-width: 200px;
        min-height: 200px;
    }

    .page-arcade-games__game-image,
    .page-arcade-games__features-image {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-arcade-games__game-grid {
        grid-template-columns: 1fr;
    }
    .page-arcade-games__game-image {
        height: 250px;
    }
    .page-arcade-games__hero-image {
        min-width: 200px;
        min-height: 200px;
    }
}