html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: 'Lato', sans-serif;
}

p {
    color: var(--muted);
}

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

img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.8s ease both;
    }

    .slide-up {
        animation: slideUp 0.8s ease both;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b81d1d;
    font-weight: 700;
    margin-top: 12px;
    text-decoration: none;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #b81d1d;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-dot {
        animation: none;
    }
}

.h2-heading {
    font-weight: 900;
    color: var(--primary);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}