* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", serif;
    overflow-x: hidden;
    background: black;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    cursor: auto; /* Default cursor, saber cursor activated by button */
}

/* Custom cursor for interactive elements - only when saber is activated */
a, button, .drum-pad, .nav-btn, .portfolio-tab, input[type="range"], .search-btn, .filter-btn, .project-item {
    cursor: pointer; /* Normal pointer by default */
}

/* Hover state for interactive elements - only when saber is activated */
a:hover, button:hover, .drum-pad:hover, .nav-btn:hover, .portfolio-tab:hover, .search-btn:hover, .filter-btn:hover, .project-item:hover {
    cursor: pointer; /* Normal pointer by default */
}

/* Saber cursor classes - applied when lightsaber is active */
body.saber-active {
    cursor: url('MEDIA/CURSOR.png?v=2') 0 0, crosshair !important;
}

body.saber-active a, 
body.saber-active button, 
body.saber-active .drum-pad, 
body.saber-active .nav-btn, 
body.saber-active .portfolio-tab, 
body.saber-active input[type="range"], 
body.saber-active .search-btn, 
body.saber-active .filter-btn, 
body.saber-active .project-item {
    cursor: url('MEDIA/CURSOR.png?v=2') 0 0, pointer !important;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    color: white;
    padding: 20px;
}

.artist-name {
    font-family: "Times New Roman", serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: white;
    margin-bottom: 0px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.agent-info {
    font-family: "Times New Roman", serif;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    color: #ccc;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Drum Machine */
.drum-machine {
    margin: 20px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.drum-pads {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Volume Control in Hero */
.loading-volume-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    position: relative;
}

.loading-volume-slider {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
}

.loading-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
}

.loading-volume-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

/* Spider emoji overlay */
.spider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    transition: left 0.1s ease;
}

.volume-icon {
    font-size: 14px;
    color: white;
    font-family: "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Social Links in Hero */
.social-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-links-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 200px;
    text-align: center;
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px) saturate(2.0);
    -webkit-backdrop-filter: blur(24px) saturate(2.0);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.16),
        0 4px 12px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.15s ease;
}

/* Special square buttons */
.square-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.theme-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px) saturate(2.0);
    -webkit-backdrop-filter: blur(24px) saturate(2.0);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.16),
        0 4px 12px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Vertical Saber Volume Slider Styling */
.saber-volume-control input[type="range"] {
    writing-mode: bt-lr; /* IE */
    -webkit-appearance: slider-vertical; /* WebKit */
    appearance: slider-vertical;
    width: 20px;
    height: 150px;
    background: rgba(255,255,255,0.2);
    outline: none;
    cursor: pointer;
    border-radius: 10px;
}

.saber-volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #00ff41;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.saber-volume-control input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #00ff41;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Drum Machine Section */
.drum-machine-section {
    background: black;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drum-machine-content {
    max-width: 800px;
    margin: 0 auto;
}

.drum-machine-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: "Times New Roman", serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.drum-machine-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-family: "Times New Roman", serif;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Drum Machine Specific Styling */
.drum-machine-section .drum-machine {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.drum-machine-section .drum-pads {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.drum-machine-section .drum-pad {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    user-select: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.drum-machine-section .drum-pad:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.drum-machine-section .drum-pad-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all 0.2s ease;
    z-index: 10;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Volume Control for Drum Machine Section */
.drum-volume-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
}

.drum-volume-slider {
    width: 250px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    -webkit-appearance: none;
    appearance: none;
}

.drum-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
}

.drum-volume-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

.drum-volume-control .volume-icon {
    font-size: 16px;
    color: white;
    font-family: "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

.drum-volume-control .spider-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    pointer-events: none;
    transition: left 0.1s ease;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.main-nav.visible {
    transform: translateY(0);
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Mobile-friendly touch properties */
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* Ensure minimum touch target size */
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.9);
}

.nav-btn.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Navigation Search Bar */
.nav-search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 5px;
    backdrop-filter: blur(10px);
    flex: 1;
    max-width: 400px;
}

#navSearchInput {
    background: transparent;
    border: none;
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 0.9rem;
    padding: 8px 15px;
    outline: none;
    flex: 1;
    min-width: 0;
}

#navSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

/* Portfolio Section */
.portfolio-section {
    background: black;
    min-height: 100vh;
    padding: 80px 20px 40px 20px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 3px double white;
    padding-bottom: 30px;
}

.portfolio-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    color: white;
    background-color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 15px 30px;
    display: inline-block;
}

.portfolio-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: white;
    background-color: black;
    font-style: italic;
    padding: 8px 20px;
    display: inline-block;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* BattleTech/MechWarrior Themed Font */
.mechwarrior-project {
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.mechwarrior-project .project-headline {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
    background-color: black;
}

.mechwarrior-project .project-byline,
.mechwarrior-project .project-dateline {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background-color: black;
}

.mechwarrior-project .project-body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    font-weight: 400;
    color: white;
    background-color: rgba(0, 0, 0, 0.95);
}

/* A24 Indie Film Themed Font */
.a24-project {
    font-family: 'Georgia', 'Times', serif;
}

.a24-project .project-headline {
    font-family: 'Georgia', 'Times', serif;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: 3px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.a24-project .project-byline,
.a24-project .project-dateline {
    font-family: 'Georgia', 'Times', serif;
    text-transform: none;
    letter-spacing: 1px;
    font-style: italic;
}

.a24-project .project-body {
    font-family: 'Georgia', 'Times', serif;
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.2px;
    text-align: justify;
}

/* Bug Music Button */
.bug-music-btn {
    position: fixed;
    top: 60vh;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: rgb(216, 35, 35);
    font-family: "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 35px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    display: none;
    border-radius: 5px;
}

.bug-music-btn.visible {
    opacity: 1;
    pointer-events: all;
    display: block;
}

.bug-music-btn:hover {
    background: rgba(150, 50, 200, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.bug-music-btn::before {
    content: "Congrats you found it! Here click this";
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 3px;
    white-space: nowrap;
    font-family: "Times New Roman", serif;
    letter-spacing: 1px;
}

/* Volume Control */
.volume-control {
    position: fixed;
    top: calc(60vh + 60px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-radius: 5px;
}

.volume-control.visible {
    display: flex;
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    cursor: pointer;
    border-radius: 50%;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: white;
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

.volume-label {
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Drum Machine */
.drum-machine {
    margin: 20px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.drum-pads {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

/* Project Styling */
.project {
    margin-bottom: 60px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.project:last-child {
    border-bottom: none;
}

.project-headline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: white;
    background-color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.2;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 3px;
}

.project-byline {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: white;
    background-color: black;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 3px;
}

.project-dateline {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: white;
    background-color: black;
    font-style: normal;
    margin-bottom: 20px;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 3px;
}

.project-body {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: white;
    background-color: rgba(0, 0, 0, 0.95);
    text-align: left;
    columns: 2;
    column-gap: 25px;
    column-rule: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    transition: all 0.5s ease;
    margin-bottom: 15px;
}

.project-body.inverted {
    color: black;
    background-color: rgba(255, 255, 255, 0.95);
    column-rule: 1px solid rgba(0, 0, 0, 0.3);
}

.project-body.inverted a {
    color: #cc4400;
}

.project-body.inverted a:hover {
    color: #000000;
}

.project-body a {
    color: #66ccff;
    text-decoration: underline;
}

.project-body a:hover {
    color: #ffffff;
}

.project-body.dyslexia-mode strong {
    font-weight: 900;
    text-shadow: 0.5px 0 0 currentColor;
}

.project-with-poster {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.poster-image {
    flex-shrink: 0;
}

.poster-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.poster-content {
    flex: 1;
}

.video-embed {
    width: 100%;
    margin: 25px 0;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: black;
}

/* Text Elements Transitions */
.portfolio-title,
.portfolio-subtitle,
.project-headline,
.project-byline,
.project-dateline {
    transition: all 0.5s ease;
}

.portfolio-title.inverted,
.portfolio-subtitle.inverted,
.project-headline.inverted,
.project-byline.inverted,
.project-dateline.inverted {
    color: black;
    background-color: white;
}

.drum-pad {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    user-select: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 8px;
}

/* Individual drum pad images */
.drum-pad[data-sound="kick"] {
    background-image: url('MEDIA/BM_1.png');
}

.drum-pad[data-sound="snare"] {
    background-image: url('MEDIA/BM_2.png');
}

.drum-pad[data-sound="hihat"] {
    background-image: url('MEDIA/BM_3.png');
}

.drum-pad[data-sound="synth"] {
    background-image: url('MEDIA/BM_4.png');
}

.drum-pad[data-sound="bass"] {
    background-image: url('MEDIA/BM_5.jpg');
}

.drum-pad[data-sound="nitro"] {
    background-image: url('MEDIA/NITRO NED COVER.png');
}

/* Modern Play/Pause buttons on drum pads */
.drum-pad-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all 0.2s ease;
    z-index: 10;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.drum-pad-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid black;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
    transition: all 0.2s ease;
}

.drum-pad-button.playing::before {
    border: none;
    width: 8px;
    height: 10px;
    background: linear-gradient(90deg, black 0%, black 35%, transparent 35%, transparent 65%, black 65%, black 100%);
    margin-left: 0;
}

.drum-pad:hover .drum-pad-button {
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.drum-pad:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.drum-pad:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.3);
}

.enter-button {
    background: black;
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 2rem;
    font-weight: bold;
    padding: 20px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.enter-button:hover {
    background: #333;
}

/* Linktree Style Links */
.social-links {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-links-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    background: white;
    color: black;
    font-family: "Times New Roman", serif;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 30px;
    border: 2px solid white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Special square buttons */
.square-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.theme-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(24px) saturate(2.0);
    -webkit-backdrop-filter: blur(24px) saturate(2.0);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.16),
        0 4px 12px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bug-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
    border: 2px solid #ff6b35;
    color: white;
}

.bug-btn:hover {
    background: linear-gradient(45deg, #ff8e53, #ffb07a);
    border-color: #ff8e53;
    color: white;
}

/* Get In Button Special Styling */
.get-in-btn {
    background: black !important;
    color: white !important;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.get-in-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transition: left 0.5s ease;
}

.get-in-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #00ffff, transparent);
    transition: top 0.5s ease;
}

.get-in-btn:hover::before {
    left: 100%;
}

.get-in-btn:hover::after {
    top: 100%;
}

.get-in-btn:hover {
    background: black !important;
    color: #00ffff !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Portfolio Navigation Button */
.portfolio-btn {
    background: rgba(128, 128, 128, 0.15) !important;
    color: white !important;
    border: 1px solid rgba(128, 128, 128, 0.3) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    box-shadow: 
        0 8px 32px rgba(128, 128, 128, 0.2),
        0 2px 8px rgba(128, 128, 128, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(128, 128, 128, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.portfolio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(128, 128, 128, 0.1) 0%,
        rgba(96, 96, 96, 0.05) 50%,
        rgba(128, 128, 128, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.portfolio-btn:hover::before {
    left: 100%;
}

.portfolio-btn:hover::after {
    opacity: 1;
}

.portfolio-btn:hover {
    background: rgba(128, 128, 128, 0.2) !important;
    color: white !important;
    border-color: rgba(128, 128, 128, 0.4) !important;
    backdrop-filter: blur(24px) saturate(2.0) !important;
    -webkit-backdrop-filter: blur(24px) saturate(2.0) !important;
    box-shadow: 
        0 12px 40px rgba(128, 128, 128, 0.3),
        0 4px 12px rgba(128, 128, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(128, 128, 128, 0.15) !important;
    transform: translateY(-2px) scale(1.02);
}

/* Bug Music Navigation Button */
.bug-music-btn-nav {
    background: rgba(128, 128, 128, 0.15) !important;
    color: white !important;
    border: 1px solid rgba(128, 128, 128, 0.3) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    box-shadow: 
        0 8px 32px rgba(128, 128, 128, 0.2),
        0 2px 8px rgba(128, 128, 128, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(128, 128, 128, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.bug-music-btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bug-music-btn-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(128, 128, 128, 0.1) 0%,
        rgba(96, 96, 96, 0.05) 50%,
        rgba(128, 128, 128, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.bug-music-btn-nav:hover::before {
    left: 100%;
}

.bug-music-btn-nav:hover::after {
    opacity: 1;
}

.bug-music-btn-nav:hover {
    background: rgba(128, 128, 128, 0.2) !important;
    color: white !important;
    border-color: rgba(128, 128, 128, 0.4) !important;
    backdrop-filter: blur(24px) saturate(2.0) !important;
    -webkit-backdrop-filter: blur(24px) saturate(2.0) !important;
    box-shadow: 
        0 12px 40px rgba(128, 128, 128, 0.3),
        0 4px 12px rgba(128, 128, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(128, 128, 128, 0.15) !important;
    transform: translateY(-2px) scale(1.02);
}

.bookings-reveal {
    background: #f0f0f0;
    color: #333;
    cursor: pointer;
}

.bookings-reveal:hover {
    background: #e0e0e0;
    color: #333;
    transform: translateY(-2px);
}

/* Header Bar for Both Desktop and Mobile */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 15px;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.mobile-header.visible {
    opacity: 1;
    pointer-events: all;
}

/* Header Buttons */
.mobile-header > div {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: 3px;
}

.mobile-header > div:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.mobile-header .dyslexia-btn.active {
    background: rgba(0, 100, 200, 0.8);
}

.mobile-header .invert-btn.active {
    background: rgba(255, 255, 255, 0.8);
    color: black;
}

.mobile-header .watch-video-btn.video-focus {
    background: rgba(255, 255, 255, 0.9);
    color: black;
}

/* Bug Music Button */
.bug-music-btn {
    position: fixed;
    top: 60vh;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: rgb(216, 35, 35);
    font-family: "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 35px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    display: none;
}

.bug-music-btn.visible {
    opacity: 1;
    pointer-events: all;
    display: block;
}

.bug-music-btn:hover {
    background: rgba(150, 50, 200, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* EASTER EGG TEXT */
.bug-music-btn::before {
    content: "Congrats you found it! Here click this";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 3px;
    white-space: nowrap;
    font-family: "Times New Roman", serif;
    letter-spacing: 1px;
}

/* Volume Control */
.volume-control {
    position: fixed;
    top: calc(60vh + 60px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.volume-control.visible {
    display: flex;
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    border: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    cursor: pointer;
    border-radius: 50%;
}

.volume-label {
    color: white;
    font-family: "Times New Roman", serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 1s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile video adjustments */
@media (max-width: 768px) {
    .video-background video {
        object-fit: cover;
        object-position: center;
    }
}

/* Projects Section */
.projects {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 20px 40px 20px;
    opacity: 0;
    transition: opacity 1s ease;
}

.projects.visible {
    opacity: 1;
}

.projects.video-focus {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 1s ease;
}

.newspaper-header {
    text-align: center;
    border-bottom: 3px double white;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.newspaper-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    background-color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    margin-top: 100px;
    padding: 15px 30px;
    display: inline-block;
}

.newspaper-subtitle {
    font-size: 1.2rem;
    color: white;
    background-color: black;
    font-style: italic;
    padding: 8px 20px;
    display: inline-block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Ensure no mobile browser spacing */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        height: 100%;
        overflow-x: hidden;
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        height: 100vh;
        padding: 20px;
        margin: 0;
        top: 0;
        position: relative;
    }
    
    .video-banner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    
    .video-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        margin: 0;
        padding: 0;
    }
    
    .hero-content {
        padding: 15px;
        margin-top: -10vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    
    .artist-name {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    
    .agent-info {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin-bottom: 30px;
    }
    
    /* Hide volume slider on mobile */
    .loading-volume-control {
        display: none;
    }
    
    /* Drum Machine Mobile */
    .drum-machine {
        margin: 15px 0 30px 0;
    }
    
    .drum-pads {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .drum-pad {
        width: 60px;
        height: 60px;
    }
    
    .drum-pad-button {
        width: 24px;
        height: 24px;
    }
    
    /* Social Links Mobile */
    .social-links {
        margin-top: 30px;
        gap: 12px;
    }
    
    .social-link {
        font-size: 1rem;
        padding: 10px 20px;
        min-width: 180px;
        backdrop-filter: blur(16px) saturate(1.6);
        -webkit-backdrop-filter: blur(16px) saturate(1.6);
        border-radius: 14px;
    }
    
    /* Navigation Buttons Mobile */
    .portfolio-btn,
    .bug-music-btn-nav {
        font-size: 1rem !important;
        padding: 12px 24px !important;
        min-width: 200px !important;
        font-weight: bold !important;
        backdrop-filter: blur(16px) saturate(1.6) !important;
        -webkit-backdrop-filter: blur(16px) saturate(1.6) !important;
        /* Enhanced mobile touch */
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1) !important;
        min-height: 50px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Navigation Mobile */
    .nav-content {
        gap: 15px;
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        font-size: 0.8rem;
        padding: 12px 18px;
        min-height: 48px;
        min-width: 120px;
        /* Enhanced mobile touch */
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        /* Larger touch target for better accessibility */
        border-radius: 30px;
    }
    
    /* Portfolio Mobile */
    .portfolio-section {
        padding: 60px 15px 30px 15px;
    }
    
    .portfolio-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .portfolio-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        padding: 10px 20px;
        margin-bottom: 10px;
    }
    
    .portfolio-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        padding: 6px 15px;
    }
    
    /* Project Mobile */
    .project {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .project-headline {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        padding: 8px 15px;
        margin-bottom: 10px;
    }
    
    .project-byline {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        padding: 6px 12px;
        margin-bottom: 8px;
    }
    
    .project-dateline {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        padding: 4px 10px;
        margin-bottom: 15px;
    }
    
    .project-body {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.6;
        columns: 1;
        column-rule: none;
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .project-with-poster {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .poster-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .video-embed {
        margin: 20px 0;
    }
    
    /* Bug Music Button Mobile */
    .bug-music-btn {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .volume-control {
        top: calc(50% + 80px);
        padding: 6px 12px;
    }
    
    /* Drum Machine Section Mobile */
    .drum-machine-section {
        padding: 40px 15px;
    }
    
    .drum-machine-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 10px;
    }
    
    .drum-machine-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 30px;
    }
    
    .drum-machine-section .drum-machine {
        margin: 30px 0;
        gap: 20px;
    }
    
    .drum-machine-section .drum-pads {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .drum-machine-section .drum-pad {
        width: 70px;
        height: 70px;
    }
    
    .drum-machine-section .drum-pad-button {
        width: 28px;
        height: 28px;
    }
    
    .drum-volume-control {
        gap: 10px;
        margin-top: 15px;
    }
    
    .drum-volume-slider {
        width: 200px;
        height: 6px;
    }
    
    .drum-volume-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .drum-volume-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
    
    .drum-volume-control .spider-thumb {
        font-size: 18px;
    }
    
    .drum-volume-control .volume-icon {
        font-size: 14px;
    }
    
    /* Navigation Mobile */
    .nav-content {
        padding: 0 15px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .nav-search-container {
        max-width: 300px;
        min-width: 200px;
        order: 3;
        flex-basis: 100%;
    }
    
    #navSearchInput {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .search-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    /* Social Links Extra Small */
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
        min-width: 160px !important;
        backdrop-filter: blur(14px) saturate(1.4) !important;
        -webkit-backdrop-filter: blur(14px) saturate(1.4) !important;
        border-radius: 12px !important;
    }
    
    /* Navigation Buttons Extra Small */
    .portfolio-btn,
    .bug-music-btn-nav {
        font-size: 0.9rem !important;
        padding: 10px 20px !important;
        min-width: 180px !important;
        backdrop-filter: blur(14px) saturate(1.4) !important;
        -webkit-backdrop-filter: blur(14px) saturate(1.4) !important;
    }
    
    /* Drum Machine Extra Small */
    .drum-machine-section .drum-pads {
        gap: 12px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .drum-machine-section .drum-pad {
        width: 60px;
        height: 60px;
    }
    
    .drum-machine-section .drum-pad-button {
        width: 24px;
        height: 24px;
    }
    
    .drum-volume-slider {
        width: 180px !important;
    }
    
    .drum-volume-control .spider-thumb {
        font-size: 16px !important;
    }
}

/* Portfolio section styling */
.portfolio-section {
    background: #000;
    color: #fff;
    padding: 60px 0;
    min-height: 100vh;
    width: 100%;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 2px;
}

.portfolio-tab {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-tab:first-child {
    border-radius: 5px 0 0 5px;
}

.portfolio-tab:last-child {
    border-radius: 0 5px 5px 0;
}

.portfolio-tab.active {
    background: #fff;
    color: #000;
}

.portfolio-tab:hover:not(.active) {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

.portfolio-columns {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    display: flex;
    gap: 40px;
}

.film-column,
.music-column {
    transition: all 0.4s ease;
    flex: 1;
}

.film-column h2,
.music-column h2 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Mobile responsiveness for portfolio */
@media (max-width: 768px) {
    .portfolio-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .portfolio-tab {
        padding: 12px 18px;
        font-size: 12px;
    }
}

/* Search Overlay Styling */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1004;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container {
    background: #000;
    border: 2px solid #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.search-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

.close-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-search:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.search-input-container {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#projectSearchInput {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

#projectSearchInput::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #000;
}

.project-index {
    padding: 20px 30px;
}

.index-section {
    margin-bottom: 30px;
}

.index-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 1px;
}

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin: 5px 0;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.project-item:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: #fff;
    transform: translateX(5px);
}

.project-name {
    color: #fff;
    font-weight: 500;
}

.project-year {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.project-item.hidden {
    display: none;
}

/* Saber Preparation Section */
.saber-prep-section {
    background: black;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.saber-prep-content {
    max-width: 600px;
    margin: 0 auto;
}

.saber-prep-header {
    color: white;
    font-size: 1.5rem;
    font-family: "Times New Roman", serif;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Bug Saber Button Styling */
.bug-saber-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.3));
    transition: all 0.3s ease;
}

/* Lightsaber Activation Button */
.saber-activation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.saber-activator {
    background: none;
    border: none;
    cursor: pointer;
    width: 300px;
    height: 800px;
    min-width: 300px;
    padding: 20px;
    transition: transform 0.2s ease, filter 0.2s ease;
    position: relative;
}

.saber-activator:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 255, 65, 0.5));
}

.saber-activator:active {
    transform: scale(0.95);
}

/* Saber Images */
.saber-activator img {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    margin: auto;
}

#saberActiveImg {
    transform-origin: center bottom;
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Bug Saber Feature Section - Redesigned Layout */
.bug-saber-feature {
    background: black;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('MEDIA/SPIDER_ART.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    position: relative;
}

.feature-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('MEDIA/SPIDER_ART.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.feature-container > * {
    position: relative;
    z-index: 2;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Centered Bug Message */
.bug-message {
    text-align: center;
    margin: 30px 0 40px 0;
    padding: 0 20px;
}

.bug-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Feature Layout */
.feature-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Main Saber Demo Section */
.saber-demo-main {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(0,255,65,0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.saber-demo-main:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,255,65,0.5);
    box-shadow: 0 0 20px rgba(0,255,65,0.2);
}

.demo-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.saber-demo-main .saber-activation {
    margin: 20px 0;
}

.saber-demo-main .saber-activator {
    width: 120px;
    height: 300px;
    min-width: 120px;
}

.demo-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    margin-top: 15px;
}

/* Supporting Info Sidebar */
.supporting-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-module {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-module:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,255,65,0.3);
}

.module-header {
    font-size: 0.8rem;
    font-weight: bold;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
}

.module-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-link {
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 255, 65, 0.3);
}

.app-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 255, 65, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .saber-demo-main .saber-activator {
        width: 80px;
        height: 200px;
        min-width: 80px;
    }
    
    .app-links {
        flex-direction: row;
        gap: 10px;
    }
    
    .app-link {
        flex: 1;
    }
    
    .bug-message p {
        font-size: 1rem;
    }
}