        * {
            box-sizing: border-box;
        }
        :root {
            --bg-color: #ff00ff;
            --text-color: #ffffff;
        }
        body {
            margin: 0;
            font-family: 'Khand', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            text-align: center;
            scroll-behavior: smooth;
            line-height: 1.5;
            overflow-x: hidden;
            transition: background-color 55s linear, color 55s linear;
        }
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 80px;
            padding-top: calc(15px + env(safe-area-inset-top, 0px));
            background: var(--bg-color);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
            z-index: 1000;
            transition: background-color 55s linear;
        }
        .navbar img {
            height: 40px;
            position: relative;
            z-index: 1001;
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        .nav-links li {
            display: inline;
        }
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 55s linear;
        }
        .nav-links a:hover {
            letter-spacing: 2px; 
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }
        .menu-toggle div {
            width: 30px;
            height: 1.5px;
            background: var(--text-color);
            margin: 3px 0;
            border-radius: 1px;
            transition: background-color 55s linear, transform 0.3s ease, opacity 0.3s ease;
        }
        .menu-toggle.open div:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .menu-toggle.open div:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.open div:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .artist-photo-hero {
            background-image: var(--hero-image-desktop);
            background-size: cover;
            background-position: var(--hero-focal, center);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 0 20px;
        }
        .rotating-image {
            position: absolute;
            width: calc(1700px * var(--rotating-scale, 1));
            height: calc(1700px * var(--rotating-scale, 1));
            object-fit: contain;
            animation: rotate360 10s linear infinite;
        }
        @keyframes rotate360 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Type scale */
        h1, h2 {
            font-weight: 700;
        }
        p, .nav-links a {
            font-weight: 400;
        }
        h2 {
            font-size: 2.25rem;
            letter-spacing: 0.01em;
            margin: 0 0 24px;
        }
        section p {
            font-size: 1.15rem;
            line-height: 1.65;
            max-width: 620px;
            margin: 0 auto 18px;
        }
        section p:last-of-type {
            margin-bottom: 0;
        }

        /* Hero hierarchy */
        .hero-content > p {
            font-size: 1.05rem;
            letter-spacing: 0.12em;
            opacity: 0.85;
            margin: 0 0 6px;
        }
        .hero-content h1 {
            font-size: 4.25rem;
            line-height: 1.05;
            margin: 0;
            letter-spacing: 0.01em;
        }
        .hero-content h2 {
            font-size: 1.6rem;
            font-weight: 400;
            margin: 14px 0 4px;
        }
        .hero-content h3 {
            font-size: 1.3rem;
            font-weight: 400;
            margin: 4px 0;
            opacity: 0.95;
        }
        .hero-content h4 {
            font-size: 1.05rem;
            font-weight: 400;
            letter-spacing: 0.04em;
            opacity: 0.8;
            margin: 8px 0 26px;
        }
        .cta-button {
            display: inline-block;
            margin-top: 20px;
            padding: 15px 30px;
            background-color: #000000;
            color: #ffffff;
            font-size: 1.2rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
        }
        .cta-button:hover {
            background-color: #ff00ff;
        }
        section {
            padding: 100px 20px;
        }
        .contact-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }
        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            transition: opacity 0.2s ease, color 55s linear;
        }
        .contact-link:hover {
            opacity: 0.75;
        }
        .floating-ig {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
            transition: transform 0.2s ease;
        }
        .floating-ig:hover {
            transform: translateY(-50%) scale(1.08);
        }
        .event-card {
            max-width: 620px;
            margin: 0 auto 24px;
            padding: 28px 24px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transition: background-color 55s linear, color 55s linear;
        }
        .event-card p {
            margin: 0 0 14px;
        }
        .event-card p:last-child {
            margin-bottom: 0;
        }
        .event-card:nth-of-type(odd) {
            background: #ffffff;
            color: var(--bg-color);
        }
        .event-card:nth-of-type(odd) a,
        .event-card:nth-of-type(odd) strong {
            color: var(--bg-color);
        }
        .event-card:nth-of-type(even) {
            background: var(--bg-color);
            color: var(--text-color);
        }
        .event-card:nth-of-type(even) a,
        .event-card:nth-of-type(even) strong {
            color: var(--text-color);
        }
        .event-title {
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin: 0 0 8px !important;
        }
        .event-meta {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 16px !important;
        }
        .event-lineup {
            font-size: 1rem;
            opacity: 0.85;
            margin: 0 0 16px !important;
        }
        .ig-grid {
            display: grid;
            grid-template-columns: repeat(3, 180px);
            gap: 10px;
            margin: 20px auto 0;
            justify-content: center;
        }
        .ig-tile {
            width: 180px;
            height: 140px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        .ig-tile blockquote.instagram-media,
        .ig-tile iframe {
            position: absolute;
            left: 0;
            width: 326px !important;
            transform: scale(0.552);
            transform-origin: top left;
        }
        @media (max-width: 768px) {
            .artist-photo-hero {
                background-image: var(--hero-image-mobile, var(--hero-image-desktop));
            }
            .ig-grid {
                grid-template-columns: repeat(2, 140px);
            }
            .ig-tile {
                width: 140px;
                height: 108px;
            }
            .ig-tile blockquote.instagram-media,
            .ig-tile iframe {
                width: 326px !important;
                transform: scale(0.429);
            }
            .navbar {
                padding: 15px 28px;
            }

            .mobile-nav-panel {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                height: 100dvh;
                background: color-mix(in srgb, var(--bg-color) 80%, transparent);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                flex-direction: column;
                z-index: 999;
                overflow-y: auto;
                padding-top: calc(76px + env(safe-area-inset-top, 0px));
                transition: background-color 55s linear;
            }
            .mobile-nav-panel.active {
                display: flex;
            }
            .nav-links {
                display: flex;
                flex-direction: column;
                width: 100%;
                background: rgba(255, 255, 255, 0.94);
                margin: 0;
                padding: 0;
                gap: 0;
                text-align: left;
            }
            .nav-links li {
                display: block;
                width: 100%;
                background: transparent;
                border-radius: 0;
                box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.22);
                border-bottom: none;
                overflow: visible;
                position: relative;
                z-index: 1;
            }
            .nav-links a {
                display: block;
                padding: 18px 24px;
                color: #4B0082;
                font-weight: 700;
                font-size: 1.1rem;
                letter-spacing: 0.02em;
            }
            .nav-links a:hover,
            .nav-links a.selected {
                color: var(--bg-color);
            }
            .nav-accordion-toggle {
                display: flex !important;
                justify-content: space-between;
                align-items: center;
            }
            .chevron {
                display: inline-block;
                font-weight: 400;
                font-size: 1.3rem;
                transition: transform 0.25s ease;
            }
            .nav-dropdown.open .chevron {
                transform: rotate(180deg);
            }
            .mobile-cta-bar {
                display: flex;
                width: 100%;
                background: var(--bg-color);
            }
            .mobile-cta-bar a {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                padding: 20px 10px calc(20px + env(safe-area-inset-bottom, 0px));
                color: #ffffff;
                text-decoration: none;
                font-size: 0.95rem;
            }
            .menu-toggle {
                display: flex;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content h2 {
                font-size: 1.2rem;
            }
            .hero-content h3 {
                font-size: 1.05rem;
            }
            .hero-content h4 {
                font-size: 0.95rem;
            }
            .hero-content > p {
                font-size: 0.9rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            section p {
                font-size: 1.05rem;
            }
            .cta-button {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .rotating-image {
                width: calc(1200px * var(--rotating-scale, 1));
                height: calc(1200px * var(--rotating-scale, 1));
            }

        }

/* Artists dropdown nav item */
@media (min-width: 769px) {
    .mobile-nav-panel {
        display: contents;
    }
    .mobile-cta-bar {
        display: none;
    }
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 769px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        min-width: 170px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
        padding: 8px 0;
        display: none;
        text-align: left;
        z-index: 1001;
    }
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu li {
        display: block;
    }
    .dropdown-menu a {
        display: block;
        padding: 8px 18px;
        color: #4B0082;
        font-size: 1.05rem;
    }
    .dropdown-menu a:hover {
        background: rgba(75, 0, 130, 0.08);
        letter-spacing: normal;
    }
    .chevron {
        display: none;
    }
}
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        flex-direction: column;
        background: var(--bg-color);
    }
    .nav-dropdown.open .dropdown-menu {
        display: flex;
    }
    .dropdown-menu a {
        padding: 14px 24px 14px 40px !important;
        font-size: 1.02rem !important;
        font-weight: 400 !important;
        color: #ffffff !important;
    }
    .nav-dropdown > a {
        padding-bottom: 18px !important;
    }
}

/* Simple placeholder for artist subpages */
.artist-placeholder {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
}
.artist-placeholder h1 {
    font-size: 3rem;
    margin: 0 0 12px;
}
.artist-placeholder p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 480px;
}
.artist-placeholder a {
    color: var(--text-color);
    margin-top: 20px;
    font-size: 1.05rem;
}
.artist-tagline {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-top: 10px;
}
.bio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.bio-grid > p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
}
.facts-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.facts-box .fact-label {
    margin: 0 0 4px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a6bb0;
}
.facts-box .fact-value {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #4B0082;
}
@media (max-width: 768px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.artist-section {
    padding: 56px 20px;
}
