.page-blog-fb777-registration-guide {
    color: #FFF6D6; /* Text Main for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0A0A0A; /* From body background color info */
}

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

.page-blog-fb777-registration-guide__section {
    padding: 60px 0;
    position: relative;
}

.page-blog-fb777-registration-guide__hero-section {
    padding-top: 10px; /* Small top padding as per rules, body handles --header-offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-fb777-registration-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Image generation size */
    margin-bottom: 30px; /* Space between image and text */
    overflow: hidden;
}

.page-blog-fb777-registration-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-fb777-registration-guide__hero-content {
    max-width: 900px;
    padding: 0 20px 60px;
}

.page-blog-fb777-registration-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size with clamp */
    color: #F2C14E; /* Main brand color */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow color */
}

.page-blog-fb777-registration-guide__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
}

.page-blog-fb777-registration-guide__intro-text a {
    color: #FFD36B; /* Auxiliary color for links */
    text-decoration: underline;
}
.page-blog-fb777-registration-guide__intro-text a:hover {
    color: #F2C14E;
}

.page-blog-fb777-registration-guide__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-fb777-registration-guide__section-description {
    font-size: 1.05rem;
    color: #FFF6D6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Buttons */
.page-blog-fb777-registration-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-fb777-registration-guide__btn-primary,
.page-blog-fb777-registration-guide__btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
    min-width: 200px; /* Ensure buttons are not too small */
}