/* style/blog-full88-registration-login-guide.css */

/* Custom colors */
:root {
    --full88-bg-color: #08160F;
    --full88-card-bg: #11271B;
    --full88-text-main: #F2FFF6;
    --full88-text-secondary: #A7D9B8;
    --full88-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --full88-border-color: #2E7A4E;
    --full88-glow-color: #57E38D;
    --full88-gold-color: #F2C14E;
    --full88-divider-color: #1E3A2A;
    --full88-deep-green: #0A4B2C;
}

.page-blog-full88-registration-login-guide {
    background-color: var(--full88-bg-color);
    color: var(--full88-text-main); /* Default text color for the page */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-blog-full88-registration-login-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--full88-deep-green); /* A darker green for the hero section background */
}

.page-blog-full88-registration-login-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.page-blog-full88-registration-login-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-full88-registration-login-guide__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-full88-registration-login-guide__main-title {
    color: var(--full88-gold-color); /* Gold color for main title */
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-full88-registration-login-guide__description {
    color: var(--full88-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-full88-registration-login-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-full88-registration-login-guide__btn-primary,
.page-blog-full88-registration-login-guide__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-full88-registration-login-guide__btn-primary {
    background: var(--full88-btn-gradient);
    color: var(--full88-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.page-blog-full88-registration-login-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.page-blog-full88-registration-login-guide__btn-secondary {
    background: transparent;
    color: var(--full88-glow-color);
    border: 2px solid var(--full88-glow-color);
}

.page-blog-full88-registration-login-guide__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    transform: translateY(-3px);
}

.page-blog-full88-registration-login-guide__content-section {
    padding: 60px 0;
    background-color: var(--full88-bg-color);
}

.page-blog-full88-registration-login-guide__dark-section {
    background-color: var(--full88-card-bg); /* Slightly different dark background for contrast */
}

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

.page-blog-full88-registration-login-guide__section-title {
    color: var(--full88-gold-color);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-full88-registration-login-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--full88-glow-color);
    border-radius: 2px;
}

.page-blog-full88-registration-login-guide__sub-title {
    color: var(--full88-text-main);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-full88-registration-login-guide__paragraph {
    color: var(--full88-text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.page-blog-full88-registration-login-guide__list,
.page-blog-full88-registration-login-guide__numbered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-blog-full88-registration-login-guide__list-item {
    color: var(--full88-text-secondary);
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-blog-full88-registration-login-guide__list-item::before {
    content: '✓';
    color: var(--full88-glow-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-blog-full88-registration-login-guide__numbered-list .page-blog-full88-registration-login-guide__list-item {
    counter-increment: list-counter;
}

.page-blog-full88-registration-login-guide__numbered-list .page-blog-full88-registration-login-guide__list-item::before {
    content: counter(list-counter) '.';
    color: var(--full88-glow-color);
    font-weight: bold;
    left: 0;
}

.page-blog-full88-registration-login-guide__nested-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.page-blog-full88-registration-login-guide__nested-list .page-blog-full88-registration-login-guide__list-item {
    padding-left: 0;
}

.page-blog-full88-registration-login-guide__nested-list .page-blog-full88-registration-login-guide__list-item::before {
    content: none;
}

.page-blog-full88-registration-login-guide__image-full {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-blog-full88-registration-login-guide__cta-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* FAQ Section */
.page-blog-full88-registration-login-guide__faq-list {
    margin-top: 30px;
}

.page-blog-full88-registration-login-guide__faq-item {
    background-color: var(--full88-card-bg);
    border: 1px solid var(--full88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--full88-text-main);
}

.page-blog-full88-registration-login-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--full88-text-main);
    background-color: var(--full88-deep-green); /* Slightly darker for question */
    border-bottom: 1px solid var(--full88-divider-color);
    list-style: none; /* For details/summary */
}

.page-blog-full88-registration-login-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-full88-registration-login-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--full88-glow-color);
    transition: transform 0.3s ease;
}

.page-blog-full88-registration-login-guide__faq-item[open] .page-blog-full88-registration-login-guide__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-full88-registration-login-guide__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--full88-text-secondary);
}

.page-blog-full88-registration-login-guide__faq-answer .page-blog-full88-registration-login-guide__paragraph {
    margin-bottom: 0;
}

.page-blog-full88-registration-login-guide__inline-link {
    color: var(--full88-glow-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-blog-full88-registration-login-guide__inline-link:hover {
    color: var(--full88-gold-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-full88-registration-login-guide__hero-content {
        max-width: 700px;
    }
    .page-blog-full88-registration-login-guide__container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-blog-full88-registration-login-guide__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-full88-registration-login-guide__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .page-blog-full88-registration-login-guide__description {
        font-size: 1rem;
    }
    .page-blog-full88-registration-login-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-full88-registration-login-guide__btn-primary,
    .page-blog-full88-registration-login-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-blog-full88-registration-login-guide__content-section {
        padding: 40px 0;
    }
    .page-blog-full88-registration-login-guide__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-blog-full88-registration-login-guide__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    .page-blog-full88-registration-login-guide__paragraph,
    .page-blog-full88-registration-login-guide__list-item,
    .page-blog-full88-registration-login-guide__faq-answer {
        font-size: 0.95rem;
    }

    /* Images responsiveness */
    .page-blog-full88-registration-login-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-full88-registration-login-guide__hero-image-wrapper,
    .page-blog-full88-registration-login-guide__cta-buttons,
    .page-blog-full88-registration-login-guide__cta-center,
    .page-blog-full88-registration-login-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    /* Fixed for video if present, though not in this specific page */
    .page-blog-full88-registration-login-guide__video-section {
      padding-top: 10px !important; /* body already handles --header-offset */
    }
}