#scroll-tape-container {
    position: fixed;
    top: 80px;
    left: 0;
    width: 0%;
    height: 24px;
    background: #ccff00;
    z-index: 250;
    overflow: hidden;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.tape-pattern {
    width: 5000px;
    height: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='24'><text x='0' y='16' font-family='Arial Black, sans-serif' font-weight='900' font-size='10' fill='black'>CRIME SCENE - DO NOT CROSS //</text></svg>");
    background-repeat: repeat-x;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-title {
    font-size: clamp(2rem, 8vw, 6rem) !important;
    line-height: 1 !important;
    font-weight: 900;
    letter-spacing: 0.018em;
    text-transform: uppercase;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 6vw, 4.5rem) !important;
}

.cta-title {
    font-size: clamp(1.4rem, 5vw, 5rem) !important;
    line-height: 1.1 !important;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        height: 85vh;
        padding-bottom: 3rem;
    }
}
