/* style/games-overview-slot-games.css */

/* General page styling */
.page-games-overview-slot-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray for general text on light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for the page content */
}

.page-games-overview-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-games-overview-slot-games__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1A237E 0%, #3f4a9b 100%); /* Dark blue gradient */
    color: #ffffff; /* White text on dark background */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    gap: 30px;
}

.page-games-overview-slot-games__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-games-overview-slot-games__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-games-overview-slot-games__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-games-overview-slot-games__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark blue text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-overview-slot-games__hero-btn:hover {
    background-color: #e5c100; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-games-overview-slot-games__hero-image {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px; /* Adjust size as needed */
    height: auto;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(15deg);
}

.page-games-overview-slot-games__hero-image img {
    width: 100%;
    height: auto;
}

/* Section titles and descriptions */
.page-games-overview-slot-games__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-games-overview-slot-games__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-games-overview-slot-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555555;
}

/* Intro Section */
.page-games-overview-slot-games__intro {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-games-overview-slot-games__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #fbfbfb;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-overview-slot-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-games-overview-slot-games__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.2));
}

.page-games-overview-slot-games__feature-item h3 {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-games-overview-slot-games__feature-item p {
    color: #666666;
}

/* Categories Section */
.page-games-overview-slot-games__categories {
    padding: 60px 0;
    background-color: #e8eaf6; /* Lighter blue background */
}

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

.page-games-overview-slot-games__category-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-overview-slot-games__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-games-overview-slot-games__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-games-overview-slot-games__category-item h3 {
    font-size: 1.6em;
    color: #1A237E;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.page-games-overview-slot-games__category-item p {
    color: #666666;
    padding: 0 20px 20px;
}

/* Featured Games Section */
.page-games-overview-slot-games__featured-games {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-games-overview-slot-games__game-item {
    background-color: #fbfbfb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-overview-slot-games__game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-games-overview-slot-games__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #1A237E;
}

.page-games-overview-slot-games__game-item h3 {
    font-size: 1.5em;
    color: #1A237E;
    margin: 20px 0 10px;
    padding: 0 20px;
}

.page-games-overview-slot-games__game-item p {
    color: #666666;
    padding: 0 20px 15px;
    min-height: 80px; /* Ensure consistent height */
}

.page-games-overview-slot-games__game-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-games-overview-slot-games__game-btn:hover {
    background-color: #e5c100;
}

/* How to Play Section */
.page-games-overview-slot-games__how-to-play {
    padding: 60px 0;
    background-color: #e8eaf6;
}

.page-games-overview-slot-games__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 40px;
}

.page-games-overview-slot-games__steps-list li {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 80px;
}

.page-games-overview-slot-games__steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A237E;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-games-overview-slot-games__steps-list li h3 {
    font-size: 1.4em;
    color: #1A237E;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-games-overview-slot-games__steps-list li p {
    color: #555555;
}

.page-games-overview-slot-games__steps-list li a {
    color: #1A237E;
    font-weight: bold;
    text-decoration: underline;
}

.page-games-overview-slot-games__cta-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #FFD700;
    color: #1A237E;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-overview-slot-games__cta-btn:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Tips Section */
.page-games-overview-slot-games__tips {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-games-overview-slot-games__tip-item {
    text-align: center;
    padding: 30px;
    background-color: #fbfbfb;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-overview-slot-games__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-games-overview-slot-games__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.1));
}

.page-games-overview-slot-games__tip-item h3 {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-games-overview-slot-games__tip-item p {
    color: #666666;
}

.page-games-overview-slot-games__tips-conclusion {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    font-style: italic;
    color: #555555;
}

/* Advantages Section */
.page-games-overview-slot-games__advantages {
    padding: 60px 0;
    background-color: #1A237E; /* Dark blue background */
    color: #ffffff; /* White text */
}

.page-games-overview-slot-games__advantages .page-games-overview-slot-games__section-title {
    color: #FFD700; /* Gold title on dark blue background */
}

.page-games-overview-slot-games__advantages .page-games-overview-slot-games__section-title::after {
    background-color: #ffffff; /* White underline */
}

.page-games-overview-slot-games__advantages .page-games-overview-slot-games__section-description {
    color: #f0f0f0;
}

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

.page-games-overview-slot-games__advantage-item {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-games-overview-slot-games__advantage-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.page-games-overview-slot-games__advantage-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold heading */
    margin-bottom: 10px;
}

.page-games-overview-slot-games__advantage-item p {
    color: #f0f0f0; /* Off-white text */
}

/* Promotions Section */
.page-games-overview-slot-games__promotions {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-games-overview-slot-games__promo-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-games-overview-slot-games__promo-list li {
    background-color: #ffffff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444444;
}

.page-games-overview-slot-games__promo-list li strong {
    color: #1A237E;
}

.page-games-overview-slot-games__cta-btn--secondary {
    background-color: #1A237E;
    color: #FFD700;
}

.page-games-overview-slot-games__cta-btn--secondary:hover {
    background-color: #3f4a9b;
    color: #FFD700;
}

/* FAQ Section */
.page-games-overview-slot-games__faq {
    padding: 60px 0;
    background-color: #e8eaf6;
}

.page-games-overview-slot-games__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-overview-slot-games__faq-item {
    background-color: #ffffff;
    padding: 25px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-games-overview-slot-games__faq-item h3 {
    font-size: 1.3em;
    color: #1A237E;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer; /* Indicates it might be collapsible */
}

.page-games-overview-slot-games__faq-item p {
    color: #555555;
    /* This could be hidden/shown by JS for an accordion effect */
}

/* Call to Action Section */
.page-games-overview-slot-games__call-to-action {
    padding: 80px 0;
    background: linear-gradient(45deg, #1A237E, #3f4a9b);
    color: #ffffff;
    text-align: center;
}

.page-games-overview-slot-games__call-to-action .page-games-overview-slot-games__section-title {
    color: #FFD700;
}

.page-games-overview-slot-games__call-to-action .page-games-overview-slot-games__section-title::after {
    background-color: #ffffff;
}

.page-games-overview-slot-games__call-to-action .page-games-overview-slot-games__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-games-overview-slot-games__cta-btn--primary {
    background-color: #FFD700;
    color: #1A237E;
    margin-right: 20px;
    margin-bottom: 20px; /* For mobile stacking */
}

.page-games-overview-slot-games__cta-btn--primary:hover {
    background-color: #e5c100;
}

.page-games-overview-slot-games__cta-btn--download {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-games-overview-slot-games__cta-btn--download:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-games-overview-slot-games__hero {
        padding: 60px 20px;
    }
    .page-games-overview-slot-games__hero-title {
        font-size: 2.5em;
    }
    .page-games-overview-slot-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-games-overview-slot-games__hero-image {
        display: none; /* Hide large image on smaller screens */
    }
    .page-games-overview-slot-games__section-title {
        font-size: 2em;
    }
    .page-games-overview-slot-games__section-description {
        font-size: 1em;
    }
    .page-games-overview-slot-games__features,
    .page-games-overview-slot-games__category-grid,
    .page-games-overview-slot-games__game-grid,
    .page-games-overview-slot-games__tips-grid,
    .page-games-overview-slot-games__advantage-grid {
        grid-template-columns: 1fr;
    }
    .page-games-overview-slot-games__steps-list li {
        padding-left: 25px; /* Adjust for smaller screens */
        text-align: center;
    }
    .page-games-overview-slot-games__steps-list li::before {
        position: static;
        transform: none;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .page-games-overview-slot-games__cta-btn--primary,
    .page-games-overview-slot-games__cta-btn--download {
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-games-overview-slot-games__hero-title {
        font-size: 2em;
    }
    .page-games-overview-slot-games__hero-subtitle {
        font-size: 0.95em;
    }
    .page-games-overview-slot-games__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-games-overview-slot-games__section-title {
        font-size: 1.8em;
    }
    .page-games-overview-slot-games__feature-item h3,
    .page-games-overview-slot-games__category-item h3,
    .page-games-overview-slot-games__game-item h3,
    .page-games-overview-slot-games__advantage-item h3 {
        font-size: 1.3em;
    }
    .page-games-overview-slot-games__faq-item h3 {
        font-size: 1.2em;
    }
}