/* style/blog-jollibee-777-slots-guide.css */

/* Base styles for the page content, ensuring contrast with default white body background */
.page-blog-jollibee-777-slots-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light body background */
    background-color: #f8f8f8; /* Slightly off-white background for sections */
}

.page-blog-jollibee-777-slots-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-jollibee-777-slots-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #000; /* Dark background for hero image area */
    overflow: hidden;
    padding-bottom: 60px; /* Add some space below the image */
}

.page-blog-jollibee-777-slots-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for better presentation */
}

.page-blog-jollibee-777-slots-guide__hero-content {
    background-color: #ffffff; /* Use white background for better contrast and clearer separation */
    color: #333333; /* Dark text on white background */
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    margin-top: 30px; /* Add positive margin to push it below the image */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Add shadow for depth */
}

.page-blog-jollibee-777-slots-guide__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFD700; /* Gold brand color */
    margin-bottom: 15px;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Controlled H1 size for responsiveness */
}

.page-blog-jollibee-777-slots-guide__description {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
.page-blog-jollibee-777-slots-guide__introduction-section,
.page-blog-jollibee-777-slots-guide__basics-section,
.page-blog-jollibee-777-slots-guide__features-section,
.page-blog-jollibee-777-slots-guide__strategies-section,
.page-blog-jollibee-777-slots-guide__winnings-section,
.page-blog-jollibee-777-slots-guide__responsible-gaming-section,
.page-blog-jollibee-777-slots-guide__get-started-section,
.page-blog-jollibee-777-slots-guide__conclusion-section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for main content sections */
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-blog-jollibee-777-slots-guide__section-title {
    color: #DC143C; /* Dark red brand color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
}

.page-blog-jollibee-777-slots-guide__sub-title {
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.page-blog-jollibee-777-slots-guide p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-blog-jollibee-777-slots-guide ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-blog-jollibee-777-slots-guide li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.page-blog-jollibee-777-slots-guide a {
    color: #DC143C; /* Links in content use auxiliary color */
    text-decoration: underline;
}

.page-blog-jollibee-777-slots-guide a:hover {
    color: #FFD700;
}

/* Image styles */
.page-blog-jollibee-777-slots-guide__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Buttons */
.page-blog-jollibee-777-slots-guide__btn-primary,
.page-blog-jollibee-777-slots-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-jollibee-777-slots-guide__btn-primary {
    background-color: #FFD700; /* Gold brand color */
    color: #ffffff;
    border: 2px solid #FFD700;
}

.page-blog-jollibee-777-slots-guide__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-blog-jollibee-777-slots-guide__btn-secondary {
    background-color: #ffffff;
    color: #DC143C; /* Dark red brand color */
    border: 2px solid #DC143C;
}

.page-blog-jollibee-777-slots-guide__btn-secondary:hover {
    background-color: #DC143C;
    color: #ffffff;
}

.page-blog-jollibee-777-slots-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* FAQ Section */
.page-blog-jollibee-777-slots-guide__faq-section {
    padding: 60px 0;
    background-color: #f0f0f0; /* Light grey background for FAQ */
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-blog-jollibee-777-slots-guide__faq-list {
    margin-top: 40px;
}

.page-blog-jollibee-777-slots-guide__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.page-blog-jollibee-777-slots-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #ffffff;
    font-weight: bold;
    color: #333333;
    transition: background-color 0.3s ease;
}

.page-blog-jollibee-777-slots-guide__faq-question:hover {
    background-color: #f5f5f5;
}

.page-blog-jollibee-777-slots-guide__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333333;
}

.page-blog-jollibee-777-slots-guide__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #DC143C; /* Dark red for toggle icon */
}

.page-blog-jollibee-777-slots-guide__faq-item.active .page-blog-jollibee-777-slots-guide__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

.page-blog-jollibee-777-slots-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
    background-color: #fcfcfc;
}

.page-blog-jollibee-777-slots-guide__faq-item.active .page-blog-jollibee-777-slots-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 15px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-jollibee-777-slots-guide__hero-image {
        max-height: 400px;
    }
    .page-blog-jollibee-777-slots-guide__hero-content {
        padding: 20px;
    }
    .page-blog-jollibee-777-slots-guide__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-jollibee-777-slots-guide__section-title {
        font-size: 2em;
    }
    .page-blog-jollibee-777-slots-guide__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    /* General content area adjustments */
    .page-blog-jollibee-777-slots-guide__container {
        padding: 0 15px !important;
    }

    /* Hero section */
    .page-blog-jollibee-777-slots-guide__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px !important;
    }
    .page-blog-jollibee-777-slots-guide__hero-image {
        max-height: 300px;
    }
    .page-blog-jollibee-777-slots-guide__hero-content {
        margin-top: 20px;
        padding: 15px;
    }
    .page-blog-jollibee-777-slots-guide__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-blog-jollibee-777-slots-guide__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Section padding */
    .page-blog-jollibee-777-slots-guide__introduction-section,
    .page-blog-jollibee-777-slots-guide__basics-section,
    .page-blog-jollibee-777-slots-guide__features-section,
    .page-blog-jollibee-777-slots-guide__strategies-section,
    .page-blog-jollibee-777-slots-guide__winnings-section,
    .page-blog-jollibee-777-slots-guide__responsible-gaming-section,
    .page-blog-jollibee-777-slots-guide__get-started-section,
    .page-blog-jollibee-777-slots-guide__conclusion-section,
    .page-blog-jollibee-777-slots-guide__faq-section {
        padding: 30px 0;
    }

    .page-blog-jollibee-777-slots-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-blog-jollibee-777-slots-guide__sub-title {
        font-size: 1.3em;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-blog-jollibee-777-slots-guide p,
    .page-blog-jollibee-777-slots-guide li {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-blog-jollibee-777-slots-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-jollibee-777-slots-guide__section,
    .page-blog-jollibee-777-slots-guide__card,
    .page-blog-jollibee-777-slots-guide__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    /* Buttons responsiveness */
    .page-blog-jollibee-777-slots-guide__btn-primary,
    .page-blog-jollibee-777-slots-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-jollibee-777-slots-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ responsiveness */
    .page-blog-jollibee-777-slots-guide__faq-question {
        padding: 15px;
    }
    .page-blog-jollibee-777-slots-guide__faq-question h3 {
        font-size: 1.1em;
    }
    .page-blog-jollibee-777-slots-guide__faq-toggle {
        font-size: 1.5em;
    }
    .page-blog-jollibee-777-slots-guide__faq-answer {
        padding: 10px 15px;
    }
}