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

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

.page-index-section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-section-title .page-index-highlight {
    color: #E3B505;
}

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

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

.page-index-text-content {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.page-index-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
}

.page-index-btn-primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-index-btn-primary:hover {
    background-color: #d1a504;
    border-color: #d1a504;
    color: #0A2463;
}

.page-index-btn-secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
}

.page-index-btn-secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
}

.page-index-btn-outline {
    background-color: transparent;
    color: #0A2463;
    border: 2px solid #0A2463;
}

.page-index-btn-outline:hover {
    background-color: #0A2463;
    color: #fff;
}

.page-index-btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-index-btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Hero Section */
.page-index-hero {
    background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 600px;
}

.page-index-hero-content {
    max-width: 600px;
    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.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-hero-image-wrapper {
    flex-shrink: 0;
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.page-index-about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Games Section */
.page-index-games {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

.page-index-game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-index-game-card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-index-game-card-title a {
    color: #0A2463;
    text-decoration: none;
}

.page-index-game-card-title a:hover {
    color: #E3B505;
}

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

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

.page-index-promotions .page-index-section-title,
.page-index-promotions .page-index-section-subtitle {
    color: #fff;
}

.page-index-promotions .page-index-section-title::after {
    background-color: #E3B505;
}

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

.page-index-promo-card {
    background-color: #1a3a7f;
    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, box-shadow 0.3s ease;
}

.page-index-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.page-index-promo-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-index-promo-card-title {
    font-size: 1.4em;
    color: #E3B505;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-index-promo-card-title a {
    color: #E3B505;
    text-decoration: none;
}

.page-index-promo-card-title a:hover {
    color: #fff;
}

.page-index-promo-card-description {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 15px 20px;
}

.page-index-full-promo-link {
    text-align: center;
}

/* Why Choose Section */
.page-index-why-choose {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

.page-index-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-index-feature-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-index-feature-description {
    font-size: 0.95em;
    color: #666;
}

.page-index-btn-download {
    margin-top: 15px;
    background-color: #0A2463;
    color: #E3B505;
    border: 2px solid #0A2463;
}

.page-index-btn-download:hover {
    background-color: #E3B505;
    color: #0A2463;
    border-color: #E3B505;
}

/* How To Start Section */
.page-index-how-to-start {
    padding: 60px 0;
    background-color: #0A2463;
    color: #fff;
}

.page-index-how-to-start .page-index-section-title {
    color: #fff;
}

.page-index-how-to-start .page-index-section-title::after {
    background-color: #E3B505;
}

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

.page-index-step-item {
    background-color: #1a3a7f;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #E3B505;
    color: #0A2463;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.page-index-step-title {
    font-size: 1.5em;
    color: #E3B505;
    margin-bottom: 10px;
}

.page-index-step-description {
    font-size: 0.95em;
    color: #ccc;
    margin-bottom: 20px;
}

/* Testimonials Section */
.page-index-testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

.page-index-testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.page-index-testimonial-author {
    font-weight: bold;
    color: #0A2463;
}

/* FAQ Section */
.page-index-faq {
    padding: 60px 0;
    background-color: #fff;
}

.page-index-accordion-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-index-accordion-header {
    background-color: #0A2463;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-accordion-header:hover {
    background-color: #1a3a7f;
}

.page-index-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-accordion-content {
    padding: 0 25px;
    background-color: #f0f0f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-accordion-content p {
    padding: 15px 0;
    color: #444;
}

.page-index-accordion-content .page-index-btn {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Final CTA Section */
.page-index-final-cta {
    background: linear-gradient(135deg, #E3B505 0%, #f5db9c 100%);
    padding: 80px 20px;
    text-align: center;
    color: #0A2463;
}

.page-index-final-cta .page-index-section-title {
    color: #0A2463;
}

.page-index-final-cta .page-index-section-title::after {
    background-color: #0A2463;
}

.page-index-final-cta .page-index-text-content {
    color: #0A2463;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-index-final-cta .page-index-btn-primary {
    background-color: #0A2463;
    color: #E3B505;
    border-color: #0A2463;
}

.page-index-final-cta .page-index-btn-primary:hover {
    background-color: #1a3a7f;
    border-color: #1a3a7f;
    color: #E3B505;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-hero {
        flex-direction: column;
        text-align: center;
    }

    .page-index-hero-content {
        text-align: center;
        max-width: 100%;
    }

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

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

    .page-index-hero-image-wrapper {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .page-index-hero-buttons {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .page-index-hero {
        padding: 60px 15px;
    }

    .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-game-grid,
    .page-index-promo-grid,
    .page-index-features-grid,
    .page-index-steps-grid,
    .page-index-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .page-index-accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

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

    .page-index-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-index-btn {
        width: 100%;
    }

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

    .page-index-hero-image-wrapper {
        width: 90%;
        height: auto;
    }
}