/* Snack Falling Banner – front-end styles */
#sfb-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0d0f10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#sfb-stage {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.sfb-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-bottom: 60px;
    pointer-events: none;
}

.sfb-headline {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: clamp(36px, 7vw, 90px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    white-space: pre-line;
}

.sfb-sub {
    font-family: Arial, sans-serif;
    font-size: clamp(11px, 1.5vw, 18px);
    color: #888;
    margin-top: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sfb-falling-item {
    position: absolute;
    top: -200px;
    pointer-events: none;
    will-change: transform;
    z-index: 5;
}

.sfb-falling-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
    display: block;
}

.sfb-falling-item .sfb-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
