/* ====================================
   IFEELVOID - Main Stylesheet
   Clean monochrome aesthetic with purple accents
   Matches current Bandzoogle site design
   ==================================== */

/* Wireframe/Scanline Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.015) 2px,
        rgba(255, 255, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 9999;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

/* Glitch Animation */
@keyframes glitch {
    0%, 92%, 100% { text-shadow: none; }
    93% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; }
    95% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; }
    97% { text-shadow: 0 0 30px rgba(139, 92, 246, 0.8); }
}

.glitch-title {
    animation: glitch 4s infinite;
}

/* Wireframe Grid Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 9998;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #0d0d0d;
    --dark-gray: #1a1a1a;
    --purple: hsl(275, 100%, 55%);
    --purple-hover: hsl(275, 100%, 68%);
    --purple-glow: hsla(275, 100%, 55%, 0.35);
    --text-black: #f0f0f0;
    --text-gray: #888888;
    --border-color: #222222;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Mono', 'Space Mono', monospace;
    background: var(--black);
    color: var(--text-black);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 80px;
    font-weight: 300;
    font-size: 13px;
    overflow-x: hidden;
}

.container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 0.12em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: 0.1em;
}

h3 {
    font-size: 16px;
    letter-spacing: 0.12em;
}

h4, h5, h6 {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--text-gray);
}

/* ====================================
   GLITCH ANIMATION
   ==================================== */

@keyframes glitch-clip-1 {
    0%   { clip-path: inset(40% 0 50% 0); transform: translate(-4px, 0); }
    20%  { clip-path: inset(70% 0 5% 0);  transform: translate(4px, 0); }
    40%  { clip-path: inset(20% 0 65% 0); transform: translate(-2px, 0); }
    60%  { clip-path: inset(85% 0 2% 0);  transform: translate(3px, 0); }
    80%  { clip-path: inset(55% 0 30% 0); transform: translate(-3px, 0); }
    100% { clip-path: inset(40% 0 50% 0); transform: translate(0, 0); }
}

@keyframes glitch-clip-2 {
    0%   { clip-path: inset(10% 0 80% 0); transform: translate(4px, 0); }
    20%  { clip-path: inset(60% 0 25% 0); transform: translate(-4px, 0); }
    40%  { clip-path: inset(30% 0 55% 0); transform: translate(2px, 0); }
    60%  { clip-path: inset(5% 0 85% 0);  transform: translate(-3px, 0); }
    80%  { clip-path: inset(75% 0 10% 0); transform: translate(3px, 0); }
    100% { clip-path: inset(10% 0 80% 0); transform: translate(0, 0); }
}

@keyframes glitch-skew {
    0%   { transform: skew(0deg); }
    10%  { transform: skew(-1.5deg); }
    20%  { transform: skew(0deg); }
    85%  { transform: skew(0deg); }
    90%  { transform: skew(0.8deg); }
    95%  { transform: skew(-0.5deg); }
    100% { transform: skew(0deg); }
}

.logo {
    position: relative;
    display: inline-block;
}

.logo::before,
.logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.logo::before {
    color: var(--purple);
    text-shadow: 2px 0 var(--purple);
}

.logo::after {
    color: #0ff;
    text-shadow: -2px 0 #0ff;
}

.logo:hover {
    animation: glitch-skew 0.6s steps(1) infinite;
    color: var(--text-black);
}

.logo:hover::before {
    opacity: 1;
    animation: glitch-clip-1 0.6s steps(1) infinite;
}

.logo:hover::after {
    opacity: 1;
    animation: glitch-clip-2 0.6s steps(1) 0.05s infinite;
}

/* ====================================
   NAVIGATION
   ==================================== */

.main-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

/* Simple nav (used in index.html) */
nav {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #111;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav .nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

nav .mobile-menu-toggle {
    display: none;
    margin-left: auto;
    margin-right: 1rem;
}

.nav-container {
    max-width: 85%;
    margin: 0 auto;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 37px;
    font-weight: 400;
    color: var(--text-black);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li:not(:last-child)::after {
    content: ' / ';
    color: var(--text-gray);
    padding: 0 0.5rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--purple);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 14px;
}

.social-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a,
.mobile-menu-overlay .nav-dropdown {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem 0;
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #222;
    transition: color 0.2s, border-color 0.2s;
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay .nav-dropdown:hover {
    color: var(--purple);
    border-color: var(--purple);
}

.mobile-menu-overlay .nav-dropdown-content {
    display: none;
    background: transparent;
    position: static;
    box-shadow: none;
    padding: 0;
}

.mobile-menu-overlay .nav-dropdown.active .nav-dropdown-content {
    display: block;
}

.mobile-menu-overlay .nav-dropdown-content a {
    font-size: 14px;
    padding: 1rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.mobile-menu-overlay .nav-dropbtn {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--black);
}

.hero h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(27px, 4vw, 37px);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0;
    color: var(--text-black);
    font-weight: 400;
}

.tagline {
    font-size: 15px;
    color: var(--text-gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
}

/* ====================================
   CINEMATIC HERO
   ==================================== */

.hero-cinematic {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* Animated noise/grain overlay */
.hero-bg-noise {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    animation: noise-drift 8s steps(2) infinite;
    pointer-events: none;
}

@keyframes noise-drift {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-2%, 1%); }
    50%  { transform: translate(1%, -2%); }
    75%  { transform: translate(2%, 1%); }
    100% { transform: translate(0, 0); }
}

/* Radial purple glow behind title */
.hero-cinematic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, hsla(275, 100%, 50%, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--purple);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; width: 3px; height: 3px; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; width: 2px; height: 2px; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; width: 4px; height: 4px; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; width: 2px; height: 2px; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 50%; width: 3px; height: 3px; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 60%; width: 2px; height: 2px; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; width: 4px; height: 4px; animation-delay: 0.8s; }
.particle:nth-child(8) { left: 80%; width: 2px; height: 2px; animation-delay: 1.8s; }
.particle:nth-child(9) { left: 90%; width: 3px; height: 3px; animation-delay: 3s; }

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.particle:nth-child(odd) {
    background: #fff;
    animation-duration: 10s;
}

.particle:nth-child(3n) {
    animation-duration: 12s;
    width: 5px;
    height: 5px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fade-up 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Space Mono', monospace;
    font-size: clamp(52px, 12vw, 140px);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--text-black);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: fade-up 0.8s ease 0.4s forwards;
}

/* Glitch on hero title too */
.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-title::before {
    color: var(--purple);
    animation: hero-glitch-1 6s steps(1) 2s infinite;
}

.hero-title::after {
    color: #0ff;
    animation: hero-glitch-2 6s steps(1) 2.1s infinite;
}

@keyframes hero-glitch-1 {
    0%, 92%, 100% { opacity: 0; transform: none; clip-path: none; }
    93% { opacity: 1; clip-path: inset(30% 0 55% 0); transform: translate(-5px, 0); }
    94% { opacity: 1; clip-path: inset(70% 0 10% 0); transform: translate(5px, 0); }
    95% { opacity: 0; }
}

@keyframes hero-glitch-2 {
    0%, 92%, 100% { opacity: 0; transform: none; clip-path: none; }
    93% { opacity: 1; clip-path: inset(10% 0 75% 0); transform: translate(4px, 0); }
    94% { opacity: 1; clip-path: inset(60% 0 20% 0); transform: translate(-4px, 0); }
    95% { opacity: 0; }
}

.hero-sub {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fade-up 0.8s ease 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s ease 0.8s forwards;
}

.hero-btn {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn--primary {
    background: var(--purple);
    color: var(--white);
    border: 1px solid var(--purple);
}

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

.hero-btn--ghost {
    background: transparent;
    color: var(--text-black);
    border: 1px solid var(--border-color);
}

.hero-btn--ghost:hover {
    border-color: var(--purple);
    color: var(--purple);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fade-up 0.8s ease 1.2s forwards;
}

.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    margin: 0 auto;
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(42px, 16vw, 90px);
    }

    .hero-cinematic {
        min-height: 45vh;
        padding: 4rem 1rem;
    }

    .hero-cinematic::before {
        width: 350px;
        height: 350px;
    }
}

/* ====================================
   ABOUT SECTION
   ==================================== */

.about-section {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    max-width: 85%;
    margin: 0 auto;
}

.profile-img {
    width: 220px;
    height: 220px;
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
}

.about-text h2 {
    color: var(--text-black);
    margin-bottom: var(--spacing-sm);
    font-size: 19px;
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0;
}

.about-text p {
    line-height: 1.6;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 300;
}

/* ====================================
   TRACKS SECTION
   ==================================== */

.tracks-section {
    padding: var(--spacing-lg) 0;
    background: var(--black);
}

.tracks-section h2 {
    text-align: center;
    font-size: 27px;
    margin-bottom: var(--spacing-md);
    color: var(--text-black);
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 85%;
    margin: 0 auto;
}

.track-card {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.track-card:hover {
    box-shadow: 0 0 24px var(--purple-glow), 0 0 48px hsla(275, 100%, 55%, 0.15);
    border-color: var(--purple);
}

.track-art {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.track-info {
    padding: var(--spacing-sm);
}

.track-title {
    font-size: 15px;
    margin-bottom: 0.25rem;
    color: var(--text-black);
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0;
}

.track-artist {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

.play-btn {
    background: var(--black);
    border: none;
    color: var(--white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    transition: background 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: var(--purple);
}

.play-btn.playing {
    background: var(--purple);
}

.track-actions {
    padding: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.gumroad-btn {
    display: block;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.gumroad-btn:hover {
    background: var(--purple);
}

/* ====================================
   EMAIL SIGNUP
   ==================================== */

.email-signup {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.email-signup h2,
.email-signup h3 {
    font-size: 19px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-black);
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0;
}

.email-signup p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 13px;
}

.signup-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.signup-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: #111;
    color: var(--text-black);
    font-family: inherit;
    font-size: 13px;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--purple);
}

.signup-form button {
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.signup-form button:hover {
    background: var(--purple);
}

/* ====================================
   TIP JAR
   ==================================== */

.tip-jar {
    text-align: center;
    padding: var(--spacing-lg) 0;
    background: var(--black);
}

.tip-jar h2,
.tip-jar h3 {
    font-size: 19px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-black);
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0;
}

.tip-jar p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 13px;
}

.gumroad-button {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.gumroad-button:hover {
    background: var(--purple);
}

/* ====================================
   FEATURED PRODUCTS
   ==================================== */

.featured-products {
    padding: var(--spacing-lg) 0;
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
}

.featured-products h2 {
    text-align: center;
    font-size: 27px;
    margin-bottom: var(--spacing-md);
    color: var(--text-black);
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 85%;
    margin: 0 auto;
}

.product-card {
    background: var(--black);
    border: 1px solid var(--border-color);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 0 24px var(--purple-glow);
    border-color: var(--purple);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: var(--spacing-sm);
    color: var(--text-black);
    font-size: 15px;
    font-weight: 400;
}

.product-card p {
    padding: 0 var(--spacing-sm);
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
    font-size: 13px;
}

.btn {
    display: inline-block;
    margin: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--purple);
}

/* ====================================
   FOOTER
   ==================================== */

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    max-width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* ====================================
   PERSISTENT AUDIO PLAYER - Beat Store Style
   ==================================== */

.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    font-family: 'Space Mono', 'Space Mono', monospace;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    flex-shrink: 0;
}

.player-art {
    width: 42px;
    height: 42px;
    object-fit: cover;
    flex-shrink: 0;
}

.player-text {
    overflow: hidden;
}

.player-title {
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--white);
    font-size: 13px;
}

.player-artist {
    font-size: 11px;
    color: var(--text-gray);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.control-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
    opacity: 0.9;
}

.control-btn:hover {
    opacity: 1;
}

.play-pause {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.player-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time {
    font-size: 11px;
    color: var(--text-gray);
    min-width: 40px;
    font-variant-numeric: tabular-nums;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--dark-gray);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--purple);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: var(--dark-gray);
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--purple);
    border-radius: 50%;
    cursor: pointer;
}

/* Hide player on mobile - commented out for now */
/* @media (max-width: 768px) {
    .audio-player {
        display: none;
    }
} */
    font-family: 'Space Mono', monospace;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    width: 0%;
    transition: width 0.1s linear;
}

.progress-slider {
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 16px;
    opacity: 0;
    cursor: pointer;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--white);
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--white);
    cursor: pointer;
    border: none;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
    .container,
    .nav-container,
    .about-content,
    .tracks-grid,
    .products-grid,
    .footer-content {
        max-width: 95%;
        padding: 0 1rem;
    }

    body {
        font-size: 12px;
    }

    h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    h2 {
        font-size: clamp(18px, 5vw, 22px);
    }

    .nav-menu {
        display: none; /* sidebar handles mobile nav */
    }

    .nav-links,
    .nav-socials {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    nav .mobile-menu-toggle {
        display: flex !important;
    }

    nav {
        padding: 1rem;
    }

    nav .nav-logo {
        font-size: 16px;
    }

    .audio-player {
        display: none;
    }

    /* ── Inline player mobile ── */
    #audioPlayer {
        padding: 0 0.75rem !important;
        gap: 0.5rem !important;
    }

    /* Hide volume on mobile — saves ~90px */
    #audioPlayer > div:last-child {
        display: none !important;
    }

    /* Hide timestamps — saves ~60px */
    #currentTime,
    #duration {
        display: none !important;
    }

    /* Products grid full width on mobile */
    .products-grid {
        max-width: 95%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

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

    .logo {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 24px;
    }

    /* AI Page Mobile */
    .ai-section {
        padding: 2rem 1rem;
    }

    .ai-section h2 {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .ai-section p,
    .ai-section ul {
        font-size: 12px;
        line-height: 1.7;
    }

    .ai-section ul {
        padding-left: 1.25rem;
    }

    .ai-section li {
        margin-bottom: 0.5rem;
    }

    .philosophy-box {
        padding: 1.25rem;
        font-size: 12px;
    }

    .status-badge {
        font-size: 10px;
        padding: 0.25rem 0.5rem;
    }

    .mood-indicator {
        font-size: 11px;
    }

    /* Track list mobile */
    .track-list {
        margin: 1rem 0;
        max-width: 100%;
    }

    .track-list-item {
        padding: 0.75rem 0.5rem;
    }

    /* Beat row mobile */
    .beat-row {
        display: grid;
        grid-template-columns: 50px 1fr auto;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .beat-play-col {
        width: 44px;
        height: 44px;
    }

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

    .beat-info-col {
        min-width: 0;
    }

    .beat-title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .beat-producer {
        font-size: 10px;
    }

    .beat-waveform {
        display: none;
    }

    .beat-bpm,
    .beat-key,
    .beat-tags {
        display: none;
    }

    .beat-actions-col {
        display: flex;
        align-items: center;
    }

    .beat-buy-btn {
        padding: 0.4rem 0.8rem;
        font-size: 11px;
    }

    .track-number-play {
        min-width: 60px;
        gap: 0.5rem;
    }

    .track-art {
        width: 36px;
        height: 36px;
    }

    .track-list-item .play-btn {
        width: 28px;
        height: 28px;
    }

    .track-list-item .track-info {
        padding: 0 0.5rem;
        gap: 1px;
    }

    .track-list-item .track-title {
        font-size: 13px;
    }

    .track-list-item .track-artist-name {
        font-size: 10px;
    }

    .track-list-item .track-duration {
        font-size: 10px;
    }

    .track-list-item .track-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container,
    .about-content,
    .tracks-grid,
    .products-grid,
    .footer-content {
        max-width: 100%;
        padding: 0 0.75rem;
    }

    body {
        font-size: 11px;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        overflow-x: hidden;
    }

    .product-card h3 {
        font-size: 13px;
        padding: 0.75rem;
    }

    .product-card p {
        font-size: 11px;
        padding: 0 0.75rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 11px;
        margin: 0.5rem;
    }

    .player-art {
        width: 50px;
        height: 50px;
    }

    .control-btn {
        font-size: 1rem;
    }

    .play-pause {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .logo {
        font-size: 24px;
    }

    /* AI Page Extra Small */
    .ai-section {
        padding: 1.5rem 0.75rem;
    }

    .ai-section h2 {
        font-size: 12px;
    }

    .philosophy-box {
        padding: 1rem;
        font-size: 11px;
    }
}

/* ====================================
   UTILITIES
   ==================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* ====================================
   LYRICS PANEL
   ==================================== */

.player-extras {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

.lyrics-btn {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.lyrics-btn:hover {
    opacity: 1;
}

.lyrics-btn.active {
    color: var(--purple-hover);
    opacity: 1;
}

.lyrics-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.lyrics-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 50vh;
    max-height: 600px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(40px);
    z-index: 9998;
    transition: bottom 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lyrics-panel.visible {
    bottom: 0;
}

.lyrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lyrics-header h3 {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lyrics-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.lyrics-close:hover {
    color: var(--white);
}

.lyrics-container {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    scroll-behavior: smooth;
}

/* Custom scrollbar for lyrics */
.lyrics-container::-webkit-scrollbar {
    width: 8px;
}

.lyrics-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.lyrics-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.lyrics-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.no-lyrics {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    padding: var(--spacing-xl);
}

.lyric-line {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0.75rem var(--spacing-md);
    margin: 0.25rem 0;
    cursor: pointer;
}

.lyric-line.active {
    color: var(--white);
    font-size: 26px;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.lyric-line.past {
    color: rgba(255, 255, 255, 0.25);
}

.lyric-line:hover:not(.active) {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive for lyrics panel */
@media (max-width: 768px) {
    .lyrics-panel {
        height: 60vh;
        max-height: none;
    }

    .lyrics-panel.visible {
        bottom: 0;
    }

    .lyric-line {
        font-size: 18px;
        padding: 0.5rem var(--spacing-sm);
    }

    .lyric-line.active {
        font-size: 22px;
    }

    .player-extras {
        grid-column: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lyric-line {
        font-size: 16px;
    }

    .lyric-line.active {
        font-size: 20px;
    }

    .lyrics-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

/* ====================================
   BEAT STORE
   ==================================== */

.license-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-color);
    background: var(--light-gray);
}

.license-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.license-name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.license-price {
    font-family: 'Space Mono', monospace;
    font-size: 27px;
    font-weight: 400;
    color: var(--text-black);
}

.license-desc {
    font-size: 11px;
    color: var(--text-gray);
}

.license-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

/* Beat List */

.beat-list {
    padding: var(--spacing-sm) 0 var(--spacing-lg);
}

.beat-row {
    display: grid;
    grid-template-columns: 48px 1fr 2fr 60px auto;
    gap: var(--spacing-sm);
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s ease;
}

.beat-row:first-child {
    border-top: 1px solid var(--border-color);
}

.beat-row:hover {
    background: var(--light-gray);
}

.beat-row--active {
    background: var(--light-gray);
}

.beat-row--playing .beat-title {
    color: var(--purple);
}

/* Play button */

.beat-play-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    background: var(--light-gray);
    color: var(--text-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.beat-play-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.beat-row--playing .beat-play-btn {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

/* Beat info */

.beat-info-col {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.beat-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease;
}

.beat-tags {
    font-size: 11px;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Waveform */

.beat-waveform-col {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.beat-waveform {
    flex: 1;
    height: 32px;
    background: repeating-linear-gradient(
        90deg,
        #333 0px,
        #333 2px,
        transparent 2px,
        transparent 4px
    );
    background-size: 4px 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.beat-waveform::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, transparent 0%, #ccc 20%, #999 40%, #ccc 50%, #999 60%, #ccc 80%, transparent 100%);
    opacity: 0.4;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 32'%3E%3Crect x='0' y='8' width='3' height='16' rx='1'/%3E%3Crect x='5' y='4' width='3' height='24' rx='1'/%3E%3Crect x='10' y='10' width='3' height='12' rx='1'/%3E%3Crect x='15' y='2' width='3' height='28' rx='1'/%3E%3Crect x='20' y='6' width='3' height='20' rx='1'/%3E%3Crect x='25' y='12' width='3' height='8' rx='1'/%3E%3Crect x='30' y='4' width='3' height='24' rx='1'/%3E%3Crect x='35' y='8' width='3' height='16' rx='1'/%3E%3Crect x='40' y='1' width='3' height='30' rx='1'/%3E%3Crect x='45' y='10' width='3' height='12' rx='1'/%3E%3Crect x='50' y='6' width='3' height='20' rx='1'/%3E%3Crect x='55' y='3' width='3' height='26' rx='1'/%3E%3Crect x='60' y='8' width='3' height='16' rx='1'/%3E%3Crect x='65' y='12' width='3' height='8' rx='1'/%3E%3Crect x='70' y='4' width='3' height='24' rx='1'/%3E%3Crect x='75' y='6' width='3' height='20' rx='1'/%3E%3Crect x='80' y='2' width='3' height='28' rx='1'/%3E%3Crect x='85' y='10' width='3' height='12' rx='1'/%3E%3Crect x='90' y='5' width='3' height='22' rx='1'/%3E%3Crect x='95' y='8' width='3' height='16' rx='1'/%3E%3Crect x='100' y='3' width='3' height='26' rx='1'/%3E%3Crect x='105' y='7' width='3' height='18' rx='1'/%3E%3Crect x='110' y='11' width='3' height='10' rx='1'/%3E%3Crect x='115' y='4' width='3' height='24' rx='1'/%3E%3Crect x='120' y='9' width='3' height='14' rx='1'/%3E%3Crect x='125' y='2' width='3' height='28' rx='1'/%3E%3Crect x='130' y='6' width='3' height='20' rx='1'/%3E%3Crect x='135' y='10' width='3' height='12' rx='1'/%3E%3Crect x='140' y='5' width='3' height='22' rx='1'/%3E%3Crect x='145' y='8' width='3' height='16' rx='1'/%3E%3Crect x='150' y='3' width='3' height='26' rx='1'/%3E%3Crect x='155' y='12' width='3' height='8' rx='1'/%3E%3Crect x='160' y='7' width='3' height='18' rx='1'/%3E%3Crect x='165' y='4' width='3' height='24' rx='1'/%3E%3Crect x='170' y='9' width='3' height='14' rx='1'/%3E%3Crect x='175' y='6' width='3' height='20' rx='1'/%3E%3Crect x='180' y='11' width='3' height='10' rx='1'/%3E%3Crect x='185' y='3' width='3' height='26' rx='1'/%3E%3Crect x='190' y='8' width='3' height='16' rx='1'/%3E%3Crect x='195' y='5' width='3' height='22' rx='1'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 32'%3E%3Crect x='0' y='8' width='3' height='16' rx='1'/%3E%3Crect x='5' y='4' width='3' height='24' rx='1'/%3E%3Crect x='10' y='10' width='3' height='12' rx='1'/%3E%3Crect x='15' y='2' width='3' height='28' rx='1'/%3E%3Crect x='20' y='6' width='3' height='20' rx='1'/%3E%3Crect x='25' y='12' width='3' height='8' rx='1'/%3E%3Crect x='30' y='4' width='3' height='24' rx='1'/%3E%3Crect x='35' y='8' width='3' height='16' rx='1'/%3E%3Crect x='40' y='1' width='3' height='30' rx='1'/%3E%3Crect x='45' y='10' width='3' height='12' rx='1'/%3E%3Crect x='50' y='6' width='3' height='20' rx='1'/%3E%3Crect x='55' y='3' width='3' height='26' rx='1'/%3E%3Crect x='60' y='8' width='3' height='16' rx='1'/%3E%3Crect x='65' y='12' width='3' height='8' rx='1'/%3E%3Crect x='70' y='4' width='3' height='24' rx='1'/%3E%3Crect x='75' y='6' width='3' height='20' rx='1'/%3E%3Crect x='80' y='2' width='3' height='28' rx='1'/%3E%3Crect x='85' y='10' width='3' height='12' rx='1'/%3E%3Crect x='90' y='5' width='3' height='22' rx='1'/%3E%3Crect x='95' y='8' width='3' height='16' rx='1'/%3E%3Crect x='100' y='3' width='3' height='26' rx='1'/%3E%3Crect x='105' y='7' width='3' height='18' rx='1'/%3E%3Crect x='110' y='11' width='3' height='10' rx='1'/%3E%3Crect x='115' y='4' width='3' height='24' rx='1'/%3E%3Crect x='120' y='9' width='3' height='14' rx='1'/%3E%3Crect x='125' y='2' width='3' height='28' rx='1'/%3E%3Crect x='130' y='6' width='3' height='20' rx='1'/%3E%3Crect x='135' y='10' width='3' height='12' rx='1'/%3E%3Crect x='140' y='5' width='3' height='22' rx='1'/%3E%3Crect x='145' y='8' width='3' height='16' rx='1'/%3E%3Crect x='150' y='3' width='3' height='26' rx='1'/%3E%3Crect x='155' y='12' width='3' height='8' rx='1'/%3E%3Crect x='160' y='7' width='3' height='18' rx='1'/%3E%3Crect x='165' y='4' width='3' height='24' rx='1'/%3E%3Crect x='170' y='9' width='3' height='14' rx='1'/%3E%3Crect x='175' y='6' width='3' height='20' rx='1'/%3E%3Crect x='180' y='11' width='3' height='10' rx='1'/%3E%3Crect x='185' y='3' width='3' height='26' rx='1'/%3E%3Crect x='190' y='8' width='3' height='16' rx='1'/%3E%3Crect x='195' y='5' width='3' height='22' rx='1'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.beat-waveform-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--purple);
    opacity: 0.3;
    transition: width 0.1s linear;
}

.beat-time {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--text-gray);
    min-width: 36px;
    text-align: right;
}

/* BPM */

.beat-bpm-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.beat-bpm {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--text-black);
    font-weight: 400;
}

.beat-bpm-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

/* Buy buttons */

.beat-actions-col {
    display: flex;
    gap: 0.5rem;
}

.beat-buy-btn {
    padding: 0.4rem 0.75rem;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    background: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.beat-buy-btn:hover {
    background: var(--purple);
}

.beat-buy-exclusive {
    background: none;
    color: var(--text-black);
    border: 1px solid var(--border-color);
}

.beat-buy-exclusive:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

/* License Details Section */

.license-details {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
}

.license-details h2 {
    text-align: center;
    font-size: 27px;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.license-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.license-card {
    border: 1px solid var(--border-color);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.license-card:hover {
    border-color: #444;
}

.license-card.selected {
    border: 2px solid var(--purple) !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    transform: scale(1.02);
}

.license-card h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.license-card ul {
    list-style: none;
    margin-bottom: var(--spacing-sm);
}

.license-card ul li {
    padding: 0.35rem 0;
    font-size: 12px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.license-card ul li::before {
    content: '+ ';
    color: var(--purple);
}

.license-note {
    font-size: 11px;
    color: var(--text-gray);
    font-style: italic;
    margin-top: var(--spacing-sm);
}

/* Purchase Modal */

.license-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.license-modal-content {
    background: #111;
    max-width: 480px;
    width: 100%;
    padding: var(--spacing-lg);
    position: relative;
}

.license-modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-gray);
    line-height: 1;
    padding: 0.25rem;
}

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

.license-modal-content h3 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
}

.modal-beat-name {
    font-size: 13px;
    color: var(--purple);
    margin-bottom: var(--spacing-md);
}

.modal-license-info ul {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.modal-license-info ul li {
    padding: 0.35rem 0;
    font-size: 12px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.modal-license-info ul li::before {
    content: '+ ';
    color: var(--purple);
}

.modal-checkout-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: var(--black);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.15s ease;
    margin-bottom: var(--spacing-sm);
}

.modal-checkout-btn:hover {
    background: var(--purple);
}

.modal-note {
    font-size: 11px;
    color: var(--text-gray);
    text-align: center;
}

/* Beat Store Responsive */

@media (max-width: 768px) {
    .license-banner {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }

    .license-divider {
        width: 60px;
        height: 1px;
    }

    .beat-row {
        grid-template-columns: 36px 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem;
    }

    .beat-waveform-col {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .beat-bpm-col {
        display: none;
    }

    .beat-actions-col {
        grid-row: 1;
    }

    .license-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .beat-row {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto auto;
    }

    .beat-actions-col {
        grid-column: 1 / -1;
        grid-row: 3;
        justify-content: stretch;
    }

    .beat-buy-btn {
        flex: 1;
        text-align: center;
    }
}

/* Track List Styles (matching old site) */
.track-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.track-list-item {
    display: grid;
    grid-template-columns: 50px 1fr 60px 60px auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #111;
    transition: background 0.2s ease;
}

.track-list-item:hover {
    background: rgba(255,255,255,0.03);
}

.track-number-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 90px;
}

.track-number {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--text-gray);
    min-width: 25px;
}

/* Track artwork thumbnail */
.track-art {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.track-list-item:hover .track-art {
    border-color: var(--purple);
}

.track-art-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--purple-glow), transparent);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
    flex-shrink: 0;
}

/* Track artist name in list */
.track-artist-name {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.track-list-item .play-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
}

.track-list-item .play-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: scale(1.05);
}

.track-list-item .play-btn .play-icon {
    font-size: 11px;
    color: var(--white);
    margin-left: 1px;
}

.track-list-item .play-btn .pause-icon {
    display: none;
    font-size: 10px;
    color: var(--white);
}

.track-list-item .play-btn:hover .play-icon,
.track-list-item .play-btn:hover .pause-icon {
    color: var(--white);
}

.track-list-item.playing .play-btn {
    background: var(--purple);
    border-color: var(--purple);
}

.track-list-item.playing .play-btn .play-icon {
    display: none;
}

.track-list-item.playing .play-btn .pause-icon {
    display: block;
    color: var(--white);
}

.track-list-item .track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 1.5rem;
    min-width: 0; /* Allow text truncation */
}

.track-list-item .track-title {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-list-item .track-artist-name {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-list-item .track-duration {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--gray);
    min-width: 45px;
    text-align: right;
}

.track-list-item .track-actions {
    margin-left: auto;
    padding-left: 1rem;
}

.track-list-item .track-actions {
    margin-left: auto;
}

.track-list-item .gumroad-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.track-list-item .gumroad-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Mobile responsiveness for track list */
@media (max-width: 768px) {
    .track-list-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .track-list-item .track-info {
        flex-basis: 100%;
        order: 2;
        padding: 0.5rem 0;
    }
    
    .track-list-item .track-actions {
        order: 3;
        flex-basis: 100%;
    }
    
    .track-list-item .gumroad-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ====================================
   LOGO IMAGE (nav + hero)
   ==================================== */

.logo-img-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

.logo-img-link:hover .nav-logo-img {
    filter: drop-shadow(0 0 8px var(--purple-glow));
}

.hero-logo-img {
    max-width: min(460px, 80vw);
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto var(--spacing-md);
    opacity: 0;
    animation: fade-up 0.8s ease 0.4s forwards;
}

@media (max-width: 768px) {
    .hero-logo-img { max-width: min(280px, 85vw); }
}

/* ====================================
   SOCIAL LINK SVG ICONS
   ==================================== */

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links svg {
    display: block;
    flex-shrink: 0;
}

/* ====================================
   MOBILE SIDEBAR
   ==================================== */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.nav-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100%;
    background: #000;
    z-index: 10001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
}

.nav-sidebar.open {
    right: 0;
}

.sidebar-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.sidebar-close-btn:hover {
    color: var(--text-black);
}

.nav-sidebar .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
    list-style: none;
}

.nav-sidebar .nav-menu li::after {
    display: none;
}

.nav-sidebar .nav-menu a {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-sidebar .nav-menu a:hover,
.nav-sidebar .nav-menu a.active {
    color: var(--purple);
}

.nav-sidebar .social-links {
    gap: 1.25rem;
    font-size: 18px;
    margin-top: 2rem;
}

/* Donate button */
.donate-btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.donate-btn:hover,
.donate-btn:not(:disabled):hover {
    background: var(--purple);
}

.donate-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* ====================================
   CUSTOM OVERRIDES - Match Beat Store Style
   ==================================== */

/* Squared off play buttons for track list */
.track-list-item .play-btn,
.track-list-item .play-btn:hover,
.track-list-item.playing .play-btn {
    border-radius: 4px !important;
    width: 36px;
    height: 36px;
}

.track-list-item .play-btn .play-icon,
.track-list-item .play-btn .pause-icon {
    font-size: 12px;
}

/* Calendly badge squared off */
.calendly-badge-widget {
    border-radius: 4px !important;
}

.calendly-badge-widget .schedule-meeting {
    border-radius: 4px !important;
    font-family: 'Space Mono', monospace !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* ConvertKit/Kit form overrides */
.formkit-form[data-sv-form="8889276"] {
    border-radius: 0 !important;
    background-color: var(--black) !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-background {
    display: none !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-header h2 {
    color: var(--white) !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 20px !important;
    letter-spacing: 0.1em !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-subheader p {
    color: var(--text-gray) !important;
    font-size: 13px !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-input {
    background: var(--dark-gray) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 0 !important;
    color: var(--white) !important;
    font-family: 'Space Mono', monospace !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-input::placeholder {
    color: var(--text-gray) !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-submit {
    background: var(--purple) !important;
    border-radius: 0 !important;
    font-family: 'Space Mono', monospace !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-guarantee {
    color: var(--text-gray) !important;
    font-size: 11px !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-powered-by-convertkit-container {
    display: none !important;
}

/* Footer simplification */
.site-footer .footer-content {
    justify-content: center;
    text-align: center;
}

.site-footer .footer-section h4 {
    display: none;
}

.site-footer .footer-section ul {
    display: none;
}

.site-footer .footer-section p {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}

/* Make intro section more prominent */
.about-section {
    padding: var(--spacing-lg) 0;
    background: var(--black);
    border-bottom: 1px solid var(--border-color);
}

.about-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 85%;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 24px;
    font-weight: 400;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 14px;
}

/* Make form boxes match site look better */
.formkit-form[data-sv-form="8889276"] {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}

.formkit-form[data-sv-form="8889276"] .formkit-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.formkit-form[data-sv-form="8889276"] .formkit-header h2 {
    text-align: center !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-subheader {
    text-align: center;
    margin-bottom: 1.5rem;
}

.formkit-form[data-sv-form="8889276"] .formkit-fields {
    gap: 0.75rem !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-field {
    margin-bottom: 0 !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-input {
    padding: 12px 16px !important;
    font-size: 13px !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-submit {
    padding: 12px 24px !important;
    font-size: 12px !important;
    margin-top: 0.5rem !important;
}

.formkit-form[data-sv-form="8889276"] .formkit-guarantee {
    text-align: center;
    margin-top: 1rem;
}

/* ====================================
   NAV LOGO + SOCIALS COLORS
   ==================================== */

.nav-logo {
    color: var(--white) !important;
    text-decoration: none !important;
}

.nav-socials a {
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-socials a:hover {
    color: var(--purple) !important;
}

/* Hide socials on small mobile */
@media (max-width: 480px) {
    .nav-socials {
        display: none !important;
    }
}

/* ====================================
   BLOG ARTICLE MOBILE STYLES
   ==================================== */

/* Article Container - Responsive */
article {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Article Header Styles */
article header {
    margin-bottom: 2rem;
}

article header h1 {
    font-size: 28px;
    line-height: 1.25;
    margin: 1rem 0;
    word-wrap: break-word;
}

article header p {
    font-size: 14px;
    margin-bottom: 1rem;
}

/* Article Featured Image */
article .featured-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Article Content Typography */
article .article-content,
article > div:not(article):not(header):not(nav):not(.related-articles),
article .content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

article .article-content p,
article > div:not(article):not(header):not(nav) p,
article .content p {
    margin-bottom: 1.25rem;
}

/* Article Headings */
article h2 {
    font-size: 24px;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

article h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
}

article h4 {
    font-size: 18px;
    line-height: 1.4;
    margin: 1.25rem 0 0.5rem;
}

/* Article Lists */
article ul,
article ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

article ul li,
article ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Article Blockquotes */
article blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-color);
    background: var(--light-gray);
    font-style: italic;
}

/* Article Images */
article img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
}

/* Article Links */
article a {
    color: var(--primary-color);
    text-decoration: underline;
}

article a:hover {
    text-decoration: none;
}

/* Article Code Blocks */
article pre,
article code {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    background: var(--light-gray);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    overflow-x: auto;
}

article pre {
    padding: 1rem;
    margin: 1.5rem 0;
}

/* Article Tables */
article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 14px;
}

article table th,
article table td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

article table th {
    background: var(--light-gray);
    font-weight: bold;
}

/* Breadcrumb Navigation */
article nav.breadcrumb,
article nav[style*="margin-bottom"] {
    margin-bottom: 1.5rem !important;
    font-size: 13px;
}

article nav.breadcrumb a,
article nav[style*="margin-bottom"] a {
    color: var(--text-gray);
    text-decoration: none;
}

article nav.breadcrumb a:hover,
article nav[style*="margin-bottom"] a:hover {
    color: var(--primary-color);
}

/* Related Articles Section */
.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-articles h3 {
    margin-bottom: 1.5rem;
}

/* ====================================
   TABLET RESPONSIVE (768px)
   ==================================== */
@media (max-width: 768px) {
    article {
        margin: 2rem auto !important;
        padding: 0 1rem !important;
    }

    article header h1 {
        font-size: 32px !important;
    }

    article header p {
        font-size: 14px !important;
    }

    article .article-content,
    article > div:not(article):not(header):not(nav) {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    article h2 {
        font-size: 24px !important;
    }

    article h3 {
        font-size: 20px !important;
    }

    article ul,
    article ol {
        padding-left: 1.25rem !important;
    }

    /* Blog grid on index */
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }

    /* Featured post */
    .featured-post,
    div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    .featured-post h2,
    div[style*="padding: 3rem"] h2 {
        font-size: 24px !important;
    }
}

/* ====================================
   MOBILE RESPONSIVE (480px)
   ==================================== */
@media (max-width: 480px) {
    article {
        margin: 1.5rem auto !important;
        padding: 0 0.75rem !important;
    }

    article header {
        margin-bottom: 1.5rem !important;
    }

    article header h1 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    article header p {
        font-size: 13px !important;
    }

    article .article-content,
    article > div:not(article):not(header):not(nav) {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    article h2 {
        font-size: 20px !important;
        margin: 1.5rem 0 0.75rem !important;
    }

    article h3 {
        font-size: 18px !important;
        margin: 1.25rem 0 0.5rem !important;
    }

    article h4 {
        font-size: 16px !important;
    }

    article ul,
    article ol {
        margin: 1rem 0 !important;
        padding-left: 1.25rem !important;
    }

    article ul li,
    article ol li {
        margin-bottom: 0.5rem !important;
        font-size: 15px !important;
    }

    article blockquote {
        margin: 1rem 0 !important;
        padding: 0.75rem 1rem !important;
        font-size: 14px !important;
    }

    article img {
        margin: 1rem 0 !important;
    }

    article pre,
    article code {
        font-size: 13px !important;
    }

    /* Breadcrumb */
    article nav[style*="margin-bottom"] {
        font-size: 12px !important;
        margin-bottom: 1rem !important;
    }

    /* Blog index specific */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Category filters */
    .category-filter {
        padding: 0.4rem 0.75rem !important;
        font-size: 12px !important;
        margin: 0.25rem !important;
    }

    /* Featured post */
    .featured-post,
    div[style*="padding: 3rem"] {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .featured-post h2,
    div[style*="padding: 3rem"] h2 {
        font-size: 20px !important;
    }

    .featured-post p,
    div[style*="padding: 3rem"] p {
        font-size: 14px !important;
    }

    /* Blog card adjustments */
    .blog-card {
        padding: 1rem !important;
    }

    .blog-card h3 {
        font-size: 16px !important;
    }

    .blog-card p {
        font-size: 13px !important;
    }
}
