html {
    scroll-behavior: smooth;
}
body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
.placeholder-img {
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-family: monospace;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-primary {
    background-color: #DFFF00;
    color: #000;
    border: 2px solid #DFFF00;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: transparent;
    color: #DFFF00;
}
.input-underlined {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    width: 100%;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}
.input-underlined:focus {
    border-bottom-color: #000;
}
/* Film strip effect for the orange ribbon */
.film-strip-dots {
    border-top: 2px dotted rgba(255,255,255,0.5);
    border-bottom: 2px dotted rgba(255,255,255,0.5);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}