/* style/blog-mastering-online-slots-with-plus777.css */
.page-blog-mastering-online-slots-with-plus777 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Body background from shared.css, ensuring light text on dark background */
}

/* Fixed header padding to prevent overlap */
.page-blog-mastering-online-slots-with-plus777__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Fallback for image loading */
}

.page-blog-mastering-online-slots-with-plus777__hero-image-wrapper {
    width: 100%;
    height: 600px; /* Adjust as needed */
    overflow: hidden;
    position: relative;
}

.page-blog-mastering-online-slots-with-plus777__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog-mastering-online-slots-with-plus777__hero-content {
    position: relative; /* Ensure content is above the image but not overlapping */
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly to overlap image's bottom edge */
    background-color: rgba(17, 17, 17, 0.9); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-mastering-online-slots-with-plus777__main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #FFD36B; /* Auxiliary color for emphasis */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-blog-mastering-online-slots-with-plus777__lead-paragraph {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
}

.page-blog-mastering-online-slots-with-plus777__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-mastering-online-slots-with-plus777__btn-primary,
.page-blog-mastering-online-slots-with-plus777__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box; /* Ensure button responsiveness */
    white-space: normal; /* Ensure button text wraps */
    word-wrap: break-word; /* Ensure button text wraps */
}

.page-blog-mastering-online-slots-with-plus777__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #ffffff;
    border: none;
}

.page-blog-mastering-online-slots-with-plus777__btn-primary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-blog-mastering-online-slots-with-plus777__btn-secondary {
    background-color: transparent;
    color: #FFD36B; /* Auxiliary color */
    border: 2px solid #FFD36B;
}

.page-blog-mastering-online-slots-with-plus777__btn-secondary:hover {
    background-color: #FFD36B;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-blog-mastering-online-slots-with-plus777__section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-mastering-online-slots-with-plus777__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-mastering-online-slots-with-plus777__section-title {
    font-size: 2.2em;
    color: #F2C14E; /* Main color */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-blog-mastering-online-slots-with-plus777__section-description {
    font-size: 1.1em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-mastering-online-slots-with-plus777__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-mastering-online-slots-with-plus777__feature-card {
    background-color: #111111; /* Card B G */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A2A12; /* Border color */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-blog-mastering-online-slots-with-plus777__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-mastering-online-slots-with-plus777__feature-icon {
    width: 100%;
    max-width: 250px; /* Example size, ensure >200px */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-height: 200px; /* Enforce minimum size */
}

.page-blog-mastering-online-slots-with-plus777__feature-title {
    font-size: 1.5em;
    color: #F2C14E; /* Main color */
    margin-bottom: 15px;
}

.page-blog-mastering-online-slots-with-plus777__feature-text {
    font-size: 1em;
    color: #FFF6D6; /* Text Main */
}

.page-blog-mastering-online-slots-with-plus777__content-block {
    text-align: left;
    margin-top: 40px;
    background-color: #111111; /* Card B G */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12; /* Border color */
}

.page-blog-mastering-online-slots-with-plus777__content-subtitle {
    font-size: 1.8em;
    color: #FFD36B; /* Auxiliary color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-mastering-online-slots-with-plus777__content-block p,
.page-blog-mastering-online-slots-with-plus777__content-block li {
    font-size: 1em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 10px;
}

.page-blog-mastering-online-slots-with-plus777__content-block ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.page-blog-mastering-online-slots-with-plus777__content-block a.page-blog-mastering-online-slots-with-plus777__btn-primary {
    margin-top: 20px;
    display: inline-block;
}

.page-blog-mastering-online-slots-with-plus777__faq-section {
    background-color: #0A0A0A; /* Body background */
    padding: 60px 0;
}

.page-blog-mastering-online-slots-with-plus777__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-mastering-online-slots-with-plus777__faq-item {
    background-color: #111111; /* Card B G */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-mastering-online-slots-with-plus777__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #111111; /* Card B G */
    color: #F2C14E; /* Main color */
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-blog-mastering-online-slots-with-plus777__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1); /* Light hover effect */
}

.page-blog-mastering-online-slots-with-plus777__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD36B; /* Auxiliary color */
}

.page-blog-mastering-online-slots-with-plus777__faq-item.active .page-blog-mastering-online-slots-with-plus777__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-mastering-online-slots-with-plus777__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
    color: #FFF6D6; /* Text Main */
}

.page-blog-mastering-online-slots-with-plus777__faq-item.active .page-blog-mastering-online-slots-with-plus777__faq-answer {
    max-height: 1000px !important; /* Ensure content is fully visible */
    padding: 15px 25px 25px;
}

.page-blog-mastering-online-slots-with-plus777__cta-final {
    padding: 80px 0;
    background-color: #0A0A0A; /* Body background */
}

.page-blog-mastering-online-slots-with-plus777__cta-final .page-blog-mastering-online-slots-with-plus777__container {
    background-color: #111111; /* Card B G */
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border color */
}

.page-blog-mastering-online-slots-with-plus777__cta-final .page-blog-mastering-online-slots-with-plus777__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Main color */
    margin-bottom: 25px;
}

.page-blog-mastering-online-slots-with-plus777__cta-final .page-blog-mastering-online-slots-with-plus777__section-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #FFF6D6; /* Text Main */
}

/* General image styling for content areas */
.page-blog-mastering-online-slots-with-plus777 img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent extra space below images */
    object-fit: cover;
    min-width: 200px; /* Ensure images are not small icons */
    min-height: 200px; /* Ensure images are not small icons */
    border-radius: 8px; /* Slightly rounded corners for aesthetics */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-mastering-online-slots-with-plus777__main-title {
        font-size: 2.4em;
    }
    .page-blog-mastering-online-slots-with-plus777__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-blog-mastering-online-slots-with-plus777__hero-image-wrapper {
        height: 400px;
    }
    .page-blog-mastering-online-slots-with-plus777__hero-content {
        margin-top: -80px; /* Adjust overlap for mobile */
        padding: 30px 15px;
    }
    .page-blog-mastering-online-slots-with-plus777__main-title {
        font-size: 2em;
    }
    .page-blog-mastering-online-slots-with-plus777__lead-paragraph {
        font-size: 1em;
    }
    .page-blog-mastering-online-slots-with-plus777__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-mastering-online-slots-with-plus777__btn-primary,
    .page-blog-mastering-online-slots-with-plus777__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-blog-mastering-online-slots-with-plus777__section {
        padding: 40px 0;
    }
    .page-blog-mastering-online-slots-with-plus777__section-title {
        font-size: 1.8em;
    }
    .page-blog-mastering-online-slots-with-plus777__section-description {
        font-size: 0.95em;
    }
    .page-blog-mastering-online-slots-with-plus777__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-mastering-online-slots-with-plus777__content-subtitle {
        font-size: 1.5em;
    }
    .page-blog-mastering-online-slots-with-plus777__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-blog-mastering-online-slots-with-plus777__faq-answer {
        padding: 0 20px;
    }
    .page-blog-mastering-online-slots-with-plus777__faq-item.active .page-blog-mastering-online-slots-with-plus777__faq-answer {
        padding: 10px 20px 20px;
    }
    .page-blog-mastering-online-slots-with-plus777__cta-final .page-blog-mastering-online-slots-with-plus777__container {
        padding: 30px;
    }
    .page-blog-mastering-online-slots-with-plus777__cta-final .page-blog-mastering-online-slots-with-plus777__section-title {
        font-size: 2em;
    }
    .page-blog-mastering-online-slots-with-plus777__cta-final .page-blog-mastering-online-slots-with-plus777__section-description {
        font-size: 1.1em;
    }

    /* Mobile image responsiveness */
    .page-blog-mastering-online-slots-with-plus777 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset; /* Allow smaller images if they are part of responsive flow */
        min-height: unset;
    }
    .page-blog-mastering-online-slots-with-plus777__section,
    .page-blog-mastering-online-slots-with-plus777__container,
    .page-blog-mastering-online-slots-with-plus777__content-block,
    .page-blog-mastering-online-slots-with-plus777__feature-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-mastering-online-slots-with-plus777__hero-section {
      padding-top: var(--header-offset, 100px) !important; /* Mobile header offset */
    }
}

/* Color contrast enforcement */
.page-blog-mastering-online-slots-with-plus777 p,
.page-blog-mastering-online-slots-with-plus777 li,
.page-blog-mastering-online-slots-with-plus777__section-description,
.page-blog-mastering-online-slots-with-plus777__feature-text,
.page-blog-mastering-online-slots-with-plus777__faq-answer {
    color: #FFF6D6; /* Ensuring light text on dark backgrounds */
}

/* Brand color safety check */
.page-blog-mastering-online-slots-with-plus777__section-title,
.page-blog-mastering-online-slots-with-plus777__feature-title {
    color: #F2C14E; /* Main color */
}

.page-blog-mastering-online-slots-with-plus777__main-title,
.page-blog-mastering-online-slots-with-plus777__content-subtitle,
.page-blog-mastering-online-slots-with-plus777__faq-toggle,
.page-blog-mastering-online-slots-with-plus777__btn-secondary {
    color: #FFD36B; /* Auxiliary color */
}

.page-blog-mastering-online-slots-with-plus777__btn-primary {
    color: #ffffff; /* White text on gradient button */
}

.page-blog-mastering-online-slots-with-plus777__dark-bg {
  background: #F2C14E; /* Example of using brand color as background */
  color: #ffffff; /* Forced white text for contrast */
}