body {
    background-color: #050505;
    color: #d4cdc4;
    position: relative;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    mix-blend-mode: screen;
}

.crt-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 2px;
    background: rgba(212, 205, 196, 0.03);
    z-index: 51;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

.record-card {
    transition: all 0.3s ease;
}

.record-card:hover {
    border-color: #8a3a1c;
    background-color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(138, 58, 28, 0.2);
}

.nav-link {
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #8a3a1c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #8a3a1c;
}

.btn-primary {
    background-color: transparent;
    color: #d4cdc4;
    border: 1px solid #8a3a1c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #8a3a1c;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #050505;
}

.image-grayscale {
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.3s ease;
}

.image-grayscale:hover {
    filter: grayscale(100%) contrast(120%);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Input focus enhancement */
input:focus {
    box-shadow: inset 0 0 0 1px #8a3a1c;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.band-card {
    display: block;
    transition: all 0.3s ease;
}

.band-card:hover {
    border-color: #8a3a1c;
    background-color: rgba(138, 58, 28, 0.05);
    transform: translateY(-2px);
}

.band-card h3 {
    transition: color 0.3s ease;
}

.band-card:hover h3 {
    color: #8a3a1c;
}