* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d9488;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #4b5563;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0d9488;
}

.content-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.main-article {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.category-tag {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0369a1;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
    letter-spacing: -1px;
    word-break: break-word;
    hyphens: auto;
}

.author-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #374151;
    font-size: 1.05rem;
}

.publish-date {
    font-size: 0.85rem;
    color: #6b7280;
}

.article-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    max-height: 400px;
    object-position: center 20%;
}

.article-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #4b5563;
}

.article-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
}

.article-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
}

.cta-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.15);
}

.cta-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: #15803d;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #16a34a;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
    color: #ffffff;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

.urgency-text {
    margin-top: 20px;
    font-size: 0.9rem !important;
    font-weight: 600;
    color: #b91c1c !important;
}

.user-comments {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f3f4f6;
}

.user-comments h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

.comment {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #0d9488;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #111827;
}

.comment-time {
    font-size: 0.85rem;
    color: #9ca3af;
}

.comment p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: #4b5563;
}

.mini-video-wrapper {
    margin: 30px auto;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 3px solid #16a34a;
    background: #000;
}

.video-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ef4444;
    color: #ffffff;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 10;
    animation: blink 2s infinite;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pan-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 9px;
}

.pan-image {
    width: 200%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    display: block;
    animation: panVideo 4.5s ease-in-out infinite alternate;
}

@keyframes panVideo {

    0%,
    15% {
        transform: translateX(0);
    }

    85%,
    100% {
        transform: translateX(-50%);
    }
}

.trust-badges-section {
    padding: 30px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.trust-badges-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-weight: 600;
    font-size: 1.05rem;
}

.trust-badge svg {
    flex-shrink: 0;
}

.site-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.brand-info p {
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 0.85rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .content-wrapper {
        margin: 20px auto;
    }

    .main-article {
        padding: 25px 20px;
    }

    .headline {
        font-size: 1.8rem;
    }

    .article-text p {
        font-size: 1.05rem;
    }

    .article-text h2 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 25px;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* --- Liveliness & Progress Bar --- */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f3f4f6;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: #16a34a;
    width: 0%;
    transition: width 0.2s ease;
}

/* --- Scroll Animations --- */
body.home .fade-in,
body.home .article-text p,
body.home .article-text h2,
body.home .comment {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

body.home .fade-in.appear,
body.home .article-text p.appear,
body.home .article-text h2.appear,
body.home .comment.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- Floating CTA --- */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 900;
    text-align: center;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: none;
}

.floating-cta.appear {
    bottom: 0;
}

.floating-cta a {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    width: 100%;
    max-width: 400px;
    text-transform: uppercase;
    animation: pulse 2.5s infinite;
}

.glp-diagram-wrapper {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.glp-label {
    position: absolute;
    top: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 800;
    color: #4c1d95;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.glp-label span {
    display: block;
    font-size: 0.9rem;
    color: #16a34a;
}

.glp-label.right span {
    color: #ef4444;
}

.glp-label.left {
    left: 5%;
}

.glp-label.right {
    right: 5%;
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }
}