/* style/index-why-choose-98-win.css */

/* Base styles for the page content container */
.page-index-why-choose-98-win {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Container for consistent padding and max-width */
.page-index-why-choose-98-win__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.page-index-why-choose-98-win__section-title {
    font-size: 2.5em;
    color: #4B0082;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-why-choose-98-win__section-title--light {
    color: #fff;
}

/* Hero Section */
.page-index-why-choose-98-win__hero-section {
    background: linear-gradient(135deg, #FFD700, #4B0082);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.page-index-why-choose-98-win__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-98-win__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

/* Buttons */
.page-index-why-choose-98-win__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
    border: none;
}

.page-index-why-choose-98-win__btn--primary {
    background-color: #4B0082;
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-why-choose-98-win__btn--primary:hover {
    background-color: #6a00b0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-98-win__btn--secondary {
    background-color: #FFD700;
    color: #4B0082;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-why-choose-98-win__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-98-win__btn--tertiary {
    background-color: transparent;
    color: #4B0082;
    border: 2px solid #4B0082;
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-why-choose-98-win__btn--tertiary:hover {
    background-color: #4B0082;
    color: #FFD700;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-index-why-choose-98-win__intro-section,
.page-index-why-choose-98-win__features-section,
.page-index-why-choose-98-win__responsible-gaming-section,
.page-index-why-choose-98-win__tips-section,
.page-index-why-choose-98-win__community-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Image styling */
.page-index-why-choose-98-win__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-why-choose-98-win__image--large {
    max-width: 900px;
    min-height: 400px; /* Ensure minimum height for large images */
    object-fit: cover;
}

.page-index-why-choose-98-win__image--medium {
    max-width: 700px;
    min-height: 300px; /* Ensure minimum height for medium images */
    object-fit: cover;
}

/* Feature Grid */
.page-index-why-choose-98-win__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-why-choose-98-win__feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #FFD700;
}

.page-index-why-choose-98-win__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-index-why-choose-98-win__card-title {
    font-size: 1.6em;
    color: #4B0082;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-why-choose-98-win__feature-card p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.7;
}

/* CTA Section */
.page-index-why-choose-98-win__cta-section,
.page-index-why-choose-98-win__final-cta-section {
    background: #4B0082;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-index-why-choose-98-win__cta-content {
    max-width: 900px;
}

.page-index-why-choose-98-win__cta-text {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
}

.page-index-why-choose-98-win__cta-small-text {
    font-size: 1em;
    margin-top: 20px;
    color: #ccc;
}

.page-index-why-choose-98-win__cta-small-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-index-why-choose-98-win__cta-small-text a:hover {
    text-decoration: underline;
}

/* Tips Section */
.page-index-why-choose-98-win__tip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-why-choose-98-win__tip-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-index-why-choose-98-win__tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-why-choose-98-win__card-image {
    width: 100%;
    height: 250px; /* Increased height for consistency and content */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-index-why-choose-98-win__tip-card .page-index-why-choose-98-win__card-title {
    padding: 20px 20px 0;
    font-size: 1.4em;
    text-align: left;
}

.page-index-why-choose-98-win__tip-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95em;
}

.page-index-why-choose-98-win__tip-card .page-index-why-choose-98-win__btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    padding: 10px 15px;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-why-choose-98-win__hero-title {
        font-size: 2.5em;
    }

    .page-index-why-choose-98-win__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-why-choose-98-win__section-title {
        font-size: 2em;
    }

    .page-index-why-choose-98-win__feature-grid,
    .page-index-why-choose-98-win__tip-cards {
        grid-template-columns: 1fr;
    }

    .page-index-why-choose-98-win__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-why-choose-98-win__cta-text {
        font-size: 1.2em;
    }

    .page-index-why-choose-98-win__image--large, .page-index-why-choose-98-win__image--medium {
        min-height: 250px; /* Adjust for smaller screens */
    }
}

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

    .page-index-why-choose-98-win__hero-subtitle {
        font-size: 1em;
    }

    .page-index-why-choose-98-win__section-title {
        font-size: 1.8em;
    }

    .page-index-why-choose-98-win__hero-section,
    .page-index-why-choose-98-win__cta-section,
    .page-index-why-choose-98-win__final-cta-section {
        padding: 60px 0;
    }

    .page-index-why-choose-98-win__feature-card,
    .page-index-why-choose-98-win__tip-card {
        padding: 20px;
    }

    .page-index-why-choose-98-win__card-title {
        font-size: 1.3em;
    }

    .page-index-why-choose-98-win__image--large, .page-index-why-choose-98-win__image--medium {
        min-height: 200px; /* Further adjust for very small screens */
    }
    .page-index-why-choose-98-win__card-image {
        height: 180px;
    }
}