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

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

.page-index__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-index__section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
}

/* Buttons */
.page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-index__btn--primary {
    background-color: #007BFF;
    color: #fff;
}

.page-index__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-index__btn--secondary {
    background-color: #FFC107;
    color: #333;
}

.page-index__btn--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-index__btn--text {
    background: none;
    color: #007BFF;
    padding: 0;
}

.page-index__btn--text:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #007BFF;
    color: #fff;
}

.page-index__btn--small:hover {
    background-color: #0056b3;
}

.page-index__btn--huge {
    padding: 18px 40px;
    font-size: 1.5em;
    background-color: #FFC107;
    color: #333;
    border: 2px solid #e0a800;
}

.page-index__btn--huge:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-index__btn--center {
    display: block;
    margin: 30px auto;
    width: fit-content;
}

/* Hero Section */
.page-index__hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-index__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
    padding: 20px;
}

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

.page-index__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-index__hero-buttons {
    display: flex;
    gap: 20px;
}

.page-index__hero-image-wrapper {
    flex-shrink: 0;
    z-index: 1;
}

.page-index__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.page-index__about-11uu {
    padding: 60px 0;
    background-color: #fff;
}

/* Featured Games Section */
.page-index__featured-games {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-index__game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index__game-card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-index__game-card-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-index__game-card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    min-height: 70px;
}

/* Promotions Section */
.page-index__promotions {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-index__promo-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index__promo-card-image {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-index__promo-card-title {
    font-size: 1.4em;
    color: #FFC107;
    margin-bottom: 10px;
}

.page-index__promo-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.page-index__promotion-cta {
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    color: #777;
}

/* Why Choose Us Section */
.page-index__why-choose-us {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-index__advantage-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-index__advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index__advantage-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-index__advantage-description {
    font-size: 1em;
    color: #666;
}

/* Call to Action Section */
.page-index__call-to-action {
    background: linear-gradient(90deg, #007BFF, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index__call-to-action .page-index__section-title {
    color: #fff;
    margin-bottom: 25px;
}

.page-index__call-to-action .page-index__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
}

/* Detail Pages Section */
.page-index__detail-pages {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-index__detail-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index__detail-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-index__detail-title a {
    color: #007BFF;
    text-decoration: none;
}

.page-index__detail-title a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-index__detail-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index__hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 60px 0;
    }

    .page-index__hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .page-index__hero-title {
        font-size: 2.8em;
    }

    .page-index__hero-description {
        font-size: 1.1em;
    }

    .page-index__hero-buttons {
        justify-content: center;
    }

    .page-index__hero-image {
        max-width: 80%;
    }

    .page-index__section-title {
        font-size: 2em;
    }

    .page-index__section-subtitle {
        font-size: 1em;
    }

    .page-index__game-card-description, .page-index__promo-card-description, .page-index__detail-description {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .page-index__hero {
        min-height: auto;
        padding: 40px 0;
    }

    .page-index__hero-title {
        font-size: 2.2em;
    }

    .page-index__hero-description {
        font-size: 1em;
    }

    .page-index__hero-image {
        max-width: 90%;
    }

    .page-index__section-title {
        font-size: 1.8em;
    }

    .page-index__section-subtitle {
        font-size: 0.9em;
    }

    .page-index__btn--huge {
        padding: 15px 30px;
        font-size: 1.2em;
    }

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

@media (max-width: 480px) {
    .page-index__hero-title {
        font-size: 1.8em;
    }

    .page-index__hero-description {
        font-size: 0.9em;
    }

    .page-index__section-title {
        font-size: 1.5em;
    }

    .page-index__btn {
        width: 100%;
    }

    .page-index__hero-buttons {
        width: 100%;
    }
}