* {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    --energy-blue: #00ffff;
    --energy-blue-dark: #0080aa;
    --energy-blue-glow: rgba(0, 255, 255, 0.4);
    --mouse-x: -1000px;
    --mouse-y: -1000px;
}

body {
    opacity: 0%;
    transition: opacity 1s ease-in-out;
}

a {
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: radial-gradient(circle 150px at var(--rel-x, -1000px) var(--rel-y, -1000px),
            var(--energy-blue) 0%,
            var(--energy-blue-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: var(--energy-blue-dark);
}

h1 a,
h2 a,
.titlename a {
    color: inherit;
    -webkit-text-fill-color: inherit;
    background: transparent;
    display: inline;
    text-decoration: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

h1,
h2,
.titlename {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;

    /* Reactive gradient setup */
    background: radial-gradient(circle 300px at var(--rel-x, -1000px) var(--rel-y, -1000px),
            var(--energy-blue) 0%,
            #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

h1:has(a),
h2:has(a),
.titlename:has(a) {
    transition: transform 0.2s ease-in-out;
    transform-origin: left;
}

h1:has(a):hover,
h2:has(a):hover,
.titlename:has(a):hover {
    transform: rotate(-2deg);
}

audio {
    padding: 10px 0 10px 10px;
    width: 100%;
    display: block;
    box-sizing: border-box
}

a:has(.icon) {
    text-decoration: none;
}

.icon {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    color: #333;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.icon:hover {
    transform: scale(1.1);
}

.arrow {
    border-radius: 100%;
    background-color: #eee;
    position: absolute;
    z-index: 10;
    width: 30px;
    height: 30px;
    top: 80px;
    margin: 0;
    padding: 10px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, .3);
    cursor: pointer;
}

.sounds-title-container {
    height: 100%;
    margin: auto;
}

.sounds-title-container p {
    margin: 0 5px 0 0;
    vertical-align: middle;
    text-align: right;
}

.sounds-subtitle {
    font-size: 12px;
}

.visible {
    opacity: 1 !important;
}

#previous {
    left: 10px;
}

#next {
    right: -10px;
}

#music-overlay {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 100%;
    height: 200px;
    z-index: 5;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

#content {
    padding: 15px;
}

#featured-performance {
    margin: 0;
    align-self: center;
}