/* style/index.css */

/* General Styles for page-index */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-index-text-center {
    text-align: center;
}

.page-index-mt-40 {
    margin-top: 40px;
}

.page-index h1,
.page-index h2,
.page-index h3 {
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index h1 {
    font-size: 3.2em;
    text-align: center;
    line-height: 1.2;
}

.page-index h2 {
    font-size: 2.5em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.page-index h3 {
    font-size: 1.8em;
    margin-top: 25px;
}

.page-index p {
    font-size: 1.1em;
    color: #555;
}

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

/* Buttons */
.page-index-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
    white-space: nowrap;
}

.page-index-btn-primary {
    background-color: #FFCC00; /* Accent color */
    color: #003366; /* Primary color for text */
    border: 2px solid #FFCC00;
}

.page-index-btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-index-btn-secondary {
    background-color: #003366; /* Primary color */
    color: #FFCC00; /* Accent color for text */
    border: 2px solid #003366;
}

.page-index-btn-secondary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-2px);
}

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

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

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

.page-index-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-index-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Hero Section */
.page-index-hero-section {
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%); /* Primary color gradient */
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.page-index-hero-content {
    text-align: left;
    max-width: 600px;
    margin-right: 40px;
}

.page-index-hero-content h1 {
    color: #FFCC00; /* Accent color for H1 */
    font-size: 3.8em;
    margin-bottom: 25px;
    text-align: left;
}

.page-index-hero-content p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.page-index-hero-buttons .page-index-btn {
    margin-right: 20px;
}

.page-index-hero-image {
    flex-shrink: 0;
}

.page-index-hero-image img {
    border-radius: 15px;
    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;
}

.page-index-about-image,
.page-index-about-content {
    flex: 1;
}

.page-index-about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-about-content h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 25px;
}

.page-index-about-content p {
    margin-bottom: 20px;
}

/* Advantages Section */
.page-index-advantages-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

.page-index-advantage-item {
    background-color: #fff;
    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-advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-advantage-item h3 {
    color: #003366;
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-index-advantage-item p {
    color: #666;
    font-size: 1em;
}

/* Offers Section */
.page-index-offers-section {
    padding: 80px 0;
    background-color: #003366; /* Primary color background */
    color: #fff;
}

.page-index-offers-section h2,
.page-index-offers-section .page-index-subtitle {
    color: #FFCC00; /* Accent color for headings */
}

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

.page-index-offer-card {
    background-color: #004488; /* Slightly lighter primary shade */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-index-offer-card:hover {
    transform: translateY(-8px);
}

.page-index-offer-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-offer-card h3 {
    color: #FFCC00;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-index-offer-card p {
    color: #e0e0e0;
    margin-bottom: 25px;
    font-size: 1em;
}

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

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

.page-index-game-type {
    background-color: #f9f9f9;
    padding: 25px;
    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-game-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-game-type img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-game-type h3 {
    color: #003366;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-index-game-type p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1em;
}

/* Quick Guide Section */
.page-index-quick-guide-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

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

.page-index-guide-item h3 {
    color: #003366;
    font-size: 1.5em;
}

.page-index-guide-item p {
    color: #666;
    margin-bottom: 25px;
}

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

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

.page-index-detail-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-index-detail-card:hover {
    transform: translateY(-5px);
}

.page-index-detail-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: left;
}

.page-index-detail-card h3 a {
    color: #003366;
    text-decoration: none;
}

.page-index-detail-card h3 a:hover {
    color: #FFCC00;
}

.page-index-detail-card p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* Call to Action Section */
.page-index-cta-section {
    background-color: #FFCC00; /* Accent color background */
    padding: 80px 0;
    color: #003366; /* Primary color for text */
}

.page-index-cta-section h2 {
    color: #003366;
    margin-bottom: 20px;
}

.page-index-cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #003366;
}

.page-index-cta-section .page-index-btn-primary {
    background-color: #003366; /* Primary color for button */
    color: #FFCC00; /* Accent color for button text */
    border-color: #003366;
}

.page-index-cta-section .page-index-btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
}

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

    .page-index-hero-content,
    .page-index-about-image,
    .page-index-about-content {
        margin-right: 0;
        max-width: 100%;
    }

    .page-index-hero-content h1,
    .page-index-about-content h2 {
        text-align: center;
    }

    .page-index-hero-buttons .page-index-btn {
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .page-index-hero-image img {
        margin-top: 40px;
    }

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

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

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

@media (max-width: 768px) {
    .page-index-hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .page-index-hero-content h1 {
        font-size: 2.2em;
    }

    .page-index-hero-content p {
        font-size: 1em;
    }

    .page-index-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-index-hero-buttons .page-index-btn {
        width: 80%;
        margin-right: 0;
    }

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

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

    .page-index h3 {
        font-size: 1.4em;
    }

    .page-index-btn {
        padding: 10px 20px;
        font-size: 1em;
    }

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

    .page-index-advantages-grid,
    .page-index-offers-grid,
    .page-index-games-grid,
    .page-index-guide-steps,
    .page-index-detail-pages-grid {
        grid-template-columns: 1fr;
    }

    .page-index-about-section .page-index-container {
        gap: 30px;
    }

    .page-index-hero-image img,
    .page-index-about-image img {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .page-index-cta-section p {
        font-size: 1.1em;
    }
}