/* style/index.css */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Main dark background */
    line-height: 1.6;
}

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

.page-index__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E03B8B; /* Accent color for underline */
    border-radius: 2px;
}

.page-index__highlight-text {
    color: #E03B8B; /* Accent color for keywords */
}

/* Hero Section */
.page-index__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.page-index__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-index__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-index__hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index__hero-description {
    font-size: 1.4em;
    color: #f5e6ce;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page-index__btn--primary {
    background-color: #E03B8B; /* Accent color */
    color: #FFFFFF;
    border-color: #E03B8B;
}

.page-index__btn--primary:hover {
    background-color: #c72a7c;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(224, 59, 139, 0.4);
}

.page-index__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border-color: #FFD700;
}

.page-index__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-index__btn--tertiary {
    background-color: #0A1931;
    color: #f5e6ce;
    border-color: #f5e6ce;
}

.page-index__btn--tertiary:hover {
    background-color: #f5e6ce;
    color: #0A1931;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(245, 230, 206, 0.4);
}

/* About Section */
.page-index__about-section {
    background-color: #1a2c4e;
    padding: 80px 0;
}

.page-index__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-index__text-content {
    flex: 2;
    font-size: 1.1em;
    color: #f5e6ce;
}

.page-index__text-content p {
    margin-bottom: 20px;
}

.page-index__text-content strong {
    color: #FFD700;
}

.page-index__image-content {
    flex: 1;
    text-align: center;
}

.page-index__about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-index__features-section {
    padding: 80px 0;
    background-color: #0A1931;
}

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

.page-index__feature-item {
    background-color: #1a2c4e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-index__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-index__feature-description {
    font-size: 1em;
    color: #f5e6ce;
}

/* Promo Section */
.page-index__promo-section {
    background-color: #1a2c4e;
    padding: 80px 0;
}

.page-index__promo-intro {
    text-align: center;
    font-size: 1.2em;
    color: #f5e6ce;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index__promo-card {
    background-color: #0A1931;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-index__promo-card:hover {
    transform: translateY(-5px);
}

.page-index__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-index__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-index__promo-description {
    font-size: 1em;
    color: #f5e6ce;
    padding: 0 15px;
    margin-bottom: 25px;
}

.page-index__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
    background-color: #E03B8B;
    color: #FFFFFF;
    border-color: #E03B8B;
}

.page-index__btn--small:hover {
    background-color: #c72a7c;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(224, 59, 139, 0.3);
}

.page-index__promo-note {
    text-align: center;
    font-size: 0.9em;
    color: #f5e6ce;
    margin-top: 40px;
    opacity: 0.8;
}

/* Games Overview Section */
.page-index__games-overview {
    padding: 80px 0;
    background-color: #0A1931;
}

.page-index__games-intro {
    text-align: center;
    font-size: 1.2em;
    color: #f5e6ce;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index__game-category-item {
    background-color: #1a2c4e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-index__game-category-item:hover {
    transform: translateY(-5px);
}

.page-index__game-category-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-index__game-category-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-index__game-category-description {
    font-size: 1em;
    color: #f5e6ce;
    padding: 0 15px;
    margin-bottom: 25px;
}

/* Detail Pages Section */
.page-index__detail-pages-section {
    background-color: #1a2c4e;
    padding: 80px 0;
}

.page-index__detail-intro {
    text-align: center;
    font-size: 1.2em;
    color: #f5e6ce;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index__detail-card {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index__detail-card:hover {
    transform: translateY(-5px);
}

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

.page-index__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-index__detail-description {
    font-size: 1em;
    color: #f5e6ce;
    margin-bottom: 25px;
}

.page-index__btn--details {
    background-color: transparent;
    color: #E03B8B;
    border: 2px solid #E03B8B;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
}

.page-index__btn--details:hover {
    background-color: #E03B8B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(224, 59, 139, 0.3);
}

/* CTA Section */
.page-index__cta-section {
    background-color: #0A1931;
    padding: 100px 0;
    text-align: center;
}

.page-index__cta-description {
    font-size: 1.3em;
    color: #f5e6ce;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index__hero-title {
        font-size: 3em;
    }
    .page-index__hero-description {
        font-size: 1.2em;
    }
    .page-index__section-title {
        font-size: 2.2em;
    }
    .page-index__content-wrapper {
        flex-direction: column;
    }
    .page-index__image-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-index__hero-section {
        padding: 80px 0;
    }
    .page-index__hero-title {
        font-size: 2.5em;
    }
    .page-index__hero-description {
        font-size: 1.1em;
    }
    .page-index__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-index__section-title {
        font-size: 1.8em;
    }
    .page-index__features-grid, .page-index__promo-grid, .page-index__game-categories, .page-index__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-index__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index__hero-title {
        font-size: 2em;
    }
    .page-index__hero-description {
        font-size: 1em;
    }
    .page-index__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index__section-title {
        font-size: 1.6em;
    }
    .page-index__feature-title, .page-index__promo-title, .page-index__game-category-title, .page-index__detail-title {
        font-size: 1.3em;
    }
}