        @font-face {
            font-family: 'Typo';
            src: url('/fonts/Typo.ttf') format('truetype');
        }
        
        :root {
            --primary-color: #e5e5e5;
            --secondary-color: #b0b0b0;
            --accent-color: #5a5a5a;
            --border-color: #3a3a3a;
            --bg-primary: #1a1a1a;
            --bg-secondary: #2d2d2d;
            --spacing-unit: 1rem;
            --font-body: 'Typo', 'Courier Prime', monospace;
            --font-display: 'Fira Mono', 'Courier New', monospace;
            --font-glitch: 'Fira Mono', 'Courier New', monospace;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        a:active,
        button:active,
        .clickable:active {
            opacity: 0.6;
            transform: scale(0.98);
        }
        
        a,
        button,
        .clickable {
            transition: opacity 0.15s ease, transform 0.15s ease;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--primary-color);
            background: #000000;
            position: relative;
            overflow-x: clip;
        }

        html {
            overflow-x: hidden;
        }
        
        body::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1800px;
            overflow: hidden;
            max-width: 100vw;
            background: 
                radial-gradient(ellipse 1000px 800px at 15% 100%, rgba(0, 0, 0, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse 800px 700px at 85% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
                radial-gradient(ellipse 900px 750px at 45% 100%, rgba(0, 0, 0, 0.4) 0%, transparent 65%),
                radial-gradient(ellipse 700px 600px at 60% 100%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse 600px 500px at 30% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse 750px 650px at 70% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 55%),
                radial-gradient(ellipse 650px 550px at 25% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse 550px 450px at 50% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 48%),
                radial-gradient(ellipse 700px 600px at 38% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 52%),
                radial-gradient(ellipse 620px 520px at 78% 100%, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
            z-index: -1;
            animation: smokeRise 20s ease-in-out infinite;
            filter: blur(40px) contrast(1.12);
        }
        
        @keyframes smokeRise {
            0% {
                transform: translateY(150px) scale(0.95);
                opacity: 0.39;
            }
            25% {
                transform: translateY(100px) scale(1);
                opacity: 0.61;
            }
            50% {
                transform: translateY(50px) scale(1.05);
                opacity: 0.78;
            }
            75% {
                transform: translateY(80px) scale(1.02);
                opacity: 0.68;
            }
            100% {
                transform: translateY(150px) scale(0.95);
                opacity: 0.39;
            }
        }
        
        header {
            background: transparent;
            padding: 1.5rem 0;
            border-bottom: none;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.75rem var(--spacing-unit);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border-radius: 8px;
            margin: 0.5rem auto;
        }
        
        nav .logo {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--secondary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        nav a {
            font-family: var(--font-display);
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--accent-color);
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem var(--spacing-unit);
        }
        
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            padding: 0;
            overflow: hidden;
        }
        
        
        .hero-logo-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.3));
            transform: translateX(0) translateY(-2%);
            animation: fadeIn 0.8s ease-in-out forwards, pulseBlur 12s ease-in-out infinite;
        }
        
        .hero-logo {
            width: 45%;
            max-width: 600px;
            height: auto;
            object-fit: contain;
            image-rendering: crisp-edges;
            backface-visibility: hidden;
            will-change: auto;
        }

        .hero-logo-top,
        .hero-logo-bottom {
            display: block;
            width: 45%;
            max-width: 600px;
            margin: 0;
            padding: 0;
        }
        
        .hero-logo-bottom {
            margin-top: -3px;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(3%) translateY(-2%) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateX(3%) translateY(-2%) scale(1);
            }
        }
        
        @keyframes pulseBlur {
            0%, 100% {
                filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.3)) blur(0px);
            }
            50% {
                filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.3)) blur(2px);
            }
        }
        
        .scroll-text-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 0;
            margin: 0;
            overflow: hidden;
        }
        
        .scroll-text {
            width: 100%;
            padding: 2rem;
        }
        
        .scroll-text h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 8vw, 5rem);
            font-weight: 400;
            line-height: 1.2;
            color: var(--primary-color);
            text-align: center;
            margin: 0;
            letter-spacing: 0.05em;
            word-spacing: 0.2em;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
            text-transform: uppercase;
        }
        
        .text-part {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
        }
        
        #part1 {
            min-height: 2.4em;
            justify-content: flex-end;
        }
        
        .glitch-text {
            position: relative;
            display: inline-block;
            color: var(--primary-color);
        }
        
        .glitch-text.hidden {
            display: none;
        }
        
        .glitch-text.secondary {
            color: var(--primary-color);
        }
        
        /* Harsh noise - intense glitch */
        .glitch-text.harsh-noise {
            animation: glitch2Original 1.2s linear infinite 0.5s;
            font-family: var(--font-glitch);
        }
        
        /* Caustic - intense glitch */
        .glitch-text.caustic {
            animation: glitch2Original 1.2s linear infinite 0.5s;
            font-family: var(--font-glitch);
        }
        
        /* Hemorrhaging - intense glitch */
        .glitch-text.hemorrhaging {
            animation: glitch2Original 1.2s linear infinite 0.5s;
            font-family: var(--font-glitch);
        }
        
        /* Audio ritual - subtle glitch */
        .glitch-text.audio-ritual {
            animation: glitch1 4s linear infinite;
        }
        
        /* Analog filth - subtle glitch */
        .glitch-text.analog-filth {
            animation: glitch1 4s linear infinite;
        }
        
        .glitch-text:before,
        .glitch-text:after {
            content: attr(title);
            position: absolute;
            left: 0;
        }
        
        .glitch-text:before {
            clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
            color: var(--primary-color);
        }
        
        /* Intense glitch before elements */
        .glitch-text.harsh-noise:before,
        .glitch-text.caustic:before,
        .glitch-text.hemorrhaging:before {
            animation: glitchTop2Original 1.2s linear infinite 0.5s;
        }
        
        /* Subtle glitch before elements */
        .glitch-text.audio-ritual:before,
        .glitch-text.analog-filth:before {
            animation: glitchTop1 4s linear infinite;
        }
        
        .glitch-text.secondary:before {
            color: var(--primary-color);
        }
        
        .glitch-text:after {
            clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
            -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
            color: var(--primary-color);
        }
        
        /* Intense glitch after elements */
        .glitch-text.harsh-noise:after,
        .glitch-text.caustic:after,
        .glitch-text.hemorrhaging:after {
            animation: glitchBotom2Original 1.5s linear infinite 0.5s;
        }
        
        /* Subtle glitch after elements */
        .glitch-text.audio-ritual:after,
        .glitch-text.analog-filth:after {
            animation: glitchBotom1 5s linear infinite;
        }
        
        .glitch-text.secondary:after {
            color: var(--primary-color);
        }
        
        /* Glitch keyframes */
        @keyframes glitch1 {
            0%,100%{
                transform: translate(0,0) skew(0deg);
            }
            5%,95%{
                transform: translate(0,0) skew(0deg);
            }
            30%{
                transform: translate(0.5px,0) skew(0deg);
            }
            32%{
                transform: translate(-0.5px,0) skew(0deg);
            }
            90%{
                transform: translate(0,0) skew(1deg);
            }
        }
        
        @keyframes glitch2Original {
            2%,64%{
                transform: translate(2px,0) skew(0deg);
            }
            4%,60%{
                transform: translate(-2px,0) skew(0deg);
            }
            62%{
                transform: translate(0,0) skew(5deg);
            }
        }
        
        @keyframes glitchTop1 {
            0%,100%{
                transform: translate(0,0);
            }
            5%,95%{
                transform: translate(0,0);
            }
            30%{
                transform: translate(0.5px,-0.5px);
            }
            32%{
                transform: translate(-0.5px,0.5px);
            }
            90%{
                transform: translate(2px,-0.5px) skew(-2deg);
            }
        }
        
        @keyframes glitchTop2Original {
            2%,64%{
                transform: translate(2px,-2px);
            }
            4%,60%{
                transform: translate(-2px,2px);
            }
            62%{
                transform: translate(13px,-1px) skew(-13deg);
            }
        }
        
        @keyframes glitchBotom1 {
            0%,100%{
                transform: translate(0,0);
            }
            5%,95%{
                transform: translate(0,0);
            }
            30%{
                transform: translate(-0.5px,0);
            }
            32%{
                transform: translate(-0.5px,0);
            }
            90%{
                transform: translate(-3px,1.5px) skew(2deg);
            }
        }
        
        @keyframes glitchBotom2Original {
            2%,64%{
                transform: translate(-2px,0);
            }
            4%,60%{
                transform: translate(-2px,0);
            }
            62%{
                transform: translate(-22px,5px) skew(21deg);
            }
        }
        
        @keyframes scrollFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .featured-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--bg-secondary);
            border-radius: 8px;
        }
        
        .latest-gigs {
            margin-left: 5%;
            margin-right: auto;
            max-width: 70%;
        }
        
        .recent-music {
            margin-right: 5%;
            margin-left: auto;
            max-width: 70%;
        }
        
        .about-preview {
            margin-left: auto;
            margin-right: 8%;
            max-width: 65%;
        }
        
        .social-links {
            margin-left: 3%;
            margin-right: auto;
            max-width: 60%;
        }
        
        .featured-section h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        /* Terminal-style sections */
        .terminal-section {
            margin-bottom: 4rem;
            padding: 0 2rem 2rem 2rem;
            border: none;
            display: block;
            width: fit-content;
        }
        
        .terminal-left {
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            margin-left: 12ch;
        }
        
        .terminal-right {
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            float: right;
            margin-right: 12ch;
        }
        
        .terminal-title {
            font-family: var(--font-structure);
            font-size: 1rem;
            color: var(--secondary-color);
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }
        
        .terminal-title-right {
            text-align: right;
        }
        
        .terminal-header {
            font-family: var(--font-structure);
            font-size: 1rem;
            color: var(--secondary-color);
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            padding-top: 0.5rem;
            padding-bottom: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .terminal-list {
            display: inline-block;
            min-width: 100%;
        }
        
        .terminal-header-right {
            text-align: right;
        }
        
        .terminal-list-right {
            text-align: right;
            padding-left: 12ch;
            padding-right: 0;
        }
        
        .terminal-list-right .terminal-item {
            text-align: right;
        }
        
        .terminal-list-right .terminal-item a {
            text-align: right;
        }
        
        .terminal-link-right {
            font-family: var(--font-structure);
            font-size: 0.9rem;
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .terminal-link-right:hover {
            color: var(--accent-color);
        }
        
        .terminal-list {
            width: fit-content;
            padding-right: 12ch;
        }
        
        .terminal-item {
            font-family: var(--font-structure);
            font-size: 0.9rem;
            padding: 0.5rem 0;
            white-space: nowrap;
            display: inline !important;
        }
        
        .terminal-item:nth-of-type(odd) {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .terminal-item:nth-of-type(odd) .w1,
        .terminal-item:nth-of-type(odd) .w3 {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .terminal-item:nth-of-type(odd) .w2 {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .terminal-item:nth-of-type(even) {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .terminal-item:nth-of-type(even) .w1,
        .terminal-item:nth-of-type(even) .w3 {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .terminal-item:nth-of-type(even) .w2 {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .terminal-item:hover {
        }
        
        .terminal-row-link {
            color: inherit;
            text-decoration: none;
            display: inline;
        }
        
        .terminal-row-link:hover {
            color: var(--accent-color);
        }
        
        .terminal-item a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .terminal-item a:hover {
            color: var(--accent-color);
        }
        
        .tab {
            display: inline-block;
            width: 2ch;
        }
        
        .terminal-action {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .terminal-action:hover {
            color: var(--accent-color);
        }
        
        @media (max-width: 768px) {
            .terminal-section {
                margin-left: 0 !important;
                margin-right: 0 !important;
                float: none !important;
                width: 100%;
                padding: 0 1rem 2rem 1rem;
                font-size: 12px;
            }
            
            .terminal-list,
            .terminal-list-right {
                padding-left: 0;
                padding-right: 0;
                width: 100%;
            }
            
            .terminal-item {
                white-space: normal;
                word-wrap: break-word;
            }
            
            .terminal-item .w3 {
                display: none;
            }
            
            .terminal-item .w1 {
                white-space: nowrap;
            }
            
            .terminal-item .w2 {
                white-space: nowrap;
            }
            
            .terminal-item .tab {
                width: 0.5rem;
            }
            
            
            .tab {
                width: 1rem;
            }
        }
        
        .gigs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .gig-card {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 1.5rem;
            display: flex;
            gap: 1rem;
            transition: box-shadow 0.3s;
        }
        
        .gig-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        
        .gig-date {
            font-family: var(--font-display);
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 0.75rem 1rem;
            border-radius: 4px;
            font-weight: bold;
            min-width: 70px;
            text-align: center;
            height: fit-content;
            white-space: nowrap;
        }
        
        .gig-info h3 {
            font-family: var(--font-display);
            margin: 0 0 0.25rem 0;
            font-size: 1.1rem;
        }
        
        .gig-info h3 a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .gig-info h3 a:hover {
            text-decoration: underline;
        }
        
        .gig-location {
            color: var(--secondary-color);
            font-size: 0.9rem;
            margin: 0;
        }
        
        .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .album-preview {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 1.5rem;
            transition: box-shadow 0.3s;
        }
        
        .album-preview:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        
        .album-preview h3 {
            font-family: var(--font-display);
            margin: 0 0 0.75rem 0;
        }
        
        .album-preview h3 a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .album-preview h3 a:hover {
            text-decoration: underline;
        }
        
        .album-desc {
            color: var(--secondary-color);
            font-style: italic;
            margin: 0 0 0.5rem 0;
        }
        
        .album-date {
            color: var(--secondary-color);
            font-size: 0.9rem;
            margin: 0;
        }
        
        .section-footer {
            text-align: center;
            margin-top: 1.5rem;
        }
        
         .view-all, .read-more {
             display: inline-block;
             font-family: var(--font-display);
             color: var(--accent-color);
             text-decoration: none;
             font-weight: 500;
             transition: all 0.3s;
             padding: 0.5rem 1rem;
         }
        
        .glitch-link {
            background: transparent !important;
            color: var(--primary-color) !important;
            position: relative;
            display: inline-block;
        }
        
        .glitch-link::before,
        .glitch-link::after {
            content: 'Enter the void →';
            position: absolute;
            left: 2px;
            top: -1px;
            padding: 0.5rem 1rem;
            width: 100%;
            height: 100%;
        }
        
        .glitch-link::before {
            animation: glitchTop2Link 1.7s linear infinite 0.3s;
            clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
        }
        
        .glitch-link::after {
            animation: glitchBottom2Link 2.1s linear infinite 0.7s;
            clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
        }
        
        @keyframes glitchTop2Link {
            2%, 64% {
                transform: translate(2px, -2px);
            }
            4%, 60% {
                transform: translate(-2px, 2px);
            }
            62% {
                transform: translate(13px, -1px) skew(-13deg);
            }
        }
        
        @keyframes glitchBottom2Link {
            2%, 64% {
                transform: translate(-2px, 0);
            }
            4%, 60% {
                transform: translate(-2px, 0);
            }
            62% {
                transform: translate(-22px, 5px) skew(21deg);
            }
        }
        
        .view-all:hover, .read-more:hover {
            color: var(--bg-primary);
            background: var(--accent-color);
            border-radius: 4px;
        }
        
        .about-preview p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }
        
        .social-list {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .social-list a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .social-list a:hover {
            color: var(--primary-color);
        }
        
        .no-content {
            color: var(--secondary-color);
            font-style: italic;
        }
        
        footer {
            background: transparent;
            padding: 2rem;
            margin-top: 0;
            text-align: center;
            color: var(--secondary-color);
            border-top: none;
        }

        @media (max-width: 768px) {
            footer {
                padding-bottom: 4rem;
            }
        }
        
        @media (min-width: 769px) {
            footer {
                padding-top: 20rem;
            }
        }
        
        footer::before {
            content: '';
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: url('/images/footer-background.jpg') center bottom / 100% auto no-repeat;
            z-index: -2;
            opacity: var(--footer-bg-opacity, 0);
            transition: opacity 0.3s ease;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        @media (min-width: 769px) {
            .footer-content {
                transform: translateY(-300px);
            }
        }
        
        .footer-copyright {
            margin: 0;
            font-size: 0.8rem;
            line-height: 1.2;
        }
        
        .footer-text-bg {
            background: rgb(0, 0, 0);
            padding: 0.25rem 0.5rem;
            border-radius: 2px;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        
        .footer-divider {
            width: 200px;
            border: none;
            border-top: 1px solid rgba(229, 229, 229, 0.2);
            margin: 1rem auto;
            opacity: 0.5;
        }
        
        .footer-license-link,
        .footer-version-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.75rem;
            border-bottom: 1px solid var(--border-color);
            transition: border-color 0.3s ease;
            display: inline-block;
            margin-top: 0.5rem;
        }
        
        .footer-license-link:hover,
        .footer-version-link:hover {
            border-bottom-color: var(--primary-color);
        }
        
        .footer-logo {
            max-width: 350px;
            height: auto;
            margin: 0 auto 0.75rem;
            display: block;
            opacity: var(--footer-logo-opacity, 0);
            transition: opacity 0.3s ease;
        }
        
        .footer-social {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 0;
            margin: 0;
        }
        
        .footer-social li {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 0.5px solid rgba(229, 229, 229, 0.3);
            background: rgb(0, 0, 0);
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 0 12px 0 rgba(229, 229, 229, 0.6), inset 0 0 8px 0 rgba(229, 229, 229, 0.3);
        }
        
        .footer-social a:hover {
            border-color: rgba(229, 229, 229, 0.45);
            color: var(--primary-color);
            background: rgba(229, 229, 229, 0.1);
            box-shadow: 0 0 20px 0 rgba(229, 229, 229, 0.9), inset 0 0 12px 0 rgba(229, 229, 229, 0.5);
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
            }
            
            .hero-logo-container {
                transform: translateX(0) translateY(-2%);
            }
            
            .hero-logo-top,
            .hero-logo-bottom {
                width: 65%;
                max-width: 100%;
            }
            
            .latest-gigs,
            .recent-music,
            .about-preview,
            .social-links {
                margin-left: auto;
                margin-right: auto;
                max-width: 100%;
            }
            
            .gigs-grid, .music-grid {
                grid-template-columns: 1fr;
            }
            
            .gig-date {
                font-size: 0.75rem;
                padding: 0.5rem 0.5rem;
                min-width: 55px;
            }
        }

/* Gear Page Styles */
.gear-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.gear-page h1 {
    font-family: 'Fira Mono', monospace;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gear-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gear-controls input,
.gear-controls select {
    padding: 0.5rem;
    background: rgba(229, 229, 229, 0.05);
    border: 1px solid rgba(229, 229, 229, 0.3);
    color: var(--primary-color);
    font-family: 'Fira Mono', monospace;
    font-size: 0.9rem;
}

.gear-search-wrapper {
    margin-bottom: 1rem;
    position: relative;
}

.gear-search-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(229, 229, 229, 0.3);
    filter: url(#rough);
    pointer-events: none;
}

.gear-search-wrapper input {
    width: 100%;
    padding: 0.5rem;
    background: rgba(229, 229, 229, 0.05);
    border: 1px solid rgba(229, 229, 229, 0.3);
    color: var(--primary-color);
    font-family: 'Fira Mono', monospace;
    font-size: 0.9rem;
}

.gear-search-wrapper input:focus {
    outline: none;
    border-color: rgba(229, 229, 229, 0.4);
}

.toggle-all-btn {
    padding: 0.5rem 1rem;
    background: rgba(229, 229, 229, 0.05);
    border: 1px solid rgba(229, 229, 229, 0.3);
    color: var(--primary-color);
    font-family: 'Fira Mono', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.toggle-all-btn .expand-icon,
.toggle-all-btn .collapse-icon {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.toggle-all-btn .expand-icon.active,
.toggle-all-btn .collapse-icon.active {
    opacity: 1;
}

.toggle-all-btn:hover {
    background: rgba(229, 229, 229, 0.1);
    border-color: rgba(229, 229, 229, 0.4);
}

.input-wrapper {
    filter: url(#rough);
    display: inline-block;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 15%),
        radial-gradient(ellipse at 35% 45%, 
            rgba(180, 90, 70, 0.75) 0%, 
            rgba(165, 82, 62, 0.62) 8%, 
            rgba(150, 75, 55, 0.5) 14%, 
            rgba(135, 68, 50, 0.4) 19%, 
            rgba(120, 60, 45, 0.3) 24%, 
            rgba(105, 52, 38, 0.22) 28%, 
            rgba(90, 45, 32, 0.15) 32%, 
            rgba(75, 38, 27, 0.1) 35%, 
            rgba(60, 30, 20, 0.06) 38%, 
            rgba(45, 22, 15, 0.03) 41%, 
            rgba(30, 15, 10, 0.01) 44%, 
            transparent 48%),
        radial-gradient(ellipse at 55% 30%, 
            rgba(140, 70, 50, 0.6) 0%, 
            rgba(127, 63, 45, 0.5) 8%, 
            rgba(115, 57, 41, 0.4) 14%, 
            rgba(102, 51, 37, 0.32) 19%, 
            rgba(90, 45, 32, 0.24) 24%, 
            rgba(77, 38, 27, 0.18) 28%, 
            rgba(65, 32, 23, 0.12) 32%, 
            rgba(52, 26, 18, 0.08) 35%, 
            rgba(40, 20, 14, 0.04) 38%, 
            rgba(27, 13, 9, 0.02) 41%, 
            rgba(15, 7, 5, 0.005) 44%, 
            transparent 46%),
        radial-gradient(ellipse at 45% 70%, 
            rgba(120, 60, 45, 0.55) 0%, 
            rgba(108, 54, 40, 0.46) 8%, 
            rgba(96, 48, 36, 0.38) 14%, 
            rgba(84, 42, 31, 0.3) 19%, 
            rgba(72, 36, 27, 0.23) 24%, 
            rgba(60, 30, 22, 0.16) 28%, 
            rgba(48, 24, 18, 0.11) 32%, 
            rgba(36, 18, 13, 0.07) 35%, 
            rgba(24, 12, 9, 0.03) 38%, 
            rgba(12, 6, 4, 0.01) 41%, 
            transparent 44%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 0.95) 100%);
    border-radius: 4px;
    font-family: 'Fira Mono', monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 
        inset 0 0 8px rgba(160, 80, 60, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.5);
}

.filter-tag:hover {
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 15%),
        radial-gradient(ellipse at 40% 50%, 
            rgba(200, 100, 80, 0.85) 0%, 
            rgba(185, 92, 74, 0.72) 8%, 
            rgba(170, 85, 68, 0.6) 14%, 
            rgba(155, 77, 62, 0.5) 19%, 
            rgba(140, 70, 56, 0.4) 24%, 
            rgba(125, 62, 50, 0.31) 28%, 
            rgba(110, 55, 44, 0.23) 32%, 
            rgba(95, 47, 38, 0.16) 35%, 
            rgba(80, 40, 32, 0.1) 38%, 
            rgba(65, 32, 26, 0.05) 41%, 
            rgba(40, 20, 16, 0.02) 44%, 
            transparent 48%),
        radial-gradient(ellipse at 60% 25%, 
            rgba(160, 80, 60, 0.7) 0%, 
            rgba(147, 73, 55, 0.59) 8%, 
            rgba(135, 67, 50, 0.49) 14%, 
            rgba(122, 61, 45, 0.4) 19%, 
            rgba(110, 55, 41, 0.31) 24%, 
            rgba(97, 48, 36, 0.23) 28%, 
            rgba(85, 42, 31, 0.17) 32%, 
            rgba(72, 36, 27, 0.11) 35%, 
            rgba(60, 30, 22, 0.06) 38%, 
            rgba(47, 23, 17, 0.03) 41%, 
            rgba(25, 12, 9, 0.01) 44%, 
            transparent 46%),
        radial-gradient(ellipse at 50% 75%, 
            rgba(140, 70, 55, 0.65) 0%, 
            rgba(128, 64, 50, 0.55) 8%, 
            rgba(116, 58, 45, 0.46) 14%, 
            rgba(104, 52, 40, 0.37) 19%, 
            rgba(92, 46, 36, 0.29) 24%, 
            rgba(80, 40, 31, 0.21) 28%, 
            rgba(68, 34, 26, 0.15) 32%, 
            rgba(56, 28, 22, 0.1) 35%, 
            rgba(44, 22, 17, 0.05) 38%, 
            rgba(32, 16, 12, 0.02) 41%, 
            rgba(16, 8, 6, 0.008) 44%, 
            transparent 44%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.92) 100%);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 0 10px rgba(180, 90, 70, 0.2),
        0 3px 8px rgba(0, 0, 0, 0.6);
}

.filter-tag-remove {
    font-size: 1.3rem;
    line-height: 1;
    color: rgba(229, 229, 229, 0.5);
    transition: color 0.2s ease;
    font-weight: bold;
}

.filter-tag:hover .filter-tag-remove {
    color: var(--primary-color);
}

.gear-controls input:not([type="checkbox"]) {
    flex: 1;
    min-width: 200px;
    width: 100%;
}

.gear-controls select {
    min-width: 150px;
}

.input-wrapper {
    display: inline-block;
    position: relative;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(229, 229, 229, 0.3);
    filter: url(#rough);
    pointer-events: none;
}

.input-wrapper:has(input[type="checkbox"]) {
    border: none;
    flex: 0 0 auto;
    min-width: auto;
    align-self: flex-start;
}

.input-wrapper:has(input[type="checkbox"])::before {
    display: none;
}

.input-wrapper:has(input[type="checkbox"]) label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1rem;
}

.gear-controls input[type="checkbox"] {
    appearance: none;
    width: 1rem;
    height: 1rem;
    background: rgba(229, 229, 229, 0.05);
    border: 1px solid rgba(229, 229, 229, 0.3);
    cursor: pointer;
}

.gear-controls input[type="checkbox"]:checked {
    background: rgba(229, 229, 229, 0.3);
}

.input-wrapper:has(input:not([type="checkbox"])) {
    flex: 1;
    min-width: 200px;
}

.gear-controls input:focus,
.gear-controls select:focus {
    outline: none;
    border-color: rgba(229, 229, 229, 0.4);
}

.gear-list {
    column-count: 3;
    column-gap: 0.5rem;
}

.gear-item {
    break-inside: avoid;
    margin-bottom: 0.5rem;
    background: #000;
    border: 1px solid rgba(229, 229, 229, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.gear-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(229, 229, 229, 0.1);
    filter: url(#rough);
    pointer-events: none;
}


.gear-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    filter: none;
}

.gear-title {
    font-family: 'Fira Mono', monospace;
    font-size: 1rem;
    color: var(--primary-color);
    filter: none;
}

.gear-expand {
    color: rgba(229, 229, 229, 0.5);
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.gear-item.expanded .gear-expand {
    transform: rotate(180deg);
}

.gear-item.expanded .gear-details {
    border-top: none;
}

.gear-details {
    display: none;
    padding: 0 1rem 1rem 1rem;
    border-top: 1px solid rgba(229, 229, 229, 0.1);
}

.gear-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.gear-category,
.gear-types,
.gear-tech {
    font-family: 'Fira Mono', monospace;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(229, 229, 229, 0.2);
    color: rgba(229, 229, 229, 0.7);
}

.clickable-filter {
    cursor: pointer;
    transition: all 0.2s ease;
}

.clickable-filter:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-color: rgba(229, 229, 229, 0.4);
}

.gear-category {
    background: rgba(229, 229, 229, 0.1);
}

.gear-types {
    background: rgba(180, 120, 80, 0.15);
    border-color: rgba(180, 120, 80, 0.3);
}

.gear-tech {
    background: rgba(100, 150, 180, 0.15);
    border-color: rgba(100, 150, 180, 0.3);
}

.gear-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(229, 229, 229, 0.8);
    filter: none;
}

.gear-settings {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(229, 229, 229, 0.7);
}

.gear-settings strong {
    color: var(--primary-color);
}

.settings-section {
    margin-left: 1rem;
    margin-top: 0.25rem;
}

.settings-section em {
    color: rgba(229, 229, 229, 0.8);
    font-style: normal;
    font-weight: 500;
}

.gear-links {
    display: flex;
    gap: 1rem;
}

.gear-links a {
    font-family: 'Fira Mono', monospace;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 229, 229, 0.3);
    transition: all 0.2s ease;
}

.gear-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

#no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(229, 229, 229, 0.5);
}

.gear-stats {
    margin-top: 2rem;
    padding: 1rem;
    font-family: 'Fira Mono', monospace;
    font-size: 0.75rem;
    color: rgba(229, 229, 229, 0.35);
    line-height: 1.8;
    text-align: center;
}

.gear-stats div {
    background: #000;
    display: inline-block;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.25rem;
}

.gear-stats div::after {
    content: none;
}

.gear-stats a {
    color: rgba(229, 229, 229, 0.35);
    text-decoration: none;
}

.gear-stats a:hover {
    color: rgba(229, 229, 229, 0.6);
}

/* Sold gear styling */
.gear-item.sold {
    opacity: 0.7;
    border-left: 3px solid #ff4444;
}

.gear-item.sold .gear-title {
    font-style: italic;
    color: #ff6666;
}

/* Want gear styling */
.gear-item.want {
    opacity: 0.7;
    border-left: 3px solid #44ff44;
}

.gear-item.want .gear-title {
    font-style: italic;
    color: #66ff66;
}

@media (max-width: 768px) {
    .gear-list {
        column-count: 1;
    }
    
    .gear-controls {
        flex-direction: column;
    }
    
    .gear-controls input:not([type="checkbox"]),
    .gear-controls select {
        width: 100%;
    }
    
    .input-wrapper:has(input[type="checkbox"]) {
        display: inline-block;
        margin-right: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .gear-meta {
        gap: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gear-list {
        column-count: 2;
    }
}
