/* style/index-popular-casino-games.css */

/* General Page Styles */
.page-index-popular-casino-games {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for general sections */
}

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

/* Hero Section */
.page-index-popular-casino-games__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-popular-casino-games__hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-index-popular-casino-games__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.page-index-popular-casino-games__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-index-popular-casino-games__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-index-popular-casino-games__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-index-popular-casino-games__btn--primary {
    background-color: #ffc107; /* Vibrant gold */
    color: #333333;
    border: 2px solid #ffc107;
}

.page-index-popular-casino-games__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-index-popular-casino-games__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-index-popular-casino-games__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.page-index-popular-casino-games__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-index-popular-casino-games__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Section Styles */
.page-index-popular-casino-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-index-popular-casino-games__section--dark {
    background-color: #007bff; /* Primary blue background */
    color: #ffffff;
}

.page-index-popular-casino-games__section-title {
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: bold;
    color: #007bff; /* Default color for light sections */
}

.page-index-popular-casino-games__section--dark .page-index-popular-casino-games__section-title {
    color: #ffc107; /* Gold for dark sections */
}

.page-index-popular-casino-games__sub-section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #007bff; /* Default color for light sections */
}

.page-index-popular-casino-games__section--dark .page-index-popular-casino-games__sub-section-title {
    color: #ffffff; /* White for dark sections */
}

.page-index-popular-casino-games__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #444; /* Darker text for readability */
}

.page-index-popular-casino-games__section--dark .page-index-popular-casino-games__text-content {
    color: #e0e0e0;
}

.page-index-popular-casino-games__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-index-popular-casino-games__list li {
    background-color: #ffffff; /* White list item background */
    color: #333;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-index-popular-casino-games__section--dark .page-index-popular-casino-games__list li {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-popular-casino-games__list li strong {
    color: #007bff;
}

.page-index-popular-casino-games__section--dark .page-index-popular-casino-games__list li strong {
    color: #ffc107;
}

.page-index-popular-casino-games__list li::before {
    content: '✓';
    color: #28a745; /* Green checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-index-popular-casino-games__section--dark .page-index-popular-casino-games__list li::before {
    color: #ffc107;
}

/* Game Grid */
.page-index-popular-casino-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-popular-casino-games__game-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-popular-casino-games__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-index-popular-casino-games__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.page-index-popular-casino-games__game-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-popular-casino-games__game-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    min-height: 100px; /* Ensure consistent card height */
}

/* Step Grid */
.page-index-popular-casino-games__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-popular-casino-games__step-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-popular-casino-games__step-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.page-index-popular-casino-games__step-title {
    font-size: 1.4em;
    color: #ffc107;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-popular-casino-games__step-description {
    font-size: 0.95em;
    color: #e0e0e0;
    margin-bottom: 20px;
    min-height: 80px; /* Ensure consistent card height */
}

/* CTA Section */
.page-index-popular-casino-games__cta-section {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Primary blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-index-popular-casino-games__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107;
}

.page-index-popular-casino-games__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-popular-casino-games__main-title {
        font-size: 2.8em;
    }
    .page-index-popular-casino-games__subtitle {
        font-size: 1.1em;
    }
    .page-index-popular-casino-games__section-title {
        font-size: 2em;
    }
    .page-index-popular-casino-games__sub-section-title {
        font-size: 1.5em;
    }
    .page-index-popular-casino-games__game-description, .page-index-popular-casino-games__step-description {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .page-index-popular-casino-games__hero-section,
    .page-index-popular-casino-games__section,
    .page-index-popular-casino-games__cta-section {
        padding: 60px 0;
    }
    .page-index-popular-casino-games__main-title {
        font-size: 2.2em;
    }
    .page-index-popular-casino-games__subtitle {
        font-size: 1em;
    }
    .page-index-popular-casino-games__hero-actions,
    .page-index-popular-casino-games__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-popular-casino-games__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-index-popular-casino-games__section-title {
        font-size: 1.8em;
    }
    .page-index-popular-casino-games__sub-section-title {
        font-size: 1.3em;
    }
    .page-index-popular-casino-games__list li {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-popular-casino-games__game-grid,
    .page-index-popular-casino-games__step-grid {
        grid-template-columns: 1fr;
    }
    .page-index-popular-casino-games__game-card,
    .page-index-popular-casino-games__step-card {
        padding: 20px;
    }
    .page-index-popular-casino-games__cta-title {
        font-size: 2.2em;
    }
    .page-index-popular-casino-games__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-popular-casino-games__main-title {
        font-size: 1.8em;
    }
    .page-index-popular-casino-games__subtitle {
        font-size: 0.9em;
    }
    .page-index-popular-casino-games__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-index-popular-casino-games__section-title {
        font-size: 1.5em;
    }
    .page-index-popular-casino-games__sub-section-title {
        font-size: 1.1em;
    }
    .page-index-popular-casino-games__cta-title {
        font-size: 1.8em;
    }
}