:root { --fuzz-gold: #f2a900; --dark-bg: #0a0a0a; }

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body { 
    background: var(--dark-bg); 
    color: #fff; 
    font-family: 'Segoe UI', sans-serif; 
    margin: 0; 
    text-align: center; 
    scroll-behavior: smooth; 
}

nav { background: rgba(0,0,0,0.6); padding: 20px; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid #222; backdrop-filter: blur(6px);}
nav a { color: var(--fuzz-gold); text-decoration: none; margin: 0 15px; font-weight: bold; letter-spacing: 1px; font-size: 0.9rem; transition: 0.3s; }
nav a:hover { color: #fff; }

.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)), url('../img/hero-2026.jpg') no-repeat center center/cover; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
}
.hero h1 { font-size: 4rem; letter-spacing: 8px; margin: 10px 0; text-shadow: 0 0 50px rgba(242,169,0,0.4);}
.hero p { color: var(--fuzz-gold); font-style: italic; font-size: 1.2rem; }

.container { max-width: 1100px; margin: 80px auto; padding: 20px; }
h2 { border-bottom: 2px solid var(--fuzz-gold); display: inline-block; padding-bottom: 10px; margin-bottom: 50px; letter-spacing: 3px; }

.lineup-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.member-card { 
    background: #111; 
    padding: 15px; 
    border: 1px solid #222;
    isolation: isolate; 
    transition: transform 0.4s ease-out;
}

.member-card:hover { transform: translateY(-10px); border-color: var(--fuzz-gold); }

.img-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
    transform: translateZ(0); 
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.8s ease-in-out;
    will-change: filter;
}

.member-card:hover img {
    filter: grayscale(0%); transform: scale(1.05);
}

.btn-pro { 
    background: transparent; border: 2px solid var(--fuzz-gold); color: var(--fuzz-gold); 
    padding: 15px 30px; text-decoration: none; font-weight: bold; transition: 0.3s; display: inline-block; margin: 10px;
}
.btn-pro:hover { background: var(--fuzz-gold); color: #000; box-shadow: 0 0 15px var(--fuzz-gold); }

footer { padding: 50px 0; color: #444; border-top: 1px solid #222; font-size: 0.8rem; letter-spacing: 2px; }

@media (max-width: 700px) { 
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.85)), url('../img/hero-2026.webp');
        background-size: cover;
    }
    .hero h1 { font-size: 2.5rem; } 
    .hero p { font-size: 1rem; padding: 0 20px; } 
    .img-box { height: 350px; } 
}

footer img {
    filter: invert(1); 
}

footer a img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

footer a:hover img {
    filter: invert(1) saturate(500%) hue-rotate(10deg) brightness(1.4);
        transform: scale(1.15);
}

#scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: rgba(0,0,0,0.8);
    border: 2px solid var(--fuzz-gold);
    color: var(--fuzz-gold);
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
    z-index: 999;
    backdrop-filter: blur(4px);
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover {
    background: var(--fuzz-gold); color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--fuzz-gold);
}

@media (max-width: 700px) {
    #scroll-top { width: 36px; height: 36px; font-size: 1.1rem; bottom: 10px; right: 10px; }
}


