/* 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: 0 20px;
}

.page-index__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-index__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* High contrast with dark blue background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #e0e0e0;
}

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

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

.page-index__btn--primary {
    background-color: #FFCC00;
    color: #003366; /* High contrast with yellow background */
    border: 2px solid #FFCC00;
}

.page-index__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #001a33;
}

.page-index__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* High contrast with dark blue background */
    border: 2px solid #FFCC00;
}

.page-index__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

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

.page-index__section-title {
    font-size: 2.5em;
    color: #003366; /* Main color for titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index__section-intro {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-index__features-section, .page-index__games-section, .page-index__promotions-section, .page-index__testimonials-section, .page-index__how-to-start-section, .page-index__trust-section, .page-index__detail-pages-section, .page-index__cta-final-section {
    padding: 60px 0;
}

.page-index__features-section {
    background-color: #f8f8f8;
}

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

.page-index__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    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(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-index__feature-text {
    font-size: 1em;
    color: #666;
}

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

.page-index__games-section {
    background-color: #eaf2f8;
}

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

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

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

.page-index__game-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 10px;
}

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

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

.page-index__promotions-section {
    background-color: #ffffff;
}

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

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

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

.page-index__promo-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-index__promo-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-index__testimonials-section {
    background-color: #f8f8f8;
}

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

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

.page-index__testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #FFCC00;
}

.page-index__testimonial-quote {
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-index__testimonial-author {
    font-weight: bold;
    color: #003366;
}

.page-index__how-to-start-section {
    background-color: #eaf2f8;
}

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

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

.page-index__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFCC00;
    color: #003366; /* High contrast */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 2px solid #003366;
}

.page-index__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 10px;
}

.page-index__step-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-index__trust-section {
    background-color: #ffffff;
}

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

.page-index__trust-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #003366;
}

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

.page-index__trust-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 10px;
}

.page-index__trust-text {
    font-size: 1em;
    color: #666;
}

.page-index__detail-pages-section {
    background-color: #f8f8f8;
}

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

.page-index__detail-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #003366;
    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.12);
}

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

.page-index__detail-title a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-index__cta-final-section {
    background: #003366;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-index__cta-final-section .page-index__section-title {
    color: #FFCC00;
}

.page-index__cta-final-section .page-index__section-intro {
    color: #e0e0e0;
}

.page-index__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-index__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index__hero-title {
        font-size: 2.8em;
    }

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

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

@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;
        gap: 15px;
    }

    .page-index__btn, .page-index__btn--large {
        width: 80%;
        max-width: 300px;
    }

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

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

    .page-index__feature-item, .page-index__game-category, .page-index__promo-item, .page-index__testimonial-item, .page-index__step-item, .page-index__trust-item, .page-index__detail-card {
        padding: 25px;
    }

    .page-index__feature-title, .page-index__game-title, .page-index__promo-title, .page-index__step-title, .page-index__trust-title, .page-index__detail-title {
        font-size: 1.4em;
    }
}

@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__container {
        padding: 0 15px;
    }

    .page-index__hero-section, .page-index__cta-final-section {
        padding: 50px 0;
    }

    .page-index__features-section, .page-index__games-section, .page-index__promotions-section, .page-index__testimonials-section, .page-index__how-to-start-section, .page-index__trust-section, .page-index__detail-pages-section, .page-index__cta-final-section {
        padding: 40px 0;
    }
}