:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --section-bg: #B71C1C;
    --text-main: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
    --default-text-color: #FFF5E1; /* Text Main for general content on dark background */
    --default-paragraph-color: #f0f0f0; /* Slightly lighter for paragraphs on dark bg */
    --light-bg-text-color: #333333; /* For elements with light backgrounds */
    --light-bg-card: #ffffff;
}

.page-blog-how-to-get-fu88-newest-link-safely {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--default-text-color); /* Default text color for the page */
    background-color: var(--section-bg); /* Use brand background color for general sections */
}

/* HERO Section */
.page-blog-how-to-get-fu88-newest-link-safely__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--deep-red-color); /* Use a deep red for hero background */
    color: var(--text-main);
}

.page-blog-how-to-get-fu88-newest-link-safely__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width for flex container */
}

.page-blog-how-to-get-fu88-newest-link-safely__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-how-to-get-fu88-newest-link-safely__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--border-color); /* Gold border for hero image */
    box-shadow: 0 0 20px var(--glow-color); /* Glow effect */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-blog-how-to-get-fu88-newest-link-safely__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Constrain text width for readability */
}

.page-blog-how-to-get-fu88-newest-link-safely__hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color); /* Gold color for H1 */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.page-blog-how-to-get-fu88-newest-link-safely__hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--default-paragraph-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--light-bg-text-color); /* Dark text for gold button */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.page-blog-how-to-get-fu88-newest-link-safely__cta-button:hover {
    background: linear-gradient(180deg, #FFE68A 0%, #F0C810 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-blog-how-to-get-fu88-newest-link-safely__section {
    padding: 60px 20px;
    background-color: var(--section-bg);
    color: var(--default-text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-get-fu88-newest-link-safely__section:last-of-type {
    border-bottom: none;
}

.page-blog-how-to-get-fu88-newest-link-safely__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0; /* Container padding handled by section */
}

.page-blog-how-to-get-fu88-newest-link-safely h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog-how-to-get-fu88-newest-link-safely h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--border-color);
    border-radius: 2px;
}

.page-blog-how-to-get-fu88-newest-link-safely h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-how-to-get-fu88-newest-link-safely h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-blog-how-to-get-fu88-newest-link-safely p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--default-paragraph-color);
}

.page-blog-how-to-get-fu88-newest-link-safely strong {
    color: var(--gold-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-get-fu88-newest-link-safely__feature-card {
    background-color: var(--card-bg); /* Card background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.page-blog-how-to-get-fu88-newest-link-safely__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-fu88-newest-link-safely__feature-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid var(--gold-color);
    min-width: 200px; /* Min size for images */
    min-height: 200px;
}

.page-blog-how-to-get-fu88-newest-link-safely__feature-card h3 {
    font-size: 1.3rem;
    margin-top: 0;
    color: var(--gold-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__feature-card p {
    font-size: 0.95rem;
    color: var(--default-paragraph-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__ordered-list,
.page-blog-how-to-get-fu88-newest-link-safely__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--default-paragraph-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__ordered-list li,
.page-blog-how-to-get-fu88-newest-link-safely__unordered-list li {
    margin-bottom: 10px;
    color: var(--default-paragraph-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__ordered-list li strong,
.page-blog-how-to-get-fu88-newest-link-safely__unordered-list li strong {
    color: var(--gold-color);
}

.page-blog-how-to-get-fu88-newest-link-safely__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-blog-how-to-get-fu88-newest-link-safely__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Min size for images */
    min-height: 200px;
}

.page-blog-how-to-get-fu88-newest-link-safely__btn-secondary {
    background: var(--light-bg-card);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-blog-how-to-get-fu88-newest-link-safely__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
    border-color: var(--gold-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-how-to-get-fu88-newest-link-safely__faq-section {
    background-color: var(--deep-red-color); /* Darker background for FAQ section */
}

.page-blog-how-to-get-fu88-newest-link-safely__faq-list {
    margin-top: 30px;
}

details.page-blog-how-to-get-fu88-newest-link-safely__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-blog-how-to-get-fu88-newest-link-safely__faq-item summary.page-blog-how-to-get-fu88-newest-link-safely__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-color);
}
details.page-blog-how-to-get-fu88-newest-link-safely__faq-item summary.page-blog-how-to-get-fu88-newest-link-safely__faq-question::-webkit-details-marker {
    display: none;
}
details.page-blog-how-to-get-fu88-newest-link-safely__faq-item summary.page-blog-how-to-get-fu88-newest-link-safely__faq-question:hover {
    background: var(--deep-red-color); /* Slightly darker on hover */
}
.page-blog-how-to-get-fu88-newest-link-safely__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--gold-color);
}
.page-blog-how-to-get-fu88-newest-link-safely__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-main);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-blog-how-to-get-fu88-newest-link-safely__faq-item .page-blog-how-to-get-fu88-newest-link-safely__faq-answer {
    padding: 0 20px 20px;
    background: rgba(0, 0, 0, 0.2); /* Slightly transparent dark for answer background */
    border-radius: 0 0 8px 8px;
    color: var(--default-paragraph-color);
}
.page-blog-how-to-get-fu88-newest-link-safely__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-get-fu88-newest-link-safely__hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .page-blog-how-to-get-fu88-newest-link-safely h2 {
        font-size: 2rem;
    }
    .page-blog-how-to-get-fu88-newest-link-safely h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-get-fu88-newest-link-safely {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__hero-image img {
        border-radius: 4px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-how-to-get-fu88-newest-link-safely__hero-content p {
        font-size: 1rem;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-how-to-get-fu88-newest-link-safely__section {
        padding: 40px 15px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely h3 {
        font-size: 1.2rem;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__feature-card {
        padding: 20px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__ordered-list,
    .page-blog-how-to-get-fu88-newest-link-safely__unordered-list {
        margin-left: 0;
        padding-left: 20px;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-blog-how-to-get-fu88-newest-link-safely__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile image and container rules */
    .page-blog-how-to-get-fu88-newest-link-safely img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-blog-how-to-get-fu88-newest-link-safely__section,
    .page-blog-how-to-get-fu88-newest-link-safely__feature-card,
    .page-blog-how-to-get-fu88-newest-link-safely__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    details.page-blog-how-to-get-fu88-newest-link-safely__faq-item summary.page-blog-how-to-get-fu88-newest-link-safely__faq-question { padding: 15px; }
    .page-blog-how-to-get-fu88-newest-link-safely__faq-qtext { font-size: 15px; }
}

/* Contrast Fixes (as per requirements) */
.page-blog-how-to-get-fu88-newest-link-safely__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-how-to-get-fu88-newest-link-safely__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}