/* style/games-center.css */
.page-games-center {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-games-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.page-games-center__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-games-center__section-title {
    font-size: 2.8em;
    color: #0A2463;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-games-center__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-games-center__section-subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.page-games-center__hero {
    background: linear-gradient(135deg, #0A2463 0%, #30477E 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-center__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-games-center__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-center__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-games-center__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-games-center__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-games-center__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games-center__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
}

.page-games-center__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-games-center__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-games-center__about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-games-center__text-block {
    flex: 1;
}

.page-games-center__image-block {
    flex: 1;
    text-align: center;
}

.page-games-center__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-games-center__categories {
    background-color: #f4f7f6;
}

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

.page-games-center__category-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-games-center__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-games-center__category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-games-center__category-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-games-center__category-description {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-games-center__game-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.page-games-center__game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-games-center__game-title {
    font-size: 1.6em;
    color: #0A2463;
    padding: 20px 20px 0;
}

.page-games-center__game-description {
    color: #666;
    padding: 10px 20px 20px;
    flex-grow: 1;
}

.page-games-center__card-actions {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px;
    gap: 10px;
}

.page-games-center__btn--detail {
    background-color: #0A2463;
    color: #fff;
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9em;
}

.page-games-center__btn--detail:hover {
    background-color: #1a3a77;
}

.page-games-center__btn--play {
    background-color: #FFD700;
    color: #0A2463;
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9em;
}

.page-games-center__btn--play:hover {
    background-color: #e6c200;
}

.page-games-center__cta-download {
    background: linear-gradient(45deg, #0A2463 0%, #30477E 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-games-center__section-title--light {
    color: #FFD700;
}

.page-games-center__section-title--light::after {
    background-color: #fff;
}

.page-games-center__section-subtitle--light {
    color: #e0e0e0;
}

.page-games-center__download-buttons {
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-games-center__download-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.page-games-center__why-choose-us {
    background-color: #fff;
}

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

.page-games-center__feature-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-games-center__feature-item:hover {
    transform: translateY(-5px);
}

.page-games-center__feature-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-games-center__feature-item p {
    color: #555;
}

.page-games-center__final-cta {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-games-center__final-cta .page-games-center__section-title {
    color: #FFD700;
}

.page-games-center__final-cta .page-games-center__section-subtitle {
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-games-center__hero-title {
        font-size: 2.8em;
    }
    .page-games-center__section-title {
        font-size: 2.2em;
    }
    .page-games-center__about-content {
        flex-direction: column;
        text-align: center;
    }
    .page-games-center__image-block {
        order: -1; /* Image above text on smaller screens */
    }
    .page-games-center__category-grid, .page-games-center__game-grid, .page-games-center__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-games-center__hero-title {
        font-size: 2.2em;
    }
    .page-games-center__hero-description {
        font-size: 1.1em;
    }
    .page-games-center__section-title {
        font-size: 1.8em;
    }
    .page-games-center__section-subtitle {
        font-size: 1em;
    }
    .page-games-center__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-center__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-games-center__game-card .page-games-center__card-actions {
        flex-direction: column;
    }
    .page-games-center__btn--detail, .page-games-center__btn--play {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-games-center__hero {
        padding: 80px 0 60px;
    }
    .page-games-center__hero-title {
        font-size: 1.8em;
    }
    .page-games-center__section {
        padding: 40px 0;
    }
    .page-games-center__section-title {
        font-size: 1.6em;
    }
    .page-games-center__category-grid, .page-games-center__game-grid, .page-games-center__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-games-center__download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-games-center__btn--large {
        width: 80%;
        margin: 0 auto;
    }
    .page-games-center__download-img {
        max-width: 90%;
    }
}