/* style/blog-what-is-100usdt-login.css */
.page-blog-what-is-100usdt-login {
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-what-is-100usdt-login__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 40px 0; /* Small padding-top as body already handles header offset */
    overflow: hidden;
}

.page-blog-what-is-100usdt-login__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.page-blog-what-is-100usdt-login__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(17, 39, 27, 0.8); /* Card BG with some transparency */
    border-radius: 8px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.page-blog-what-is-100usdt-login__main-title {
    color: #F2C14E; /* Gold */
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-what-is-100usdt-login__subtitle {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-blog-what-is-100usdt-login__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-what-is-100usdt-login__btn-primary,
.page-blog-what-is-100usdt-login__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-what-is-100usdt-login__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-what-is-100usdt-login__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-what-is-100usdt-login__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

.page-blog-what-is-100usdt-login__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
}

.page-blog-what-is-100usdt-login__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-what-is-100usdt-login__article {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-blog-what-is-100usdt-login__heading-2 {
    color: #F2C14E; /* Gold */
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #2E7A4E; /* Border */
    padding-bottom: 10px;
}

.page-blog-what-is-100usdt-login__heading-3 {
    color: #22C768; /* Auxiliary color */
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-what-is-100usdt-login p {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-blog-what-is-100usdt-login p strong {
    color: #F2C14E; /* Highlight keywords with Gold */
}

.page-blog-what-is-100usdt-login__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-what-is-100usdt-login__cta-center {
    text-align: center;
    margin: 30px 0;
}

.page-blog-what-is-100usdt-login__faq-list {
    margin-top: 30px;
}

.page-blog-what-is-100usdt-login__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-blog-what-is-100usdt-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-what-is-100usdt-login__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-what-is-100usdt-login__faq-question:hover {
    background-color: #1E3A2A; /* Divider color for hover */
}

.page-blog-what-is-100usdt-login__faq-qtext {
    color: #F2FFF6;
}

.page-blog-what-is-100usdt-login__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow */
}

.page-blog-what-is-100usdt-login__faq-answer {
    padding: 0 25px 18px 25px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
    max-height: 0; /* For JS based collapse */
    overflow: hidden; /* For JS based collapse */
    transition: max-height 0.3s ease-out;
}

.page-blog-what-is-100usdt-login__faq-item[open] .page-blog-what-is-100usdt-login__faq-answer {
    max-height: fit-content;
    max-height: 2000px; /* Fallback for older browsers / to ensure it opens */
}

.page-blog-what-is-100usdt-login__faq-item.active .page-blog-what-is-100usdt-login__faq-answer {
    max-height: 2000px;
}

.page-blog-what-is-100usdt-login__cta-final {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #1E3A2A; /* Divider */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-blog-what-is-100usdt-login__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .page-blog-what-is-100usdt-login__hero-content {
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .page-blog-what-is-100usdt-login {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-what-is-100usdt-login__hero-section {
        padding-bottom: 20px;
    }
    .page-blog-what-is-100usdt-login__hero-content {
        padding: 20px 15px;
        margin-top: -40px;
    }
    .page-blog-what-is-100usdt-login__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-blog-what-is-100usdt-login__subtitle {
        font-size: 1rem;
    }
    .page-blog-what-is-100usdt-login__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog-what-is-100usdt-login__btn-primary,
    .page-blog-what-is-100usdt-login__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-what-is-100usdt-login__content-area,
    .page-blog-what-is-100usdt-login__article {
        padding: 20px 15px;
    }
    .page-blog-what-is-100usdt-login__heading-2 {
        font-size: 1.8rem;
    }
    .page-blog-what-is-100usdt-login__heading-3 {
        font-size: 1.3rem;
    }
    .page-blog-what-is-100usdt-login img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-what-is-100usdt-login__video-section,
    .page-blog-what-is-100usdt-login__video-container,
    .page-blog-what-is-100usdt-login__video-wrapper,
    .page-blog-what-is-100usdt-login__section,
    .page-blog-what-is-100usdt-login__card,
    .page-blog-what-is-100usdt-login__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-what-is-100usdt-login__video-section {
        padding-top: 10px !important;
    }
    .page-blog-what-is-100usdt-login__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-blog-what-is-100usdt-login__faq-answer {
        padding: 0 20px 15px 20px;
    }
}