/* =============================================
   K VATTO - Loop Kits
   Clean Unique Design
   ============================================= */

:root {
    --bg-primary: #06080c;
    --bg-secondary: #0a0d12;
    --bg-card: #0f1318;
    --bg-glass: rgba(15, 19, 24, 0.8);

    --text-primary: #e8eaed;
    --text-secondary: #8b9099;
    --text-muted: #5a6069;

    /* Cool blue-tinted accent */
    --accent: #6ea8fe;
    --accent-light: #9ec5fe;
    --accent-dark: #4a8fe7;
    --accent-glow: rgba(110, 168, 254, 0.25);

    /* Subtle purple accent */
    --purple: #a78bfa;
    --purple-light: #c4b5fd;
    --purple-glow: rgba(167, 139, 250, 0.2);

    --border: rgba(138, 148, 163, 0.08);
    --border-accent: rgba(110, 168, 254, 0.2);

    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 50px var(--accent-glow);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;

    --font-main: 'Inter', -apple-system, sans-serif;
    --font-logo: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Page Entrance Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(110, 168, 254, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Scan line effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-normal);
    animation: slideDown 0.6s ease forwards;
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-logo);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--purple-light);
}

.logo:hover .nav-logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--purple-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    padding-top: 70px;
    min-height: 40vh;
}

.hero-banner {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.8s ease forwards;
}

.simple-banner {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #050810 0%, #080c14 30%, #0a1018 60%, #0c121c 100%);
    position: relative;
    overflow: hidden;
}

.simple-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 80%, rgba(167, 139, 250, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(110, 168, 254, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at center top, rgba(167, 139, 250, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Twinkling Stars */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
    opacity: 0.7;
}

.star:nth-child(1) { top: 15%; left: 10%; }
.star:nth-child(2) { top: 25%; left: 25%; }
.star:nth-child(3) { top: 10%; left: 40%; }
.star:nth-child(4) { top: 30%; left: 55%; }
.star:nth-child(5) { top: 20%; left: 70%; }
.star:nth-child(6) { top: 35%; left: 85%; }
.star:nth-child(7) { top: 8%; left: 60%; }
.star:nth-child(8) { top: 40%; left: 30%; }
.star:nth-child(9) { top: 12%; left: 90%; }
.star:nth-child(10) { top: 45%; left: 15%; }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

/* Shooting Star */
.shooting-star {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    border-radius: 2px;
    animation: shootingStar 8s ease-in-out infinite;
    opacity: 0;
}

@keyframes shootingStar {
    0% { left: -100px; top: 15%; opacity: 0; transform: rotate(-15deg); }
    5% { opacity: 1; }
    15% { left: 100%; opacity: 0; }
    100% { left: 100%; opacity: 0; }
}

/* Window Lights - Static */
.window-light {
    /* Static windows - no animation */
}

/* Moving Car Lights */
.car-lights {
    position: absolute;
    bottom: 35%;
    left: 0;
    width: 100%;
    height: 4px;
}

.car-light {
    position: absolute;
    width: 40px;
    height: 2px;
    border-radius: 2px;
    filter: blur(1px);
}

.car1 {
    background: linear-gradient(90deg, transparent 0%, rgba(255,200,100,0.9) 60%, rgba(255,150,50,0.7) 100%);
    animation: carMove1 18s linear infinite;
    box-shadow: 0 0 8px rgba(255,200,100,0.5);
}

.car2 {
    background: linear-gradient(270deg, transparent 0%, rgba(255,80,80,0.7) 60%, rgba(255,120,120,0.5) 100%);
    animation: carMove2 22s linear infinite;
    animation-delay: -8s;
    box-shadow: 0 0 8px rgba(255,80,80,0.4);
}

@keyframes carMove1 {
    0% { left: -60px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

@keyframes carMove2 {
    0% { right: -60px; left: auto; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { right: 110%; left: auto; opacity: 0; }
}

.city-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    filter: drop-shadow(0 -5px 20px rgba(167, 139, 250, 0.15));
}

.city-bg svg {
    width: 100%;
    height: 100%;
}

.simple-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    margin-top: -30px;
}

.profile-section {
    padding: 0 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-info-centered {
    text-align: center;
    padding: 10px 0 30px;
}

.brand-name {
    font-family: var(--font-logo);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
    background: linear-gradient(270deg,
        var(--text-primary),
        var(--purple-light),
        var(--accent-light),
        var(--purple-light),
        var(--text-primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 0.7s ease forwards, smoothGradient 10s ease-in-out infinite 0.7s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes smoothGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes brandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 19, 24, 0.8) 0%, rgba(20, 25, 32, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(110, 168, 254, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.social-link:hover {
    color: var(--text-primary);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 25px var(--purple-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* =============================================
   Kits Section
   ============================================= */
.kits-section {
    padding: 40px 0 100px;
}

.section-title {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--accent), var(--purple));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Kit Card - Glassmorphism */
.kit-card {
    background: linear-gradient(135deg, rgba(15, 19, 24, 0.9) 0%, rgba(20, 25, 32, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: scaleIn 0.7s ease forwards 0.8s;
}

.kit-card:nth-child(2) {
    animation-delay: 0.95s;
}

.kit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.kit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.03) 0%, transparent 50%, rgba(110, 168, 254, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.kit-card:hover::after {
    opacity: 1;
}

.kit-card:hover {
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow:
        var(--shadow-lg),
        0 0 60px rgba(167, 139, 250, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-6px) scale(1.01);
}

.kit-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.kit-artwork::after {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, transparent 85%, rgba(167, 139, 250, 0.1) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kit-card:hover .kit-artwork::after {
    opacity: 1;
}

.kit-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.kit-card:hover .kit-artwork img {
    transform: scale(1.02);
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 3px;
}

.kit-overlay {
    display: none;
}

.preview-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 230, 240, 0.9) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.preview-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    animation: glossyShine 2.5s ease-in-out infinite;
}

.preview-btn svg {
    width: 26px;
    height: 26px;
    margin-left: 4px;
    color: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.kit-card:hover .preview-btn {
    transform: scale(1);
}

.kit-card:hover .preview-btn::before {
    opacity: 1;
}

.preview-btn:hover {
    transform: scale(1.12) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px var(--purple-glow);
}

.kit-info {
    padding: 22px;
}

.kit-info h3 {
    font-family: var(--font-logo);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.kit-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.kit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.tag {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--border-accent);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag:nth-child(2) {
    border-color: rgba(167, 139, 250, 0.25);
    color: var(--purple-light);
}

.tag:nth-child(3) {
    border-color: rgba(167, 139, 250, 0.2);
    color: var(--purple);
}

/* Artist Tags */
.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.artist-tag {
    padding: 4px 10px;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--purple-light);
    letter-spacing: 0.3px;
}

/* Kit Details / Loop List - Accordion */
.kit-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.3s ease,
                opacity 0.3s ease;
    margin-bottom: 0;
    opacity: 0;
}

.kit-details.expanded {
    max-height: 600px;
    margin-bottom: 16px;
    opacity: 1;
}

.loops-list {
    padding: 16px;
    background: rgba(10, 13, 18, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.loop-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: transparent;
    transition: all 0.2s ease;
}

.loop-item:last-child {
    margin-bottom: 0;
}

.loop-item:hover {
    background: rgba(167, 139, 250, 0.06);
}

.loop-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.loop-play svg {
    width: 14px;
    height: 14px;
    color: var(--text-secondary);
    margin-left: 2px;
    transition: all 0.2s ease;
}

.loop-play:hover {
    border-color: var(--purple);
    background: rgba(167, 139, 250, 0.15);
    transform: scale(1.05);
}

.loop-play:hover svg {
    color: var(--purple-light);
}

.loop-play.playing {
    border-color: var(--purple);
    background: linear-gradient(135deg, var(--purple), var(--accent));
    box-shadow: 0 0 20px var(--purple-glow);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px var(--purple-glow); }
    50% { box-shadow: 0 0 25px var(--purple-glow); }
}

.loop-play.playing svg {
    color: var(--bg-primary);
    margin-left: 0;
}

.loop-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.loop-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.loop-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Loop item number indicator */
.loop-item::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    margin-left: auto;
    transition: all 0.2s ease;
}

.loop-item:hover::after {
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple-glow);
}

/* View Loops Button - Accordion Toggle */
.view-loops-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.view-loops-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-loops-btn:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.25);
    color: var(--purple-light);
}

.view-loops-btn.expanded {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.2);
    color: var(--purple-light);
}

.view-loops-btn.expanded svg {
    transform: rotate(180deg);
}

/* What's Included Section */
.kit-includes {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(110, 168, 254, 0.05) 100%);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.includes-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.includes-header svg {
    width: 14px;
    height: 14px;
    color: var(--purple-light);
}

.includes-items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.include-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.include-number {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.include-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stem-types {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(167, 139, 250, 0.1);
}

.stem-tag {
    padding: 4px 10px;
    background: rgba(110, 168, 254, 0.1);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.3px;
}

.stem-tag:last-child {
    background: rgba(167, 139, 250, 0.15);
    color: var(--purple-light);
}

/* Download Button - Premium Style */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(110, 168, 254, 0.1) 0%, rgba(110, 168, 254, 0.05) 100%);
    color: var(--accent-light);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Primary Download Button - Top CTA */
.download-btn.primary-download {
    background: linear-gradient(135deg, var(--purple) 0%, var(--accent) 100%);
    color: var(--bg-primary);
    border: none;
    padding: 16px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px var(--purple-glow);
}

.download-btn.primary-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.download-btn.primary-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--purple-glow), 0 0 40px rgba(167, 139, 250, 0.3);
}

.download-btn.primary-download .btn-icon {
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn.primary-download .btn-icon svg {
    width: 18px;
    height: 18px;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(110, 168, 254, 0.15), transparent);
    transition: left 0.5s ease;
}

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

.download-btn:hover {
    background: linear-gradient(135deg, rgba(110, 168, 254, 0.15) 0%, rgba(167, 139, 250, 0.1) 100%);
    border-color: var(--purple);
    color: var(--text-primary);
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.2);
    transform: translateY(-1px);
}

.download-btn .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.download-btn:hover .btn-icon {
    transform: translateY(2px);
}

.download-btn.disabled {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
    cursor: not-allowed;
}

.download-btn.disabled::before {
    display: none;
}

.download-btn.disabled:hover {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
    box-shadow: none;
    transform: none;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   Email Signup Section - Top
   ============================================= */
.signup-section.signup-top {
    padding: 25px 0 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.6s;
}

.signup-headline {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.signup-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.signup-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s ease;
    min-width: 0;
}

.signup-input::placeholder {
    color: var(--text-muted);
}

.signup-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 15px var(--purple-glow);
}

.signup-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--accent) 100%);
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--purple-glow);
}

.signup-message {
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .signup-section.signup-top {
        padding: 25px 0 30px;
    }

    .signup-headline {
        font-size: 1.15rem;
        padding: 0 20px;
        margin-bottom: 16px;
    }

    .signup-form {
        flex-wrap: wrap;
        padding: 0 16px;
        gap: 8px;
    }

    .signup-input {
        flex: 1 1 45%;
        min-width: 120px;
    }

    .signup-btn {
        flex: 1 1 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .signup-headline {
        font-size: 1.05rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-input {
        width: 100%;
    }
}

/* =============================================
   Contact Section
   ============================================= */
.contact-section {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.contact-section .section-subtitle {
    margin-bottom: 28px;
}

.contact-btn {
    display: inline-flex;
    padding: 14px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.contact-btn:hover {
    border-color: var(--purple);
    color: var(--purple-light);
    box-shadow: 0 0 20px var(--purple-glow);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-glow), transparent);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* =============================================
   Modal
   ============================================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 12, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 380px;
    width: 100%;
    position: relative;
    border: 1px solid var(--border);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.modal-content h3 {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.download-progress {
    height: 2px;
    background: var(--bg-secondary);
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 14px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: progress 1.5s ease forwards;
}

@keyframes progress {
    to { width: 100%; }
}

.download-message {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-banner {
        height: 140px;
    }

    .brand-name {
        font-size: 2rem;
        letter-spacing: 10px;
    }

    .tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .profile-info-centered {
        padding: 15px 0 40px;
    }

    .kits-section {
        padding: 30px 0 80px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-title::before {
        left: -14px;
        width: 2px;
    }

    .kits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kit-info {
        padding: 18px;
    }

    .kit-info h3 {
        font-size: 1.1rem;
    }

    .kit-description {
        font-size: 0.8rem;
    }

    .kit-tags {
        gap: 5px;
    }

    .tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .artist-tags {
        gap: 5px;
    }

    .artist-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .loops-list {
        padding: 12px;
    }

    .loop-item {
        padding: 10px 10px;
        gap: 10px;
    }

    .loop-play {
        width: 36px;
        height: 36px;
    }

    .loop-name {
        font-size: 0.85rem;
    }

    .loop-meta {
        font-size: 0.7rem;
    }

    .kit-includes {
        padding: 14px;
    }

    .include-number {
        font-size: 1.2rem;
    }

    .include-label {
        font-size: 0.65rem;
    }

    .stem-tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .download-btn {
        padding: 12px 18px;
        font-size: 0.75rem;
    }

    .view-loops-btn {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-btn {
        padding: 12px 30px;
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hide scan lines on mobile for performance */
    body::after {
        display: none;
    }

    /* Reduce particles on mobile */
    .particle:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 8px;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .hero-banner {
        height: 120px;
    }

    .includes-items {
        gap: 8px;
    }

    .include-number {
        font-size: 1.1rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 3px;
}

/* =============================================
   Audio Player Bar
   ============================================= */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 19, 24, 0.95) 0%, rgba(10, 13, 18, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    padding: 12px 24px;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--purple) 20%, var(--accent) 50%, var(--purple) 80%, transparent 100%);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.player-bar.active {
    transform: translateY(0);
}

.player-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.player-artwork {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.player-track-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.player-kit-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.player-btn svg {
    width: 22px;
    height: 22px;
}

.player-btn:hover {
    color: var(--text-primary);
}

.player-prev,
.player-next {
    padding: 8px;
}

.player-prev:hover,
.player-next:hover {
    transform: scale(1.1);
}

.player-play-pause {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--accent) 100%);
    color: var(--bg-primary);
    box-shadow:
        0 4px 20px var(--purple-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.player-play-pause::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: glossyShine 3s ease-in-out infinite;
}

@keyframes glossyShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.player-play-pause:hover {
    transform: scale(1.08);
    box-shadow:
        0 6px 30px var(--purple-glow),
        0 0 40px rgba(167, 139, 250, 0.3);
}

.player-play-pause svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.player-play-pause .play-icon {
    margin-left: 2px;
}

.player-play-pause .pause-icon {
    display: none;
}

.player-bar.playing .player-play-pause .play-icon {
    display: none;
}

.player-bar.playing .player-play-pause .pause-icon {
    display: block;
}

.player-progress-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 40px;
}

.player-time.current-time {
    text-align: right;
}

.player-progress {
    flex: 1;
    height: 6px;
    background: rgba(138, 148, 163, 0.15);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-progress:hover {
    height: 8px;
}

.player-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--purple) 0%, var(--accent) 100%);
    border-radius: 3px;
    position: relative;
    box-shadow: 0 0 10px var(--purple-glow), 0 0 20px rgba(167, 139, 250, 0.2);
}

.player-progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.player-progress:hover .player-progress-bar::after {
    opacity: 1;
}

.player-close {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s ease;
    margin-left: 10px;
}

.player-close svg {
    width: 18px;
    height: 18px;
}

.player-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Mobile Player */
@media (max-width: 768px) {
    .player-bar {
        padding: 10px 16px 14px;
    }

    .player-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .player-track-info {
        min-width: auto;
        flex: 1;
        order: 1;
    }

    .player-controls {
        order: 2;
    }

    .player-close {
        order: 3;
        margin-left: 0;
    }

    .player-progress-section {
        order: 4;
        width: 100%;
        flex: none;
    }

    .player-artwork {
        width: 44px;
        height: 44px;
    }

    .player-track-name {
        font-size: 0.85rem;
    }

    .player-play-pause {
        width: 46px;
        height: 46px;
    }

    .player-prev,
    .player-next {
        padding: 6px;
    }

    .player-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .player-bar {
        padding: 8px 12px 12px;
    }

    .player-artwork {
        width: 38px;
        height: 38px;
    }

    .player-play-pause {
        width: 42px;
        height: 42px;
    }

    .player-track-name {
        font-size: 0.8rem;
    }

    .player-kit-name {
        font-size: 0.7rem;
    }
}

/* Ambient Particles */
.ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--purple-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 20s infinite ease-in-out;
    box-shadow: 0 0 10px var(--purple-glow), 0 0 20px var(--purple-glow);
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 85%;
    top: 40%;
    animation-delay: -5s;
    animation-duration: 22s;
    background: var(--accent-light);
}

.particle:nth-child(3) {
    left: 50%;
    top: 60%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.particle:nth-child(4) {
    left: 25%;
    top: 80%;
    animation-delay: -15s;
    animation-duration: 20s;
    background: var(--accent-light);
}

.particle:nth-child(5) {
    left: 70%;
    top: 15%;
    animation-delay: -8s;
    animation-duration: 24s;
}

.particle:nth-child(6) {
    left: 5%;
    top: 50%;
    animation-delay: -12s;
    animation-duration: 30s;
    background: var(--accent-light);
}

.particle:nth-child(7) {
    left: 95%;
    top: 25%;
    animation-delay: -3s;
    animation-duration: 26s;
}

.particle:nth-child(8) {
    left: 40%;
    top: 90%;
    animation-delay: -18s;
    animation-duration: 23s;
    background: var(--accent-light);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(30px, -40px) scale(1.5);
        opacity: 0.4;
    }
    50% {
        transform: translate(-20px, -80px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.4;
    }
}

::selection {
    background: var(--purple);
    color: var(--bg-primary);
}
