/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-color: #fff;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: #a01010;
    padding: 0;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 10px 0;
}

/* ========================================
   MARQUEE BANNER
   ======================================== */
.marquee-banner {
    background: #7b0c0c;
    padding: 5px 0;
}

.marquee-container {
    position: relative;
    display: flex;
    overflow: hidden;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    animation: marquee-animation 64s linear infinite;
}

.marquee-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    line-height: 34px;
    white-space: nowrap;
}

@keyframes marquee-animation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    background: #fff;
    padding: 2% 20% 6% 20%;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

/* Headlines */
.main-headline {
    font-family: 'Barlow', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-headline .red-text {
    color: red;
}

.sub-headline {
    font-family: 'Barlow', sans-serif;
    font-size: 34px;
    font-weight: 400;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}

.spacer {
    height: 25px;
}

/* Video Container */
.video-container {
    width: 100%;
    margin: 32px auto 0 auto;
}

.vsl-placeholder {
    width: 100%;
    position: relative;
}

.vsl-placeholder vturb-smartplayer {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* Trust Badge */
.trust-badge {
    width: 100%;
    margin-top: 32px;
    text-align: center;
}

.trust-badge img {
    max-width: 750px;
    width: 100%;
    height: auto;
}

/* ========================================
   COMMENTS SECTION
   ======================================== */
.comments-section {
    background: #fff;
    padding: 6% 0;
}

.comments-wrapper {
    background: #efefef;
    padding: 12px;
    border-radius: 12px;
}

.comments-header {
    border-bottom: 1px solid #e9ebeb;
    padding-bottom: 20px;
    margin-bottom: 8px;
}

.comments-count {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Individual Comment */
.comment {
    margin-bottom: 8px;
}

.comment-main {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    width: 100%;
}

.comment-author {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #385898;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.comment-text {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1c1e21;
    line-height: 1.36;
    margin-bottom: 6px;
    word-break: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
}

.action-link {
    color: #4267b2;
    cursor: pointer;
    font-weight: 400;
}

.action-link:hover {
    text-decoration: underline;
}

.dot {
    color: #90949c;
    font-weight: 400;
}

.like-icon {
    width: 14px;
    height: 14px;
    display: block;
    margin-top: -2px;
}

.like-count {
    color: #1c1e21;
    font-weight: 400;
}

.time {
    color: #90949c;
    font-weight: 400;
}

/* Comment Reply */
.comment-reply {
    margin-left: 48px;
    border-left: 1px dotted #d3d6db;
    padding-left: 8px;
    margin-top: 4px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Facebook Plugin Footer */
.fb-plugin-footer {
    border-top: 1px solid #e9ebeb;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fb-logo {
    width: 14px;
    height: 14px;
}

.fb-text {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #385898;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media screen and (max-width: 480px) {
    .header-title {
        font-size: 28px;
    }

    .marquee-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .main-content {
        padding: 8px;
    }

    .main-headline {
        font-size: 24px;
    }

    .sub-headline {
        font-size: 17px;
    }

    .spacer {
        height: 15px;
    }

    .trust-badge img {
        width: 100%;
    }

    .comments-section {
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .comment-reply {
        flex-direction: column;
    }
}