/* style/index.css */

/* General Page Styling */
.page-index {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for general text on light background */
    background-color: #f8f8f8;
}

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

.page-index-section-title {
    font-size: 2.5em;
    color: #0A1931; /* Deep blue for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-sub-title {
    font-size: 1.8em;
    color: #0A1931;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-text-content {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444444; /* Slightly lighter dark for paragraphs */
}

.page-index-highlight {
    color: #0A1931; /* Default to dark blue for highlights on light background */
    font-weight: bold;
}

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

.page-index-btn-primary {
    background-color: #0A1931; /* Deep blue background */
    color: #FFD700; /* Gold text */
    border: 2px solid #0A1931;
}

.page-index-btn-primary:hover {
    background-color: #FFD700; /* Gold background */
    color: #0A1931; /* Deep blue text */
    border-color: #FFD700;
}

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

.page-index-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-index-btn-outline {
    background-color: transparent;
    color: #0A1931; /* Deep blue text */
    border: 2px solid #0A1931;
}

.page-index-btn-outline:hover {
    background-color: #0A1931;
    color: #FFD700;
}

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

.page-index-text-link {
    color: #0A1931;
    text-decoration: underline;
}

.page-index-text-link:hover {
    color: #FFD700;
}

.page-index-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.page-index-hero {
    background: linear-gradient(135deg, #0A1931 0%, #30475E 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-index-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

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

.page-index-hero-title .page-index-highlight {
    color: #FFD700; /* Gold highlight on dark background */
}

.page-index-hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

.page-index-hero-image {
    margin-top: 40px;
    max-width: 600px;
}

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

/* Features Section */
.page-index-features {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-index-feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

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

.page-index-feature-description {
    color: #666666;
}

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

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

.page-index-promo-card {
    background-color: #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
}

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

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

.page-index-promo-description {
    color: #666666;
    margin-bottom: 20px;
    padding: 0 15px;
}

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

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

.page-index-game-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
}

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

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

.page-index-game-description {
    color: #666666;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* App Download Section */
.page-index-app-download {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-index-app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.page-index-app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-index-app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.page-index-app-image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

/* Detail Pages Section */
.page-index-detail-pages {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-index-detail-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-detail-title {
    font-size: 1.3em;
    color: #0A1931;
    margin-bottom: 10px;
}

.page-index-detail-title a {
    color: #0A1931;
    text-decoration: none;
}

.page-index-detail-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-index-detail-description {
    color: #666666;
    margin-bottom: 20px;
}

/* Deep Content Section */
.page-index-deep-content {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-index-deep-content .page-index-highlight {
    color: #0A1931; /* Ensure good contrast on white background */
}

.page-index-bullet-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #444444;
}

.page-index-bullet-list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-index-bullet-list strong {
    color: #0A1931;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-hero {
        flex-direction: column;
        padding: 60px 0;
    }

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

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

    .page-index-hero-actions {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .page-index-app-content {
        flex-direction: column;
    }

    .page-index-app-text, .page-index-app-image {
        max-width: 100%;
    }

    .page-index-app-buttons {
        flex-direction: column;
    }
}

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

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

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