/* REAL-TIME CLOUDS SECTION */
.realtime-clouds-section {
    margin: 4rem auto 6rem;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
    position: relative;
}

.realtime-clouds-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.realtime-clouds-section h2 p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-mid);
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

.cloud-gif-container {
    max-width: 500px;
    /* Slight reduction for elegance */
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Softer, deeper shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.cloud-gif-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
    /* Subtle blend */
}

/* "LIVE" Badge */
.live-indicator {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-4px);
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.4);
}

.live-pulse {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.source-caption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-mid);
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}