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

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

.page-index__highlight {
    color: #FFD700; /* Gold */
}

.page-index__keyword {
    font-weight: bold;
}

.page-index__section-title {
    font-size: 2.5em;
    color: #004AAD; /* Deep Sea Blue */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-index__section-subtitle {
    font-size: 1.1em;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.page-index__paragraph {
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-index__hero-section {
    background: linear-gradient(135deg, #004AAD 0%, #00287a 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.page-index__hero-section .page-index__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
    text-align: left;
    max-width: 600px;
}

.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-actions {
    display: flex;
    gap: 15px;
}

.page-index__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.page-index__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #004AAD; /* Deep Sea Blue */
    border: 2px solid #FFD700;
}

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

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

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

.page-index__hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.page-index__hero-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(0.8);
}

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

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

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

.page-index__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-index__feature-title {
    font-size: 1.5em;
    color: #004AAD;
    margin-bottom: 10px;
}

.page-index__feature-description {
    color: #666;
}

/* Game Categories Section */
.page-index__game-categories {
    padding: 80px 0;
    background-color: #e6edf2;
}

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

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

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

.page-index__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index__category-card h3,
.page-index__category-card p,
.page-index__category-card a {
    padding: 0 20px;
}

.page-index__category-title {
    font-size: 1.4em;
    color: #004AAD;
    margin: 20px 0 10px;
}

.page-index__category-description {
    color: #666;
    margin-bottom: 20px;
}

.page-index__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-bottom: 20px;
    background-color: #004AAD;
    color: #fff;
    border: 2px solid #004AAD;
}

.page-index__btn--small:hover {
    background-color: #003380;
    border-color: #003380;
}

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

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

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

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

.page-index__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-index__promo-card h3,
.page-index__promo-card p,
.page-index__promo-card a {
    padding: 0 20px;
}

.page-index__promo-title {
    font-size: 1.4em;
    color: #004AAD;
    margin: 20px 0 10px;
}

.page-index__promo-description {
    color: #666;
    margin-bottom: 20px;
}

.page-index__download-app-section {
    background-color: #004AAD;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-index__btn--download {
    background-color: #FFD700;
    color: #004AAD;
    border: 2px solid #FFD700;
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-index__btn--download:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

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

/* Latest Info Section */
.page-index__latest-info-section {
    padding: 80px 0;
    background-color: #e6edf2;
}

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

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

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

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

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

.page-index__detail-title a:hover {
    color: #FFD700;
}

.page-index__detail-description {
    color: #666;
    margin-bottom: 20px;
}

/* Contact CTA Section */
.page-index__contact-cta-section {
    background: linear-gradient(90deg, #004AAD 0%, #00287a 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-index__contact-cta-section .page-index__section-title {
    color: #fff;
}

.page-index__contact-cta-section .page-index__section-title::after {
    background-color: #FFD700;
}

.page-index__contact-cta-section .page-index__section-subtitle {
    color: #eee;
    margin-bottom: 40px;
}

.page-index__contact-cta-section .page-index__btn--primary {
    background-color: #FFD700;
    color: #004AAD;
    border-color: #FFD700;
    padding: 15px 40px;
    font-size: 1.3em;
}

.page-index__contact-cta-section .page-index__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index__hero-title {
        font-size: 2.8em;
    }
    .page-index__hero-description {
        font-size: 1.1em;
    }
    .page-index__hero-section .page-index__container {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .page-index__hero-image-wrapper {
        display: none;
    }
    .page-index__hero-actions {
        justify-content: center;
    }
    .page-index__section-title {
        font-size: 2em;
    }
    .page-index__download-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-index__hero-title {
        font-size: 2.2em;
    }
    .page-index__hero-description {
        font-size: 1em;
    }
    .page-index__hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .page-index__btn {
        width: 100%;
    }
    .page-index__feature-grid, .page-index__category-grid, .page-index__promo-grid, .page-index__detail-pages-grid {
        grid-template-columns: 1fr;
    }
    .page-index__section-title {
        font-size: 1.8em;
    }
    .page-index__section-subtitle {
        font-size: 1em;
    }
    .page-index__download-title {
        font-size: 1.5em;
    }
    .page-index__hero-section, .page-index__features-section, .page-index__game-categories, .page-index__promo-cta-section, .page-index__about-us-section, .page-index__latest-info-section, .page-index__contact-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-index__hero-title {
        font-size: 1.8em;
    }
    .page-index__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index__section-title {
        font-size: 1.5em;
    }
    .page-index__download-title {
        font-size: 1.3em;
    }
}