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

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

.page-index__section-title {
    font-size: 2.5em;
    color: #0A192F;
    text-align: center;
    margin-bottom: 40px;
    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-title--light {
    color: #FFFFFF;
}

.page-index__section-title--light::after {
    background-color: #FFD700;
}

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

.page-index__section-description--light {
    color: #e0e0e0;
}

.page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-index__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-index__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-index__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-index__btn--secondary:hover {
    background-color: #1a304f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 25, 47, 0.2);
}

.page-index__btn--dark {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index__btn--dark:hover {
    background-color: #1a304f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 25, 47, 0.2);
}

.page-index__btn--gold {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-index__btn--gold:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-index__btn--text {
    background: none;
    color: #0A192F;
    padding: 0;
    border-radius: 0;
    border-bottom: 2px solid #FFD700;
    margin-top: 20px;
    font-size: 1.1em;
}

.page-index__btn--text:hover {
    color: #FFD700;
    border-bottom-color: #0A192F;
}

.page-index__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 20px;
    background-color: #0A192F;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-index__btn--small:hover {
    background-color: #FFD700;
    color: #0A192F;
    border-color: #0A192F;
}

.page-index__btn--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1em;
}

.page-index__btn-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.page-index__center-text {
    text-align: center;
    margin-top: 40px;
}

.highlight {
    color: #FFD700;
}

/* Hero Section */
.page-index__hero-section {
    background-color: #0A192F;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index__hero-section .page-index__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-index__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

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

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

.page-index__hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-index__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-index__about-section .page-index__container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-index__about-content {
    flex: 1;
    min-width: 300px;
}

.page-index__about-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-index__about-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.page-index__feature-item:hover {
    transform: translateY(-10px);
}

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

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

.page-index__feature-item p {
    font-size: 1em;
    color: #e0e0e0;
}

/* Games Section */
.page-index__games-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.page-index__game-card:hover {
    transform: translateY(-10px);
}

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

.page-index__game-title {
    font-size: 1.4em;
    color: #0A192F;
    margin: 20px 15px 10px;
}

.page-index__game-card p {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

.page-index__game-card .page-index__btn {
    margin-bottom: 20px;
}

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

.page-index__cta-content {
    max-width: 800px;
}

.page-index__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A192F;
}

.page-index__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333;
}

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

.page-index__app-section .page-index__container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

.page-index__app-content {
    flex: 1;
    min-width: 300px;
}

.page-index__app-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-index__app-download-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-index__app-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.page-index__promotion-card:hover {
    transform: translateY(-10px);
}

.page-index__promotion-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-index__promotion-card p {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

/* FAQ Section */
.page-index__faq-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-index__faq-items {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index__faq-question {
    font-size: 1.3em;
    color: #0A192F;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 15px;
}

.page-index__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    padding-top: 10px;
}

/* Contact CTA Section */
.page-index__contact-cta-section {
    padding: 60px 0;
    background-color: #0A192F;
    color: #fff;
    text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-index__hero-section .page-index__container,
    .page-index__about-section .page-index__container,
    .page-index__app-section .page-index__container {
        flex-direction: column;
        text-align: center;
    }

    .page-index__hero-content,
    .page-index__about-content,
    .page-index__app-content {
        text-align: center;
    }

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

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

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

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

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

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

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

    .page-index__section-description {
        font-size: 0.95em;
    }

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

    .page-index__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-index__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-index__features-grid,
    .page-index__games-grid,
    .page-index__promotions-grid,
    .page-index__detail-cards-grid {
        grid-template-columns: 1fr;
    }
}