:root {
    --primary-color: #0FFAE6; /* Neon Cyan */
    --secondary-color: #0d0d0d; /* Even Deeper Black */
    --background-color: #050505; /* Near Black */
    --text-color: #c0c0c0; /* Slightly muted white for text */
    --accent-color-dark: #0A6A5E;
    --accent-danger: #8B0000; /* Dark Red for specific accents */
    --heading-font: 'Impact', 'Arial Black', 'Haettenschweiler', 'Franklin Gothic Bold', sans-serif; /* More impactful */
    --body-font: 'Roboto Condensed', 'Arial Narrow', sans-serif; /* Condensed for edginess */
    --glitch-speed: 0.7s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glitch Animations for Buttons */
@keyframes ctaGlitchEffect {
    0% { transform: translateY(0) skewX(0); }
    20% { transform: translateY(1px) skewX(2deg) translateX(-3px); } /* Glitch part */
    40% { transform: translateY(-2px) skewX(-3deg) translateX(3px); } /* Glitch part */
    60% { transform: translateY(-4px) skewX(-7deg) translateX(-1px); } /* Overshoot */
    100% { transform: translateY(-3px) skewX(-5deg); } /* Final hover state */
}

@keyframes shortGlitch {
    0%, 100% { transform: translate(0,0) skew(0deg); text-shadow: none; }
    25% {
        transform: translate(1.5px, -1.5px) skew(-2deg);
        text-shadow: 0.5px 0.5px 0 var(--accent-danger), -0.5px -0.5px 0 var(--primary-color);
    }
    50% {
        transform: translate(-1.5px, 1.5px) skew(2deg);
    }
    75% {
        transform: translate(1px, -1px) skew(-1deg);
        text-shadow: -0.5px 0.5px 0 var(--accent-danger), 0.5px -0.5px 0 var(--primary-color);
    }
}

/* Utility Class for Hiding Sections */
.hidden-section {
    display: none !important;
}


/* Typography */
h1, h2, h3, h4 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8em;
    line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
p { margin-bottom: 1.1em; font-size: clamp(0.95rem, 1.6vw, 1.05rem); }
a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
a:hover { color: #fff; text-shadow: 0 0 8px var(--primary-color); }
strong { color: var(--primary-color); font-weight: normal; } /* Style strong tags to match accent */

/* Layout & Section Styling */
.container {
    width: 94%;
    max-width: 1100px; /* Slightly reduced for tighter feel */
    margin: 0 auto;
    padding: 40px 10px;
}

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(40px) skewY(2deg) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
}
section:nth-child(odd) {
    background-color: var(--secondary-color);
}
/* More subtle angled edges */
section::before {
    content: ''; position: absolute; left: 0; width: 100%; height: 60px;
    background-color: inherit; z-index: 0; top: -1px;
    clip-path: polygon(0 100%, 50% 0, 100% 100%); /* Sharper, centered point */
}
section:not(#hero):not(footer)::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 60px;
    background-color: inherit; z-index: 0; bottom: -1px;
    clip-path: polygon(0 0, 50% 100%, 100% 0); /* Sharper, centered point */
}
/* Remove top clip path for the first content section after hero */
#bio::before { display: none; }


section.visible {
    opacity: 1;
    transform: translateY(0) skewY(0deg) scale(1);
}
.content-wrapper { /* To ensure content is above pseudo-elements */
    position: relative;
    z-index: 1;
}


/* Header & Navigation */
header {
    background-color: rgba(5, 5, 5, 0.8); /* Darker, more opaque */
    backdrop-filter: blur(10px) grayscale(30%); /* Subtle desaturation */
    padding: 12px 0;
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    box-shadow: 0 2px 10px rgba(13, 250, 230, 0.08);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}
.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    z-index: 2;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin-left: 25px;
}
nav ul li:first-child {
    margin-left: 0;
}
nav ul li a {
    font-family: var(--heading-font);
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    letter-spacing: 1px;
    padding: 6px 0;
    display: inline-block;
}
nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}
.menu-toggle {
    display: none;
    font-size: 1.7rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    margin-right: 0;
    margin-left: 0;
}

/* Hero Section - Persona Infused */
#hero {
    min-height: 100vh;
    /* Placeholder reflecting "emerging from mirror/darkness" - REPLACE THIS */
    background: url('SNC_4909.JPG') no-repeat center center/cover;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: #fff; position: relative; padding-top: 70px;
    transform: none; opacity: 1; clip-path: none !important;
}
#hero::before { /* Darker overlay, perhaps with slight noise if possible */
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    mbackground: radial-gradient(ellipse at center, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.9) 70%, rgba(5,5,5,1) 100%);
    z-index: 1;
    /* Optional: subtle noise SVG background for texture */
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); */
    /* opacity: 0.03; */
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
#hero h1#main-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--primary-color); /* Use primary for main title now */
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--accent-color-dark);
    transform: translateY(0px); will-change: transform;
    letter-spacing: 2px;
}
#hero p#subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem); margin-bottom: 2em;
    color: var(--primary-color); font-family: var(--body-font); font-weight: 300;
    text-transform: none; /* More direct from bio */
    letter-spacing: 1px; transform: translateY(0px); will-change: transform;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--accent-color-dark);
}
.cta-button {
    display: inline-block; background-color: transparent; color: var(--primary-color);
    padding: 12px 30px; font-family: var(--heading-font); font-weight: normal;
    text-transform: uppercase; border-radius: 2px; /* Sharp edges */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1.5px; border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(13, 250, 230, 0.3);
}
.cta-button:hover {
    background-color: var(--primary-color); color: var(--background-color);
    box-shadow: 0 0 25px rgba(13, 250, 230, 0.5);
    animation: ctaGlitchEffect 0.3s ease-out forwards;
}

/* Bio Section - Updated with new content and title */
#bio { background-color: var(--background-color); /* Ensure consistent dark bg */ }
#bio .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
#bio img {
    max-width: 300px; width: 100%; height: auto;
    border-radius: 4px; /* Sharper edges */
    border: 2px solid var(--accent-color-dark);
    box-shadow: 0 0 20px rgba(10, 106, 94, 0.2);
    filter: grayscale(60%) contrast(120%) brightness(0.9); /* More mood */
    /* Placeholder: Aim for intense, direct, or slightly unsettling portrait - UPDATED */
    content: url('SNC_5034.JPG');
}
#bio .bio-text { flex: 1; }
#bio .bio-text h2 { color: var(--accent-danger); /* "not okay" red */ }
#bio .bio-text .highlight { color: var(--primary-color); font-family: var(--heading-font); } /* For mixtape title */

/* Bio and Credits Images */
.bio-image,
.credits-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    border: 2px solid var(--accent-color-dark);
    background: #222;
    flex-shrink: 0;
}
.bio-image {
    margin-right: 32px;
}
.credits-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 0;
    flex-direction: row-reverse;
    width: 100%;
}
.credits-image {
    margin-left: 32px;
}
.bio-text, .credits-section > div {
    flex: 1;
    min-width: 220px;
}
#bio .bio-text h2, #credits h2 {
    color: var(--accent-danger);
    margin-top: 0;
}
#bio .bio-text .highlight {
    color: var(--primary-color);
    font-family: var(--heading-font);
}
.fcn-logo-image {
    max-width: 80vw;
}
@media (max-width: 1024px) {
    #bio .container,
    #credits .container {
        gap: 24px;
    }
    .credits-section {
        gap: 24px;
    }
}
@media (max-width: 768px) {
    #bio .container,
    #credits .container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }
    .bio-image,
    .credits-image {
        margin: 0 auto 18px auto;
        display: block;
        width: 140px;
        height: 140px;
    }
    .credits-section {
        flex-direction: column-reverse;
        align-items: center;
        gap: 18px;
        margin-top: 0;
    }
    .credits-image {
        margin: 0 auto 18px auto;
    }
    .bio-text, .credits-section > div {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .bio-image,
    .credits-image {
        width: 100px;
        height: 100px;
    }
    #bio .container,
    #credits .container {
        padding: 0 8px;
    }
}

/* --- HAMBURGER MENU MOBILE --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    .logo {
        margin-left: 48px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100vw;
        background-color: rgba(10, 10, 10, 0.98);
        position: absolute;
        top: 56px;
        left: 0;
        padding: 10px 0;
        z-index: 10;
        box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* --- SECTION SPACING --- */
section {
    padding: 60px 0 60px 0;
}
@media (max-width: 600px) {
    section {
        padding: 36px 0 36px 0;
    }
}

/* --- GENERAL IMPROVEMENTS --- */
.container {
    width: 94%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 10px;
}
.content-wrapper {
    position: relative;
    z-index: 1;
}
h1, h2, h3, h4 {
    margin-bottom: 0.8em;
    line-height: 1.1;
}
p {
    margin-bottom: 1.1em;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}
@media (max-width: 600px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
}

/* --- NEWS, MUSIC, VIDEO, TOUR, FOOTER: Keep as is, already responsive --- */
.news-item-image {
    width: 150px;
    height: 150px;
    object-fit: cover; /* Force square crop */
    border-radius: 4px;
    margin-bottom: 0;
    display: block;
    flex-shrink: 0; /* Prevent shrinking */
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    border: 2px solid var(--accent-color-dark);
}

/* Footer */
        footer {
            background-color: #000; /* Absolute black */
            color: #666; text-align: center; padding: 50px 20px;
            clip-path: none !important;
        }
        .social-links a {
            margin: 0 15px; font-size: 1.6rem; color: #666;
            transition: color 0.3s ease, transform 0.3s ease; display: inline-block;
        }
        .social-links a:hover { color: var(--primary-color); transform: translateY(-2px) scale(1.05); }
        footer p { margin-top: 20px; font-size: 0.85rem; }
        .sailor-gang {
            font-family: var(--body-font);
            font-size: 0.75rem;
            color: #444;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 25px;
            opacity: 0.7;
        }
