:root {
    --primary: #00cc66;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #f4f4f4;
    --gray: #1a1a1a;
    --accent: #39ff14;
    --city-glow: rgba(0, 204, 102, 0.1);
    --neon-shadow: 0 0 30px rgba(0, 204, 102, 0.3);
}

.space-needle {
    overflow: visible !important;
}

.location-badge {
    display: inline-block;
    color: #00cc66;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.0rem;
    position: relative;
    padding: 0 15px;
    text-shadow:
        0 0 5px rgba(0, 204, 102, 0.5),
        0 0 10px rgba(0, 204, 102, 0.4),
        0 0 15px rgba(0, 204, 102, 0.3),
        0 0 20px rgba(0, 204, 102, 0.2),
        0 0 25px rgba(0, 204, 102, 0.1);
    filter: drop-shadow(0 0 10px rgba(0, 204, 102, 0.3));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* City Lights Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, var(--city-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--city-glow) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, var(--city-glow) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.5;
}

a {
    text-decoration: none;
    color: var(--light);
}

/* Header with Glass Morphism */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 204, 102, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
}

.logo {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--light);
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: var(--neon-shadow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, #00e673 100%);
    color: var(--dark);
    padding: 0.7rem 2rem;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.3);
}

/* Hero Section - City Skyline Feel */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%),
        url('/api/placeholder/1800/1200') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* City Grid Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 204, 102, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 102, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 5;
    margin-top: 150px;
    width: 100%;
}

.youtube-preview {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    z-index: 5;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background-color: #000;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.video-placeholder:hover {
    filter: brightness(1.2);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.video-placeholder:hover .play-icon {
    background-color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--primary);
    margin-left: 5px;
    transition: all 0.3s;
}

.video-placeholder:hover .play-icon::after {
    border-left-color: var(--dark);
}

.video-placeholder p {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 200;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
    font-weight: 700;
    text-shadow: var(--neon-shadow);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(244, 244, 244, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.secondary-button {
    background-color: transparent;
    color: var(--light);
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(0, 204, 102, 0.5);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s;
    z-index: -1;
}

.secondary-button:hover::before {
    width: 100%;
}

.secondary-button:hover {
    color: var(--dark);
    border-color: var(--primary);
}

/* Center wrapper like the YouTube CTA */
.beatstars-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Re-use the secondary button look */
.beatstars-cta .secondary-button {
    background-color: transparent;
    color: var(--light);
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(0, 204, 102, 0.5);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

/* Hover fill-in animation (matches YouTube CTA) */
.beatstars-cta .secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s;
    z-index: -1;
}

.beatstars-cta .secondary-button:hover::before {
    width: 100%;
}

.beatstars-cta .secondary-button:hover {
    color: var(--dark) !important;
    border-color: var(--primary) !important;
}

/* Alternative fix if the above doesn't work - wrap the text in a span */
.beatstars-cta .secondary-button span {
    position: relative;
    z-index: 2;
}

.featured-work .secondary-button {
    z-index: 1;
}

.featured-work .secondary-button::before {
    z-index: 0;
}

/* Fix z-index specifically for secondary buttons outside hero section */
.youtube-showcase .secondary-button {
    z-index: 1;
}

.youtube-showcase .secondary-button::before {
    z-index: 0;
}

.visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1px;
    padding: 0 2%;
    overflow: hidden;
}

.visualizer::before {
    animation: needleLights 4s ease-in-out infinite;
}

/* Neon Glow Text Effect - matching existing site style */
.neon-text {
    color: var(--primary);
    font-weight: 700;
    text-shadow: var(--neon-shadow);
}

/* Contact link with neon glow */
.contact-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    text-shadow: var(--neon-shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
    text-decoration: underline;
}

/* Seattle skyline buildings */
.visualizer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Foreground buildings - darker and more prominent */
        linear-gradient(to top, rgba(40, 40, 40, 0.9) 0%, rgba(40, 40, 40, 0.9) 140px, transparent 140px),
        linear-gradient(to top, rgba(35, 35, 35, 0.8) 0%, rgba(35, 35, 35, 0.8) 90px, transparent 90px),
        linear-gradient(to top, rgba(45, 45, 45, 0.9) 0%, rgba(45, 45, 45, 0.9) 110px, transparent 110px),
        linear-gradient(to top, rgba(38, 38, 38, 0.8) 0%, rgba(38, 38, 38, 0.8) 75px, transparent 75px),
        linear-gradient(to top, rgba(42, 42, 42, 0.9) 0%, rgba(42, 42, 42, 0.9) 120px, transparent 120px),
        /* Background buildings - lighter */
        linear-gradient(to top, rgba(30, 30, 30, 0.6) 0%, rgba(30, 30, 30, 0.6) 60px, transparent 60px),
        linear-gradient(to top, rgba(28, 28, 28, 0.5) 0%, rgba(28, 28, 28, 0.5) 85px, transparent 85px),
        linear-gradient(to top, rgba(32, 32, 32, 0.6) 0%, rgba(32, 32, 32, 0.6) 95px, transparent 95px),
        linear-gradient(to top, rgba(30, 30, 30, 0.5) 0%, rgba(30, 30, 30, 0.5) 70px, transparent 70px);
    background-size:
        60px 100%, 45px 100%, 55px 100%, 40px 100%, 50px 100%,
        38px 100%, 42px 100%, 48px 100%, 36px 100%;
    background-position:
        20% bottom, 30% bottom, 45% bottom, 60% bottom, 75% bottom,
        10% bottom, 38% bottom, 68% bottom, 85% bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.bar {
    flex: 1;
    max-width: 8px;
    min-width: 4px;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 50%, var(--accent) 100%);
    border-radius: 0;
    animation: pulse 3s infinite alternate;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.bar.thin {
    max-width: 0.5px;
    opacity: 0.5;
    --bar-height: 30px;
}

@keyframes pulse {
    0% {
        height: 5px;
        opacity: 0.3;
    }

    25% {
        height: calc(20px + var(--bar-height));
        opacity: 0.6;
    }

    50% {
        height: calc(40px + var(--bar-height));
        opacity: 0.8;
    }

    75% {
        height: calc(25px + var(--bar-height));
        opacity: 0.7;
    }

    100% {
        height: 10px;
        opacity: 0.4;
    }
}

/* Create unique animation for each bar with CSS variables */
.bar:nth-child(1) {
    --bar-height: 60px;
    animation: pulse 1.8s infinite ease-in-out;
    animation-delay: 0.05s;
}

.bar:nth-child(2) {
    --bar-height: 40px;
    animation: pulse 2.1s infinite ease-in-out;
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    --bar-height: 70px;
    animation: pulse 1.5s infinite ease-in-out;
    animation-delay: 0.15s;
}

.bar:nth-child(4) {
    --bar-height: 30px;
    animation: pulse 2.4s infinite ease-in-out;
    animation-delay: 0.2s;
}

.bar:nth-child(5) {
    --bar-height: 80px;
    animation: pulse 1.3s infinite ease-in-out;
    animation-delay: 0.25s;
}

.bar:nth-child(6) {
    --bar-height: 45px;
    animation: pulse 1.9s infinite ease-in-out;
    animation-delay: 0.3s;
}

.bar:nth-child(7) {
    --bar-height: 65px;
    animation: pulse 1.6s infinite ease-in-out;
    animation-delay: 0.35s;
}

.bar:nth-child(8) {
    --bar-height: 55px;
    animation: pulse 2.2s infinite ease-in-out;
    animation-delay: 0.4s;
}

.bar:nth-child(9) {
    --bar-height: 75px;
    animation: pulse 1.4s infinite ease-in-out;
    animation-delay: 0.45s;
}

.bar:nth-child(10) {
    --bar-height: 35px;
    animation: pulse 2.0s infinite ease-in-out;
    animation-delay: 0.5s;
}

.bar:nth-child(11) {
    --bar-height: 50px;
    animation: pulse 1.7s infinite ease-in-out;
    animation-delay: 0.55s;
}

.bar:nth-child(12) {
    --bar-height: 60px;
    animation: pulse 2.3s infinite ease-in-out;
    animation-delay: 0.6s;
}

.bar:nth-child(13) {
    --bar-height: 40px;
    animation: pulse 1.5s infinite ease-in-out;
    animation-delay: 0.65s;
}

.bar:nth-child(14) {
    --bar-height: 70px;
    animation: pulse 1.8s infinite ease-in-out;
    animation-delay: 0.7s;
}

.bar:nth-child(15) {
    --bar-height: 45px;
    animation: pulse 2.1s infinite ease-in-out;
    animation-delay: 0.75s;
}

.bar:nth-child(16) {
    --bar-height: 55px;
    animation: pulse 1.6s infinite ease-in-out;
    animation-delay: 0.8s;
}

.bar:nth-child(17) {
    --bar-height: 65px;
    animation: pulse 1.9s infinite ease-in-out;
    animation-delay: 0.85s;
}

.bar:nth-child(18) {
    --bar-height: 30px;
    animation: pulse 2.2s infinite ease-in-out;
    animation-delay: 0.9s;
}

.bar:nth-child(19) {
    --bar-height: 75px;
    animation: pulse 1.4s infinite ease-in-out;
    animation-delay: 0.95s;
}

.bar:nth-child(20) {
    --bar-height: 50px;
    animation: pulse 1.7s infinite ease-in-out;
    animation-delay: 1.0s;
}

.bar:nth-child(21) {
    --bar-height: 60px;
    animation: pulse 2.0s infinite ease-in-out;
    animation-delay: 1.05s;
}

.bar:nth-child(22) {
    --bar-height: 40px;
    animation: pulse 1.5s infinite ease-in-out;
    animation-delay: 1.1s;
}

.bar:nth-child(23) {
    --bar-height: 70px;
    animation: pulse 2.3s infinite ease-in-out;
    animation-delay: 1.15s;
}

.bar:nth-child(24) {
    --bar-height: 35px;
    animation: pulse 1.8s infinite ease-in-out;
    animation-delay: 1.2s;
}

.bar:nth-child(25) {
    --bar-height: 80px;
    animation: pulse 1.3s infinite ease-in-out;
    animation-delay: 1.25s;
}

.bar:nth-child(26) {
    --bar-height: 45px;
    animation: pulse 2.1s infinite ease-in-out;
    animation-delay: 1.3s;
}

.bar:nth-child(27) {
    --bar-height: 65px;
    animation: pulse 1.6s infinite ease-in-out;
    animation-delay: 1.35s;
}

.bar:nth-child(28) {
    --bar-height: 55px;
    animation: pulse 1.9s infinite ease-in-out;
    animation-delay: 1.4s;
}

.bar:nth-child(29) {
    --bar-height: 75px;
    animation: pulse 2.2s infinite ease-in-out;
    animation-delay: 1.45s;
}

.bar:nth-child(30) {
    --bar-height: 30px;
    animation: pulse 1.4s infinite ease-in-out;
    animation-delay: 1.5s;
}

.bar:nth-child(31) {
    --bar-height: 50px;
    animation: pulse 1.7s infinite ease-in-out;
    animation-delay: 1.55s;
}

.bar:nth-child(32) {
    --bar-height: 60px;
    animation: pulse 2.0s infinite ease-in-out;
    animation-delay: 1.6s;
}

.bar:nth-child(33) {
    --bar-height: 40px;
    animation: pulse 2.3s infinite ease-in-out;
    animation-delay: 1.65s;
}

.bar:nth-child(34) {
    --bar-height: 70px;
    animation: pulse 1.5s infinite ease-in-out;
    animation-delay: 1.7s;
}

.bar:nth-child(35) {
    --bar-height: 45px;
    animation: pulse 1.8s infinite ease-in-out;
    animation-delay: 1.75s;
}

.bar:nth-child(36) {
    --bar-height: 55px;
    animation: pulse 2.1s infinite ease-in-out;
    animation-delay: 1.8s;
}

.bar:nth-child(37) {
    --bar-height: 65px;
    animation: pulse 1.6s infinite ease-in-out;
    animation-delay: 1.85s;
}

.bar:nth-child(38) {
    --bar-height: 35px;
    animation: pulse 1.9s infinite ease-in-out;
    animation-delay: 1.9s;
}

.bar:nth-child(39) {
    --bar-height: 75px;
    animation: pulse 2.2s infinite ease-in-out;
    animation-delay: 1.95s;
}

.bar:nth-child(40) {
    --bar-height: 50px;
    animation: pulse 1.4s infinite ease-in-out;
    animation-delay: 2.0s;
}

.bar:nth-child(41) {
    --bar-height: 60px;
    animation: pulse 1.7s infinite ease-in-out;
    animation-delay: 0.3s;
}

.bar:nth-child(42) {
    --bar-height: 40px;
    animation: pulse 2.0s infinite ease-in-out;
    animation-delay: 0.6s;
}

.bar:nth-child(43) {
    --bar-height: 70px;
    animation: pulse 2.3s infinite ease-in-out;
    animation-delay: 0.9s;
}

.bar:nth-child(44) {
    --bar-height: 30px;
    animation: pulse 1.5s infinite ease-in-out;
    animation-delay: 1.2s;
}

.bar:nth-child(45) {
    --bar-height: 80px;
    animation: pulse 1.8s infinite ease-in-out;
    animation-delay: 1.5s;
}

.bar:nth-child(46) {
    --bar-height: 45px;
    animation: pulse 2.1s infinite ease-in-out;
    animation-delay: 1.8s;
}

.bar:nth-child(47) {
    --bar-height: 65px;
    animation: pulse 1.3s infinite ease-in-out;
    animation-delay: 0.2s;
}

.bar:nth-child(48) {
    --bar-height: 55px;
    animation: pulse 1.6s infinite ease-in-out;
    animation-delay: 0.5s;
}

.bar:nth-child(49) {
    --bar-height: 75px;
    animation: pulse 1.9s infinite ease-in-out;
    animation-delay: 0.8s;
}

.bar:nth-child(50) {
    --bar-height: 35px;
    animation: pulse 2.2s infinite ease-in-out;
    animation-delay: 1.1s;
}

/* YouTube Showcase Section */
.youtube-showcase {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.featured-video {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Video Container Styling with Elegant Green Glow */
.featured-video iframe,
.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--dark);
    position: relative;
    outline: none;
    transition: all 0.3s ease;
}

.featured-video:hover iframe {
    border-color: rgba(0, 204, 102, 0.5);
    box-shadow:
        0 0 0 2px rgba(0, 204, 102, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 204, 102, 0.1);
}

/* Small Video Items Styling */
.video-item {
    transition: all 0.3s;
    position: relative;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item:hover iframe,
.featured-video:hover iframe {
    outline: 2px solid rgba(0, 204, 102, 0.4);
    outline-offset: -2px;

    /* add a neon glow via filter */
    filter:
        drop-shadow(0 0 10px rgba(0, 204, 102, 0.1)) drop-shadow(0 0 15px rgba(0, 204, 102, 0.1));
}

.video-info {
    padding: 1.2rem 0;
}

.video-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.video-info p {
    color: rgba(244, 244, 244, 0.7);
    font-weight: 300;
}

.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* YouTube CTA Button*/
.youtube-cta {
    text-align: center;
    margin-top: 3rem;
}

.youtube-cta .secondary-button {
    background-color: transparent;
    color: var(--light);
    padding: 0.7rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(0, 204, 102, 0.5);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.youtube-cta .secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: width 0.3s;
    z-index: -1;
}

.youtube-cta .secondary-button:hover::before {
    width: 100%;
}

.youtube-cta .secondary-button:hover {
    color: var(--dark);
    border-color: var(--primary);
}

/* Featured Work - BeatStars Integration */
.featured-work {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
}

/* BeatStars CTA Banner */
.beatstars-banner {
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.1) 0%, rgba(0, 204, 102, 0.05) 100%);
    border: 1px solid rgba(0, 204, 102, 0.2);
    padding: 3rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beatstars-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 102, 0.1), transparent);
    animation: shimmer 3s infinite;
}

/* 1) Base styles for the card */
.beat-card {
    position: relative;
    padding: 1.5rem;
    background: #111;
    /* dark panel */
    border-radius: 6px;
    /* soften corners */
    overflow: hidden;
    /* hide anything outside */
    transition: color 0.3s;
    /* text color on hover */
    color: #fff;
    /* white text */
    text-decoration: none;
    /* no underline */
}

/* 2) Draw a transparent border-image that can “light up” */
.beat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image:
        linear-gradient(45deg,
            rgba(0, 204, 102, 0) 0%,
            rgba(0, 204, 102, 0.8) 50%,
            rgba(0, 204, 102, 0) 100%) 1;
    transition: border-image 0.3s ease;
    pointer-events: none;
    /* so clicks still hit the link */
}

/* 3) On hover, “charge up” the neon edge glow */
.beat-card:hover::before {
    border-image:
        linear-gradient(45deg,
            rgba(0, 204, 102, 0.2) 0%,
            rgba(0, 204, 102, 1) 50%,
            rgba(0, 204, 102, 0.2) 100%) 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.beatstars-banner h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.beatstars-banner p {
    color: rgba(244, 244, 244, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.beatstars-icon {
    font-size: 1.3rem;
}

/* Album Gallery Section - Now inside Hero */
.hero .album-gallery {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
    width: 100%;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray);
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
    background: var(--gray);
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.album-item {
    flex: 0 0 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 204, 102, 0.1);
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    padding: 1rem 0.5rem 0.5rem;
    transform: translateY(100%);
    transition: all 0.3s;
}

.album-item:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 204, 102, 0.2);
    border-color: var(--primary);
}

.album-item:hover img {
    filter: brightness(0.8);
}

.album-item:hover .album-overlay {
    transform: translateY(0);
}

.album-overlay h4 {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    color: var(--light);
}

.album-overlay p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.album-gallery:hover .gallery-label {
    opacity: 1;
}

.apple-music-icon {
    font-size: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.album-gallery:hover .apple-music-icon {
    filter: grayscale(0%);
}

.gallery-text {
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(244, 244, 244, 0.5);
    transition: all 0.3s;
}

.album-gallery:hover .gallery-text {
    color: rgba(0, 204, 102, 0.8);
    text-shadow: 0 0 10px rgba(0, 204, 102, 0.3);
}

/* Beat Preview Cards with BeatStars Link */
.track-card {
    background: linear-gradient(135deg, var(--gray) 0%, rgba(26, 26, 26, 0.5) 100%);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--city-glow) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.track-card:hover::before {
    opacity: 1;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.track-image {
    height: 250px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%), var(--gray);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-image.hero-bg {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%),
        url('/api/placeholder/1800/1200') center/cover no-repeat;
}

.beatstars-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s;
    text-align: center;
}

.track-card:hover .beatstars-overlay {
    opacity: 1;
}

.beatstars-overlay span {
    display: block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.beatstars-overlay p {
    color: var(--light);
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.featured-work {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 200;
    letter-spacing: -1px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.section-subtitle {
    color: rgba(244, 244, 244, 0.6);
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2px;
    margin-top: 4rem;
}

.track-card {
    background: linear-gradient(135deg, var(--gray) 0%, rgba(26, 26, 26, 0.5) 100%);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--city-glow) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.track-card:hover::before {
    opacity: 1;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.track-image {
    height: 250px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%), url('/api/placeholder/600/400') center/cover;
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.track-card:hover .play-button {
    opacity: 1;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--primary);
    margin-left: 3px;
}

.track-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.track-artist {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-stats {
    display: flex;
    justify-content: space-between;
    color: rgba(244, 244, 244, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section - Glass Cards */
.services {
    padding: 6rem 5%;
    background: var(--dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, var(--city-glow) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, var(--city-glow) 0%, transparent 40%);
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.service-card {
    padding: 3rem 2.5rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 204, 102, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--city-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 204, 102, 0.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 2rem;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    filter: grayscale(0%);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-description {
    color: rgba(244, 244, 244, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

/* Clients Section - Elegant Cards */
.clients {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1px;
    margin-top: 4rem;
    background: rgba(0, 204, 102, 0.1);
    padding: 1px;
}

.client-card {
    background: var(--darker);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.client-card:hover {
    background: var(--gray);
}

.client-image {
    height: 350px;
    background: linear-gradient(180deg, transparent 60%, var(--darker) 100%), url('/api/placeholder/600/600') center/cover;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-card:hover .client-image {
    filter: grayscale(0%);
}

.client-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1.8rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.client-title {
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.client-quote {
    font-style: normal;
    color: rgba(244, 244, 244, 0.7);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.8;
    font-weight: 300;
}

.client-songs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.client-song {
    background: transparent;
    color: rgba(244, 244, 244, 0.6);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 204, 102, 0.2);
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.client-song:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Contact Section - Minimal Form */
.contact {
    padding: 6rem 5%;
    background: var(--dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 204, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--dark);
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p {
    color: rgba(244, 244, 244, 0.7);
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: rgba(244, 244, 244, 0.7);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 204, 102, 0.2);
    color: var(--light);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer - Minimal City */
footer {
    background-color: var(--darker);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(0, 204, 102, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    color: rgba(244, 244, 244, 0.6);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-about h3 span {
    color: var(--primary);
    font-weight: 700;
    text-shadow: var(--neon-shadow);
}

.footer-about p span {
    color: var(--primary);
    font-weight: 700;
    text-shadow: var(--neon-shadow);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: 1px solid rgba(0, 204, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(244, 244, 244, 0.6);
    font-weight: 300;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links h3 span {
    color: var(--primary);
    font-weight: 700;
    text-shadow: var(--neon-shadow);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 204, 102, 0.1);
    color: rgba(244, 244, 244, 0.4);
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .youtube-preview {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 90%;
        margin: 30px auto;
        max-width: 500px;
    }

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 5;
    margin-top: 150px;
    width: 100%;
}

    .tracks-grid,
    .services-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Fix the grid background centering on mobile */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background-image:
            linear-gradient(rgba(0, 204, 102, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 204, 102, 0.03) 1px, transparent 1px);
        background-size: 30px 30px;
        /* Smaller grid on mobile */
        background-position: center center;
        animation: gridMove 20s linear infinite;
        pointer-events: none;
    }

    /* Update the animation to keep it centered */
    @keyframes gridMove {
        0% {
            background-position: center center;
        }

        100% {
            background-position: calc(50% + 30px) calc(50% + 30px);
        }
    }
}

.space-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

@keyframes buildingLights {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

/* BeatStars Widget Styling */
.beatstars-widget-container {
    margin: 3rem auto;
    max-width: 1024px;
    position: relative;
    background: rgba(26, 26, 26, 0.3);
    padding: 2rem;
    border: 1px solid rgba(0, 204, 102, 0.1);
    border-radius: 5px;
    transition: all 0.3s;
}

.beatstars-widget-container:hover {
    border-color: rgba(0, 204, 102, 0.3);
    box-shadow: 0 0 30px rgba(0, 204, 102, 0.1);
}

.beatstars-widget-container iframe {
    display: block;
    margin: 0 auto;
}

/* ===== MOBILE-ONLY RULES ===== */

/* TABLET AND MOBILE STYLES - 768px and below */
@media (max-width: 768px) {

    /* Simplified Navigation - No hamburger menu */
    .nav-links {
        display: none;
        /* Hide desktop nav links */
    }

    /* Show mobile CTA button in navbar */
    .navbar .cta-button {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.5px;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-content {
        text-align: center;
        margin-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Hero buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        text-align: center;
    }

    /* HIDE VISUALIZER COMPLETELY ON MOBILE */
    .visualizer {
        display: none;
    }

    /* Album Gallery Mobile - Add spacing */
    .album-gallery {
        margin-top: 2rem;
        padding-top: 1rem;
    }

    .gallery-container {
        gap: 0.8rem;
    }

    .album-item {
        flex: 0 0 100px;
        height: 100px;
    }

    /* YouTube Section */
    .youtube-showcase {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* BeatStars Section */
    .beatstars-widget-container {
        padding: 1rem;
    }

    .beatstars-widget-container iframe {
        height: 600px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        /* Prevents iOS zoom */
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* SMALL PHONES - 480px and below */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    /* Smaller albums */
    .album-item {
        flex: 0 0 80px;
        height: 80px;
    }

    /* Smaller CTA button */
    .navbar .cta-button {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* LANDSCAPE MODE */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 60px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .album-gallery {
        margin-top: 1rem;
    }
}

/* TOUCH DEVICE IMPROVEMENTS */
@media (hover: none) and (pointer: coarse) {

    /* Make all interactive elements touch-friendly */
    .cta-button,
    .secondary-button,
    .nav-links a,
    button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover effects that don't work on touch */
    .album-item:hover,
    .service-card:hover,
    .track-card:hover {
        transform: none;
    }
}

/* Utility class to prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}