/* style/index.css */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text on dark background for general content */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page-index-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-index-section-subtitle {
    font-size: 1.2em;
    color: #a0aec0; /* Lighter grey for subtitles */
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index-btn-primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    border-color: #e6c200;
}

.page-index-btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-index-btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-btn-outline {
    background-color: transparent;
    color: #e5dfd3; /* Light text for outline button */
    border: 2px solid #a0aec0; /* Lighter grey border */
}

.page-index-btn-outline:hover {
    background-color: #a0aec0;
    color: #1A202C;
}

.page-index-btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

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

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

.page-index-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-index-hero-title {
    font-size: 3.8em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-index-hero-description {
    font-size: 1.4em;
    color: #ffffff; /* White text for description */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-index-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Slightly transparent background image */
    background-size: cover;
    background-position: center;
}

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

/* General Content Wrapper */
.page-index-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-index-content-wrapper.page-index-reverse-order {
    flex-direction: row-reverse;
}

.page-index-text-content,
.page-index-image-content {
    flex: 1;
    min-width: 300px;
}

.page-index-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-about p, .page-index-trust p {
    margin-bottom: 15px;
    color: #e5dfd3;
}
.page-index-about h3, .page-index-trust h3 {
    color: #FFD700;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.5em;
}
.page-index-about ul, .page-index-trust ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e5dfd3;
}
.page-index-about ul li, .page-index-trust ul li {
    margin-bottom: 8px;
}


/* Features Section */
.page-index-features {
    background-color: #2a3340; /* Slightly lighter dark background */
    padding: 80px 0;
}

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

.page-index-feature-item {
    background-color: #1A202C; /* Darker background for feature cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

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

.page-index-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons gold */
}

.page-index-feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold titles */
    margin-bottom: 15px;
}

.page-index-feature-item p {
    color: #a0aec0; /* Lighter grey text */
}

/* Games Section */
.page-index-games {
    background-color: #1A202C;
    padding: 80px 0;
}

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

.page-index-game-item {
    background-color: #2a3340; /* Slightly lighter dark background for game cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-index-game-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin: 20px 20px 10px;
}

.page-index-game-item p {
    color: #a0aec0;
    padding: 0 20px;
    flex-grow: 1;
}

.page-index-game-item .page-index-btn {
    margin: 20px;
    align-self: flex-start;
}

/* Promotions Section */
.page-index-promotions {
    background-color: #2a3340;
    padding: 80px 0;
}

.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: #1A202C;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

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

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

.page-index-promo-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-index-promo-item p {
    color: #a0aec0;
    padding: 0 20px 20px;
}

/* APP Download Section */
.page-index-app-download {
    background-color: #1A202C;
    padding: 80px 0;
}

.page-index-app-download h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-index-app-download ul {
    list-style: none; /* Remove default list style */
    padding: 0;
    margin-left: 0;
    margin-bottom: 20px;
    color: #e5dfd3;
}
.page-index-app-download ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
}
.page-index-app-download ul li::before {
    content: '✅'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
    font-size: 1.2em;
}

.page-index-app-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Trust Section */
.page-index-trust {
    background-color: #2a3340;
    padding: 80px 0;
}

/* Contact CTA Section */
.page-index-contact-cta {
    background: linear-gradient(45deg, #1A202C, #0f1217); /* Darker gradient */
    padding: 100px 0;
    text-align: center;
}

.page-index-contact-cta .page-index-section-title {
    color: #FFD700;
    font-size: 3em;
}

.page-index-contact-cta .page-index-section-subtitle {
    color: #ffffff;
    font-size: 1.3em;
    margin-bottom: 50px;
}

.page-index-contact-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Detail Pages Section */
.page-index-detail-pages {
    background-color: #1A202C;
    padding: 80px 0 100px;
}

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

.page-index-detail-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-index-detail-title {
    font-size: 1.6em;
    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: #ffffff;
}

.page-index-detail-description {
    color: #a0aec0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Floating Ad Menu */
.page-index-floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-floating-ad:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

.page-index-floating-ad .page-index-icon {
    width: 24px;
    height: 24px;
    filter: invert(10%) sepia(10%) saturate(700%) hue-rotate(200deg) brightness(50%) contrast(100%); /* Darken icon for contrast */
}


/* 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: 2em;
    }
    .page-index-section-subtitle {
        font-size: 1em;
    }
    .page-index-content-wrapper {
        flex-direction: column;
    }
    .page-index-content-wrapper.page-index-reverse-order {
        flex-direction: column; /* Revert to column for smaller screens */
    }
    .page-index-hero-actions,
    .page-index-app-actions,
    .page-index-contact-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-btn-large {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-index-hero {
        padding: 80px 0;
        min-height: 500px;
    }
    .page-index-hero-title {
        font-size: 2.5em;
    }
    .page-index-hero-description {
        font-size: 1.1em;
    }
    .page-index-section-title {
        font-size: 1.8em;
    }
    .page-index-feature-grid,
    .page-index-game-grid,
    .page-index-promo-grid,
    .page-index-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-index-hero-title {
        font-size: 2em;
    }
    .page-index-hero-description {
        font-size: 1em;
    }
    .page-index-section-title {
        font-size: 1.5em;
    }
    .page-index-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-floating-ad {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
    }
}