:root {
    /* Rustic Palette - Deep & Earthy */
    --rustic-dark: #2D1B15;       /* Very dark wood */
    --rustic-brown: #5D4037;      /* Aged leather */
    --rustic-copper: #B87333;     /* Copper accents */
    --rustic-rust: #8B4513;       /* Rust */
    --rustic-dirt: #3E2723;       /* Dark soil */
    --rustic-paper: #D7CCC8;      /* Old paper */
    
    /* Futuristic Palette - High Voltage */
    --neon-green: #39FF14;
    --neon-cyan: #00F3FF;
    --neon-amber: #FFBF00;        /* Tube amplifier glow */
    --tech-overlay: rgba(0, 243, 255, 0.05);
    
    /* Effects */
    --neon-glow-green: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green), 0 0 20px rgba(57, 255, 20, 0.3);
    --neon-glow-cyan: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 243, 255, 0.3);
    --glass-panel: rgba(10, 10, 10, 0.7);
    --border-tech: 1px solid var(--neon-green);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif;
    background-color: #1a120b; /* Deep background */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(57, 255, 20, 0.03) 1px, rgba(57, 255, 20, 0.03) 2px);
    color: var(--rustic-paper);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scanline Animation */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Overrides */
h1, h2, h3, h4, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Top Bar - Tech Panel Look */
.top-bar {
    background-color: #0f0a08;
    color: var(--rustic-copper);
    padding: 8px 0;
    font-family: 'Share Tech Mono', monospace;
    border-bottom: 1px solid var(--rustic-rust);
    position: relative;
}

.top-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 1px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1rem;
    color: var(--rustic-copper);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--neon-green);
    text-shadow: var(--neon-glow-green);
    transform: scale(1.1);
}

.contact-email {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

/* Nav Bar - Cyber Rustic Fusion */
.nav-bar {
    background: linear-gradient(180deg, rgba(45, 27, 21, 0.95) 0%, rgba(20, 10, 5, 0.95) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--rustic-brown);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Logo - Heading Integration */
.logo-container {
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.heading-logo {
    display: block;
    margin: 0 auto;
    height: 250px; /* Increased size to 250px per request */
    width: auto;
    max-width: 100%;
    /* Subtle blending with theme colors */
    filter: drop-shadow(0 0 10px rgba(184, 115, 51, 0.3)); /* Copper glow hint */
    transition: transform 0.3s ease;
}

.heading-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--neon-cyan)); /* Pop on hover */
}

/* Removed Nav Bar Logo Styles */



/* Removed old text/icon styles since we are using an image now */
/* .logo-text, .logo-icon styles removed */

/* Fix transform conflict with inline style */
.logo-link[style*="transform"] {
    transform: translateX(-50%);
}

.logo-link:hover {
    transform: translateX(-50%) !important; /* Keep centered, let image scale */
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 35px;
}

.nav-list a {
    font-family: 'Share Tech Mono', monospace;
    color: var(--rustic-paper);
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-list a::before {
    content: '[';
    margin-right: 5px;
    color: var(--neon-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-list a::after {
    content: ']';
    margin-left: 5px;
    color: var(--neon-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

.nav-list a:hover::before, .nav-list a:hover::after,
.nav-list a.active::before, .nav-list a.active::after {
    opacity: 1;
}

/* Heading / Banner - Holographic Farm */
.page-heading {
    background: 
        linear-gradient(rgba(45, 27, 21, 0.6), rgba(10, 5, 2, 0.8)), /* Slightly reduced opacity to show banner better */
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 243, 255, 0.05) 10px, rgba(0, 243, 255, 0.05) 11px),
        url('../images/image_banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 0;
    position: relative;
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.heading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .heading-content {
        flex-direction: column;
        gap: 20px;
    }
}

.artist-name {
    font-size: 4rem;
    margin: 0;
    color: #fff;
    text-shadow: 
        3px 3px 0 var(--rustic-rust),
        -2px -2px 0 var(--neon-cyan),
        0 0 15px var(--neon-cyan);
    position: relative;
    display: inline-block;
}

.artist-message {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.4rem;
    margin-top: 15px;
    color: var(--neon-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--rustic-copper);
}

/* Content Section */
.content-section {
    padding: 60px 0;
    min-height: 500px;
    background-image: radial-gradient(circle at 50% 50%, rgba(62, 39, 35, 0.2) 0%, transparent 70%);
}

h2 {
    color: var(--rustic-paper);
    border-left: 5px solid var(--rustic-copper);
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--rustic-copper), transparent);
    margin-left: 20px;
}

/* Cyber-Rustic Cards */
.music-track, .contact-info, .contact-form, .feature-card {
    background: rgba(30, 20, 15, 0.8);
    border: 1px solid var(--rustic-brown);
    border-left: 4px solid var(--neon-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    padding: 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

/* Corner Accents */
.music-track::before, .contact-info::before, .contact-form::before, .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
}

/* Buttons - Sci-Fi Shape */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
    position: relative;
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.1);
}

.btn:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 
        0 0 20px var(--neon-green),
        inset 0 0 10px #000;
    text-shadow: none;
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: rgba(10, 5, 2, 0.6);
    border: 1px solid var(--rustic-brown);
    color: var(--neon-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    box-sizing: border-box; /* Fix padding issue */
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background-color: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--rustic-copper);
    margin-bottom: 8px;
    display: block;
}

/* Footer */
footer {
    background-color: #0f0a08;
    border-top: 1px solid var(--rustic-rust);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 100%);
    box-shadow: 0 0 10px var(--neon-green);
}

footer p {
    font-family: 'Share Tech Mono', monospace;
    color: var(--rustic-paper);
    opacity: 0.7;
}

/* Artist Bio */
.artist-bio {
    background: rgba(10, 5, 2, 0.6);
    padding: 30px;
    border-left: 2px solid var(--rustic-copper);
    border-right: 2px solid var(--rustic-copper);
    margin-bottom: 40px;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.artist-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184, 115, 51, 0.05) 3px);
    pointer-events: none;
    z-index: -1;
}

.artist-bio p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: var(--rustic-paper);
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.artist-bio .bio-highlight {
    color: var(--neon-green);
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-green);
    border-top: 1px dashed var(--rustic-brown);
    padding-top: 20px;
}

/* Stats Section - Futuristic HUD Style */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}

.stat-box {
    background: rgba(10, 5, 2, 0.8);
    border: 1px solid var(--rustic-brown);
    padding: 30px 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tech Corners */
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--neon-green);
    border-left: 2px solid var(--neon-green);
}

.stat-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--neon-green);
    border-right: 2px solid var(--neon-green);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.15);
    border-color: var(--neon-green);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--rustic-copper);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(184, 115, 51, 0.5);
}

.stat-box:hover .stat-icon {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    animation: pulse 1s infinite alternate;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--neon-green);
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--rustic-paper);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Music Track Specifics */
.music-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.track-info h4 {
    color: var(--neon-amber);
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.track-info p {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--rustic-paper);
}

/* Spotify Grid */
.spotify-grid {
    display: flex; /* Force flex for direct control */
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.spotify-embed-container {
    flex: 1 1 300px; /* Grow, shrink, base width 300px */
    max-width: 380px; /* Prevent them from getting too huge individually */
    min-width: 300px; /* Ensure they don't get too squashed */
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-embed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

/* Management Box */
.management-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--neon-green);
    color: var(--rustic-paper);
}

.management-box h4 {
    color: var(--neon-green);
    margin-top: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-list {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-list li {
        margin: 0 10px;
    }

    .artist-name {
        font-size: 2.5rem;
    }

    .artist-message {
        font-size: 1rem;
    }

    .heading-logo {
        height: 150px;
    }
    
    .spotify-embed-container {
        max-width: 100%; /* Full width on mobile */
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .artist-bio {
        padding: 20px;
        clip-path: none; /* Simplify shape for mobile if needed, or keep it */
        border: 1px solid var(--rustic-copper);
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .artist-name {
        font-size: 2rem;
    }
}

/* Utilities */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a120b;
}
::-webkit-scrollbar-thumb {
    background: var(--rustic-brown);
    border: 1px solid var(--neon-green);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}
