/* style/blog-how-to-register-fu88.css */
:root {
    --primary-color: #E53935;
    --secondary-color: #FF5A4F;
    --text-main-color: #333333;
    --card-bg-color: #FFFFFF;
    --page-bg-color: #F5F7FA;
    --border-color: #E0E0E0;
}

.page-blog-how-to-register-fu88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color);
    background-color: var(--page-bg-color);
}

.page-blog-how-to-register-fu88 a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-blog-how-to-register-fu88 a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-blog-how-to-register-fu88__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, body padding-top handles header offset */
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff; /* White text for dark background */
}

.page-blog-how-to-register-fu88__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width for max-width to work */
}

.page-blog-how-to-register-fu88__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-blog-how-to-register-fu88__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-blog-how-to-register-fu88__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-blog-how-to-register-fu88__hero-content h1 {
    color: #ffffff;
    /* font-size: clamp(2.5rem, 5vw, 3.5rem); */ /* Use clamp if explicit font-size needed */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-blog-how-to-register-fu88__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section and Container */
.page-blog-how-to-register-fu88__section {
    padding: 40px 20px;
    margin-bottom: 20px;
}

.page-blog-how-to-register-fu88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.page-blog-how-to-register-fu88__section-title {
    font-size: 2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.page-blog-how-to-register-fu88__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--text-main-color);
}

/* Card Styles */
.page-blog-how-to-register-fu88__card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
}

.page-blog-how-to-register-fu88__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-register-fu88__card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
    display: block;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

/* Buttons */
.page-blog-how-to-register-fu88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
}

.page-blog-how-to-register-fu88__btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
    border: none;
}

.page-blog-how-to-register-fu88__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-fu88__btn-secondary {
    background: var(--card-bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-how-to-register-fu88__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-register-fu88__center-button {
    text-align: center;
    margin-top: 30px;
}

/* Layout Grids */
.page-blog-how-to-register-fu88__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-how-to-register-fu88__step-card {
    text-align: center;
}

.page-blog-how-to-register-fu88__step-card img {
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-register-fu88__step-title {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-blog-how-to-register-fu88__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-how-to-register-fu88__promo-card {
    text-align: center;
}

.page-blog-how-to-register-fu88__promo-card img {
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-register-fu88__promo-title {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Lists */
.page-blog-how-to-register-fu88__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-blog-how-to-register-fu88__list li {
    margin-bottom: 10px;
}

.page-blog-how-to-register-fu88__product-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-blog-how-to-register-fu88__product-list li {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    color: var(--text-main-color);
}

.page-blog-how-to-register-fu88__product-title {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-blog-how-to-register-fu88__product-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Dark background sections */
.page-blog-how-to-register-fu88__dark-bg {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #ffffff;
}

.page-blog-how-to-register-fu88__dark-bg .page-blog-how-to-register-fu88__section-title,
.page-blog-how-to-register-fu88__dark-bg .page-blog-how-to-register-fu88__text-block,
.page-blog-how-to-register-fu88__dark-bg .page-blog-how-to-register-fu88__list li,
.page-blog-how-to-register-fu88__dark-bg .page-blog-how-to-register-fu88__promo-title {
    color: #ffffff;
}

.page-blog-how-to-register-fu88__dark-bg a {
    color: #f0f0f0; /* Lighter link color on dark background */
}

.page-blog-how-to-register-fu88__dark-bg a:hover {
    color: #ffffff;
}

/* FAQ Section */
.page-blog-how-to-register-fu88__faq-list {
    margin-top: 30px;
}

details.page-blog-how-to-register-fu88__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg-color);
}

details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__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;
    color: var(--text-main-color);
}

details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question::-webkit-details-marker {
    display: none;
}

details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question:hover {
    background: #f5f5f5;
}

.page-blog-how-to-register-fu88__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.page-blog-how-to-register-fu88__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-blog-how-to-register-fu88__faq-item .page-blog-how-to-register-fu88__faq-answer {
    padding: 0 20px 20px;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--text-main-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-how-to-register-fu88__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-blog-how-to-register-fu88__hero-image img {
        border-radius: 4px;
    }
    
    .page-blog-how-to-register-fu88__hero-content h1 {
        font-size: 2em;
    }

    .page-blog-how-to-register-fu88__hero-description {
        font-size: 1em;
    }

    .page-blog-how-to-register-fu88__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-register-fu88__center-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-blog-how-to-register-fu88__section {
        padding: 30px 15px;
    }

    .page-blog-how-to-register-fu88__container {
        padding: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-how-to-register-fu88__section-title {
        font-size: 1.8em;
    }

    .page-blog-how-to-register-fu88__steps-grid,
    .page-blog-how-to-register-fu88__promotions-grid,
    .page-blog-how-to-register-fu88__product-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-register-fu88__card img,
    .page-blog-how-to-register-fu88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Still enforce min image size */
        min-height: 200px; /* Still enforce min image size */
    }

    details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question {
        padding: 15px;
    }
    .page-blog-how-to-register-fu88__faq-qtext {
        font-size: 15px;
    }
    details.page-blog-how-to-register-fu88__faq-item .page-blog-how-to-register-fu88__faq-answer {
        padding: 0 15px 15px;
    }
}

/* Ensure min image sizes are respected */
.page-blog-how-to-register-fu88 img {
    min-width: 200px;
    min-height: 200px;
}