/* style/slot-games-popular-slots-guide.css */

/* Base styles for the page content */
.page-slot-games-popular-slots-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #ffffff; /* Explicitly set to match shared.css body background */
}

.page-slot-games-popular-slots-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-slot-games-popular-slots-guide__hero-section {
    position: relative;
    background-color: #017439; /* Brand primary color */
    color: #ffffff; /* White text for dark background */
    padding: 100px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-slot-games-popular-slots-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
}

.page-slot-games-popular-slots-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* CTA Buttons */
.page-slot-games-popular-slots-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slot-games-popular-slots-guide__btn-primary,
.page-slot-games-popular-slots-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-slot-games-popular-slots-guide__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    border: 2px solid #C30808;
}

.page-slot-games-popular-slots-guide__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
    color: #ffffff;
}

.page-slot-games-popular-slots-guide__btn-secondary {
    background-color: #ffffff;
    color: #017439; /* Brand primary color */
    border: 2px solid #017439;
}

.page-slot-games-popular-slots-guide__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Section Styling */
.page-slot-games-popular-slots-guide__introduction-section,
.page-slot-games-popular-slots-guide__types-section,
.page-slot-games-popular-slots-guide__beginner-guide-section,
.page-slot-games-popular-slots-guide__tips-tricks-section,
.page-slot-games-popular-slots-guide__conclusion-section {
    padding: 60px 0;
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text */
}

.page-slot-games-popular-slots-guide__why-choose-section,
.page-slot-games-popular-slots-guide__advanced-strategies-section,
.page-slot-games-popular-slots-guide__faq-section {
    padding: 60px 0;
    background-color: #017439; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-slot-games-popular-slots-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: inherit; /* Inherit color from section */
}

.page-slot-games-popular-slots-guide__subsection-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    color: inherit; /* Inherit color from section */
}

.page-slot-games-popular-slots-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

.page-slot-games-popular-slots-guide__text-block a {
    color: #C30808; /* Highlight links */
    text-decoration: none;
}

.page-slot-games-popular-slots-guide__text-block a:hover {
    text-decoration: underline;
}

/* Image styling */
.page-slot-games-popular-slots-guide__image-wrapper {
    margin: 30px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games-popular-slots-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-popular-slots-guide__image-wrapper--large {
    max-width: 1000px; /* Example max-width for larger images */
}

/* Lists */
.page-slot-games-popular-slots-guide__list,
.page-slot-games-popular-slots-guide__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: inherit;
}

.page-slot-games-popular-slots-guide__ordered-list {
    list-style-type: decimal;
}

.page-slot-games-popular-slots-guide__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: inherit;
}

.page-slot-games-popular-slots-guide__list-item strong {
    color: inherit;
}

/* Feature Grid / Game Types Grid / Strategy Grid */
.page-slot-games-popular-slots-guide__features-grid,
.page-slot-games-popular-slots-guide__game-types-grid,
.page-slot-games-popular-slots-guide__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-popular-slots-guide__feature-card,
.page-slot-games-popular-slots-guide__game-type-card,
.page-slot-games-popular-slots-guide__strategy-card {
    background-color: #ffffff; /* Light background for cards */
    color: #333333; /* Dark text for cards */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
}

.page-slot-games-popular-slots-guide__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #017439; /* Brand color for titles */
}

.page-slot-games-popular-slots-guide__card-text {
    font-size: 1em;
    line-height: 1.6;
    flex-grow: 1; /* Make text block fill available space */
}

.page-slot-games-popular-slots-guide__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, adjust as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-slot-games-popular-slots-guide__faq-list {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games-popular-slots-guide__faq-item {
    background-color: #ffffff; /* Light background for FAQ items */
    color: #333333; /* Dark text */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-slot-games-popular-slots-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    color: #017439; /* Brand color for question */
    border-bottom: 1px solid #e0e0e0;
}

.page-slot-games-popular-slots-guide__faq-item[open] .page-slot-games-popular-slots-guide__faq-question {
    border-bottom: none;
}

.page-slot-games-popular-slots-guide__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-slot-games-popular-slots-guide__faq-question::marker {
    display: none; /* Hide default marker for Firefox */
}

.page-slot-games-popular-slots-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #017439;
}

.page-slot-games-popular-slots-guide__faq-item[open] .page-slot-games-popular-slots-guide__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to '-' */
}

.page-slot-games-popular-slots-guide__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333333;
}

.page-slot-games-popular-slots-guide__faq-answer p {
    margin-bottom: 10px;
}