@font-face {
    font-family: BebasNeue;
    src: url(fonts/BebasNeue-Regular.ttf);
}

@font-face {
    font-family: Coolvetica;
    src: url(fonts/coolveticarg.otf);
}

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

/* TEXT DECORATION OVERWRITE */
a:visited {
    text-decoration: none
}

a:focus {
    text-decoration: none
}

a:hover,
a:active {
    text-decoration: none
}



body {
    min-width: auto;
    min-height: 100vh;
    height: auto;
    position: relative;
    display: grid;
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
    background-color: black;
}

/* landing page */

.main-container {
    background: linear-gradient(-25deg, black, #333333);
    display: grid;
    width: 100%;
    height: 100%;
    padding: 0px;
    align-items: center;
    justify-items: center;
}

.main-sub-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.main-color {
    height: auto;
    width: 20px;
    background-color: #ffd100;
}

.main-text {
    font-family: BebasNeue;
    font-size: 23pt;
    padding: 25px;
    display: grid;
    width: 100%;
    height: auto;
    align-items: center;
    justify-items: center;
}

.main-text p {
    font-size: 16pt;
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    align-content: center;
    justify-content: center;
}

.event-item {
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 10px;
    background-color: #ffffff44;
}

.event-item h3 {
    margin: 0;
    color: white;
}

.event-item p {
    margin: 5px 0;
}

.event-item .event-date {
    font-size: 0.9em;
    color: lightgray;
}

#event-list {
    justify-self: center;
    width: 900px;
    max-width: 90vw;
}

.link-button {
    width: 200px;
    height: 60px;
    background-color: #ffd100;
    font-family: BebasNeue;
    color: black;
    font-size: 45px;
    align-content: center;
    justify-content: center;
}

/* AGENDA */

.agenda_title {
    display: grid;
    position: relative;
    justify-content: center;
    bottom: 0;
    height: 48px;
}

.events-container {
    background: url(assets/transparent/diagmonds.png);
    background-size: 80px;
    background-color: #121212;
    perspective: 800px;
    display: grid;
    width: 100%;
    height: auto;
    justify-items: center;
}

.events-sub-container {
    margin: none;
    justify-items: center;
    z-index: 0;
    display: grid;
    backdrop-filter: blur(30px);
    margin: 30px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: 0.1s ease;
    padding: 10px;
}

.events_agenda {
    position: relative;
    border-top: 1px white solid;
    display: flex;
    flex-direction: column;
    font-size: 13pt;
    width: 500px;
    max-width: 90vw;
    height: auto;
}

.events_none_message {
    font-size: 8pt;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    display: grid;
    justify-content: center;
}

.event_agenda {
    border-bottom: 1px white solid;
    border-top: none;
    flex: 1;
    font-family: Coolvetica;
    display: flex;
    flex-direction: row;
    justify-items: flex-start;
    height: auto;
    min-height: 70px;
}

.event_content_agenda {
    flex: 2;
    display: flex;
    flex-direction: row;
}

.event_left_agenda {
    padding: 15px;
    flex: 1;
    height: auto;

}

.event_right_agenda {
    padding: 15px;
    flex: 1;
}

.event_timeline_agenda {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-content: center;
    flex: 1;
    margin-right: 0;
    margin-left: auto;
}

.timeline_container {
    position: relative;
    display: grid;
    justify-items: center;
    width: 12px;
}

.timeline_event {
    justify-self: center;
    flex: 1;
    height: 100%;
    background: white;
    width: 5px;
}

.timeline_event_circle {
    position: absolute;
    height: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: white;
    transform: translate(-25%, -25%);
    margin-top: 50px;
}

.event_image_agenda {
    background-color: black;
    object-fit: contain;
    width: 100%;
    min-width: 70px;
    aspect-ratio: 1;
}

.event_sub_item_agenda {
    width: 100%;
    font-size: min(12pt, 3vw);
}

.event_title_agenda {
    font-weight: bold;
    font-size: min(16pt, 4vw);
}

.event_date_agenda {
    margin-top: 45px;
    font-size: 10pt;
    flex: 4;
}


/* FILE UPLOAD SECTION */

.file-upload {
    display: flex;
    margin: auto;
    align-items: center;
    gap: 10px;
    background: #222222;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #444;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.file-upload:hover {
    border-color: #007bff;
}

.file-upload button {
    background: #ffd100;
    color: black;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.file-upload button:hover {
    background: #0056b3;
}

.file-name {
    color: #555;
    font-size: 14px;
}

.fileInput {
    display: none;
    visibility: hidden;
}

/* END OF FILE UPLOAD SECTION */

.message_container {
    pointer-events: none;
    display: grid;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-items: center;
    align-items: baseline;
}

.page_title {
    margin: 0px;
    padding: 10px;
}

button,
select {
    font-family: BebasNeue;
    background-color: #ffd100;
    color: black;
    border: none;
    border-radius: 4px;
}

option {
    font-family: BebasNeue;
    background-color: #ffd100;
    color: black;
}

input,
textarea {
    background-color: #242424;
    border: none;
    border-radius: 4px;
    color: white;
}

.eventeditor_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    gap: 50px;
    margin-bottom: 50px;
}

.eventeditor_topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    gap: 35px;
    height: 30px;
}

.signout {
    position: relative;
    height: 30px;
    align-content: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 35px;
}

.form_container {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
    gap: 25px;
    padding: 10px;
    background-color: #363636;
    border-radius: 16px;
}

.event_title {
    font-size: 24pt;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    text-align: center;
}

.event_form {
    background-color: #222222;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.item_container {
    border-radius: 8px;
    padding: 15px;
    background-color: #151515;
    gap: 25px;
    display: flex;
    flex-direction: column;
}

.sub_container {
    height: 100%;
    flex: 1;
    display: grid;
    align-items: center;
    gap: 15px;
}

.item {
    height: 100%;
}

.submit {
    width: 100%;
    height: 100%;
}

.status {
    display: none;
    padding: 10px;
    color: white;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.fade-out {
    animation: fade 1s ease;
}

.all_edits {
    display: flex;
    flex-direction: column;
    height: auto;
    width: auto;
    align-items: center;
    gap: 25px;
    padding: 10px;
    background-color: #363636;
    border-radius: 16px;
}

.item_label {
    display: grid;
    width: auto;
    justify-content: center;
}

.all_edits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.delete {
    background-color: red;
    color: white;
}

@keyframes fade {
    to {
        opacity: 0;
    }
}

/* HOME */

/* TUNRTABLE SIZE */

:root {
    --turntable-size: 400px;
}

.home-main {
    z-index: 0;
    overflow-x: hidden;
    background: url(assets/transparent/diagmonds.png);
    /* Free noise texture */
    background-size: 80px;
    background-color: #121212;
    perspective: 800px;
    font-family: BebasNeue;
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
}

/* HOME MAIN CONTACT */

.main_contact {
    position: absolute;
    width: 800px;
    height: 600px;
    max-width: 90vw;
    max-height: 80vh;
    backdrop-filter: blur(10px);
    opacity: 1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
}

/*///////////////////*/

.home-neumorph-container {
    z-index: 0;
    display: grid;
    background: black;
    width: var(--turntable-size);
    height: var(--turntable-size);
    transform: rotateX(45deg);
    transform-style: preserve-3d;
    box-shadow: 0px 3px 8px rgba(255, 255, 255, 0.8),
        0px 9px 18px rgb(255, 213, 0),
        0px 12px 24px rgba(255, 222, 59, 0.4),
        inset 0px -2px 4px rgba(255, 162, 0, .66);
    /* animation: 4s pulse-home-neumorph ease infinite; */
    border-radius: 15px;
    transition: 0.1s ease;
}

.turntable_leg {
    position: absolute;
    width: 10%;
    aspect-ratio: .6666;
    background: #111111;
    transform: translateZ(-30px);
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.turntable_leg_left {
    z-index: -10;
    bottom: 0;
    left: 0;
}

.turntable_leg_right {
    bottom: 0;
    right: 0;
}

.home-neumorph {
    z-index: 0;
    background: radial-gradient(circle at 80% 0%, #ffffff44, #ffffff11);
    position: relative;
    background-color: black;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 100%;
    height: 100%;
    align-items: center;
    color: #333;
    transform-style: preserve-3d;
    transition: 0.1s ease;
    transform: translateZ(10px);
}

.home-neumorph::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(data:image/png;base64,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);
    background-size: 1000% 50%;
    opacity: .45;
    background-color: transparent;
}

@keyframes pulse-home-neumorph {
    0% {
        box-shadow: 0px 3px 8px rgba(255, 255, 255, 0.8),
            0px 9px 18px rgb(255, 213, 0),
            0px 12px 24px rgba(255, 222, 59, 0.4);
    }

    50% {
        box-shadow: 0px 3px 4px rgba(255, 255, 255, 0.8),
            0px 9px 9px rgb(255, 213, 0),
            0px 12px 12px rgba(255, 222, 59, 0.4);
    }

    100% {
        box-shadow: 0px 3px 8px rgba(255, 255, 255, 0.8),
            0px 9px 18px rgb(255, 213, 0),
            0px 12px 24px rgba(255, 222, 59, 0.4);
    }
}

.home-navbar {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    transform: rotateX(20deg);
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.home-navbar-link-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.home-navbar-logo-container {
    position: absolute;
    left: 50px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
    transform-style: flat;
}

/* HOMEBUTTON */

.home-button {
    transform: translateZ(5px);
    position: relative;
    display: grid;
    position: relative;
    background: #111111;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    width: 85px;
    height: 40px;
    font-size: 16px;
    color: #aaa;
    align-content: center;
    justify-content: center;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
    transition: 0.3s ease;
}

.home-button:hover {
    box-shadow: inset 4px 4px 20px rgba(255, 255, 255, 0.15),
        4px 4px 4px rgba(0, 0, 0, 0.5),
        -4px -4px 4px rgba(255, 255, 255, 0.03);
    color: #e6e6e6;
}

.home-button:active {
    box-shadow: inset 2px 2px 10px rgba(255, 255, 255, 0.15),
        2px 2px 2px rgba(0, 0, 0, 0.5),
        -2px -2px 2px rgba(255, 255, 255, 0.03);
    color: #ffd100;
    transform: translateZ(0px);
}

/* END HOMEBUTTON */

.home-play {
    transform: translateZ(5px);
    z-index: 1;
    display: grid;
    position: relative;
    background: red;
    border: none;
    border-radius: 25px;
    padding: 25px 25px;
    font-size: 16px;
    color: #aaa;
    box-shadow:
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.07),
        0px 0px 6px rgba(255, 0, 0, .5);
    transition: all 0.85s ease;
    transform-style: preserve-3d;
}

.home-play::after {
    transform: translateZ(2px);
    pointer-events: none;
    content: 'START';
    align-content: center;
    z-index: 1;
    display: grid;
    position: absolute;
    background: #111111;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: rgba(255, 85, 85, 1);
    box-shadow:
        inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.07);
    transition: all .85s ease;
    top: 2px;
    left: 2px;
    width: calc(100% + -4px);
    height: calc(100% + -4px);
}

.home-play:hover {
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5),
        -3px -3px 4px rgba(255, 255, 255, 0.05);
    color: #c9c9c9;
}

.home-play:active {
    transform: translateZ(0px);
    transition: none;
    background: rgb(0, 255, 0);
    transition: 0.3s ease;
}

.home-play:active::after {
    box-shadow:
        inset 2px 2px 10px rgba(255, 255, 255, 0.15),
        0px 0px 16px rgb(164, 255, 164),
        0px 0px 8px rgb(0, 255, 0),
        0px 0px 32px rgb(0, 255, 0);
    transition: none;
    transition: 0.3s ease;
    color: rgb(0, 255, 0);
}

/*
.home-cue {
    transform: translateZ(15px);
    z-index: 1;
    display: grid;
    position: relative;
    background: orange;
    border: none;
    border-radius: 25px;
    padding: 25px 25px;
    font-size: 16px;
    color: #aaa;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
}

.home-cue::after {
    pointer-events: none;
    content: 'CUE';
    align-content: center;
    z-index: 1;
    display: grid;
    position: absolute;
    background: #111111;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: rgba(255, 160, 85, 1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    top: 2px;
    left: 2px;
    width: calc(100% + -4px);
    height: calc(100% + -4px);
}

.home-cue:hover {
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5),
        -3px -3px 4px rgba(255, 255, 255, 0.05);
    color: #c9c9c9;
}

.home-cue:active {
    background: lightgreen;
}

.home-cue:active::after {
    box-shadow: 0px 0px 16px lightgreen;
    color: rgb(185, 245, 185);
}
    */


/* TURNTABLE */
.turntable-container {
    display: flex;
    flex-direction: column;
    flex: 7;
    height: 100%;
    width: 100%;
    position: relative;
    gap: min(.5vh, .5vw);
    align-items: center;
    align-self: baseline;
    transform-style: preserve-3d;
}

.turntable {
    flex: 5;
    transform: translateZ(5px);
    display: grid;
    top: 5%;
    aspect-ratio: 1;
    background-color: #333;
    border-radius: 50%;
    position: relative;
    justify-items: center;
    align-items: center;
    transform-style: preserve-3d;
}

.turntable_underlay {
    display: grid;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: transparent;
    border-radius: 50%;
    justify-items: center;
    align-self: baseline;
    justify-self: center;
    align-items: center;
    transform-style: preserve-3d;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.vinyl_underlay {
    opacity: 0;
    z-index: 10000;
    box-sizing: border-box;
    display: grid;
    width: 80.91%;
    height: 80.91%;
    border-radius: 50%;
    position: absolute;
    justify-items: center;
    align-self: center;
    justify-self: center;
    align-items: center;
    transform-style: preserve-3d;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.turntable-platter {
    display: grid;
    position: relative;
    width: 93%;
    height: 93%;
    border-radius: 50%;
    background-color: #000;
    background:
        radial-gradient(circle, rgba(0, 0, 0, 01) 0%, rgba(0, 0, 0, 0.5) 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 3px, rgba(0, 0, 0, 0.02) 3px, rgba(0, 0, 0, 0.02) 6px),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 3px, rgba(0, 0, 0, 0.02) 3px, rgba(0, 0, 0, 0.02) 6px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 3px, rgba(0, 0, 0, 0.02) 3px, rgba(0, 0, 0, 0.02) 6px);
    background-blend-mode: overlay;
    align-items: center;
    justify-items: center;
    transform-style: preserve-3d;
}

.turntable-vinyl {
    transform: translateZ(100vh);
    display: grid;
    aspect-ratio: 1;
    border-radius: 50%;
    width: 87%;
    height: 87%;
    position: absolute;
    background-color: black;
    transform-style: preserve-3d;
    transform-origin: center;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
    transition: all .3s ease;
    mask-image: radial-gradient(circle, transparent 10px, black 10px);
}

.turntable-vinyl:hover {
    transform: translateZ(2px);
    box-shadow:
        inset 4px 4px 20px rgba(255, 255, 255, 0.15),
        4px 4px 4px rgba(0, 0, 0, 0.5),
        -4px -4px 4px rgba(255, 255, 255, 0.03);

}

.turntable-vinyl-overlay {
    z-index: -1;
    transform: none;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #00000000, #ffffff22);
    position: absolute;
    transition: all 2s ease;
    mask-image: radial-gradient(circle, transparent 10px, black 10px);
    transform-style: preserve-3d;
}

.turntable-vinyl-overlay2 {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(transparent, transparent, #ffffff22, transparent, transparent 1.98%);
    position: absolute;
    transition: all 2s ease;
    mask-image: radial-gradient(circle, transparent 20%, black 20%);
}

.turntable-vinyl-overlay3 {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-conic-gradient(#00000033 0%, #00000033 6%, transparent 15%, #00000033 27%, #00000033 33%);
    position: absolute;
    transition: all 2s ease;
    mask-image: radial-gradient(circle, transparent 4.5%, black 4.5%);
}

.volume_knob {
    transform: translateZ(0px);
    position: relative;
    width: 12%;
    aspect-ratio: 1;
    background:
        linear-gradient(to right, #444444, white, black, black),
        repeating-linear-gradient(to right, black 0%, #444444 2%, black 4%);
    background-blend-mode: multiply;
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 1),
        -4px -4px 8px rgba(255, 255, 255, 0.1);
}

.volume_knob_top {
    display: grid;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
    transform: translateZ(5px);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: black;
    pointer-events: none;
}

.volume_knob_top_overlay {
    display: grid;
    width: 100%;
    height: 100%;
    justify-items: center;
    transform: rotate(120deg);
}

.volume_knob_top_overlay_line {
    width: 2.5%;
    height: 25%;
    background: #545454;
    border-radius: .5px;
}

.turnarm_base1 {
    display: grid;
    width: 20%;
    height: 20%;
    aspect-ratio: 1;
    background: #333333;
    transform-origin: top right;
    transform: translateZ(5px) rotate(20deg);
    position: absolute;
    right: -20px;
    top: 0px;
    border-radius: 50%;
    transform-style: preserve-3d;
    align-items: center;
    justify-items: center;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.turnarm_base2 {
    display: grid;
    align-items: center;
    justify-items: center;
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: #333333;
    transform: translateZ(5px);
    transform-style: preserve-3d;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.turnarm_base3 {
    display: grid;
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: #333333;
    transform: translateZ(5px);
    transform-style: preserve-3d;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.turntable_arm_underlay {
    display: grid;
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateX(-55%) translateY(-20%) translateZ(5px) rotate(-40deg);
    transition: transform 2s ease;
    background-color: #2a2a2a;
    mask: url(assets/svg/turntable_arm_underlay.svg);
    -webkit-mask: url(assets/svg/turntable_arm_underlay.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transform-style: preserve-3d;
    transform-origin: 83% 25%;
}

.turntable_arm {
    display: grid;
    position: absolute;
    width: 400%;
    height: 600%;
    transform: translateX(-55%) translateY(-20%) translateZ(.5vw) rotate(-40deg);
    transition: transform 2s ease;
    background: white;
    filter: invert(11%) sepia(51%) saturate(0%) hue-rotate(234deg) brightness(93%) contrast(94%);
    background: radial-gradient(circle at 80% 0%, #ffffff44, #ffffff11);
    background-color: #222222;
    mask: url(assets/svg/turntable_arm.svg);
    -webkit-mask: url(assets/svg/turntable_arm.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transform-style: preserve-3d;
    transform-origin: 83% 25%;
}

.turntable_arm::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,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);
    background-size: 1000% 50%;
}

.button-row-turntable {
    flex: 1;
    width: auto;
    height: auto;
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    align-items: end;
    transform-style: preserve-3d;
}

.play-pause {
    width: 20%;
    height: 50%;
    aspect-ratio: 1;
    position: relative;
    font-size: 10pt;
}

.play-33rpm,
.play-45rpm {
    position: relative;
    width: 20%;
    padding: 10px 10px;
    transition: all 1s ease;
    height: 50%;
    aspect-ratio: 1;
    font-size: 10pt;
    border-radius: 25%/50%;
}

.play-33rpm_sub,
.play-45rpm_sub {
    top: 0;
    left: 0;
    border-radius: 25%/50%;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.vinyl-center-color {
    z-index: 100;
    transform: translateZ(1px);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background-color: #f00;
    position: absolute;
    mask-image: radial-gradient(circle, transparent 10%, black 10%);
}

.vinyl-center {
    transform-style: preserve-3d;
    width: 5%;
    height: 5%;
    border-radius: 50%;
    position: absolute;
    background:
        repeating-conic-gradient(#00000033 0%, #00000033 6%, transparent 15%, #00000033 27%, #00000033 33%),
        #999999;
}

.vinyl-center_up {
    width: 100%;
    height: 100%;
    transform: translateZ(3px);
    background:
        repeating-conic-gradient(#00000033 0%, #00000033 6%, transparent 15%, #00000033 27%, #00000033 33%),
        white;
}

@keyframes spin {
    from {
        transform: rotate(0deg) translateZ(2px);
    }

    to {
        transform: rotate(-360deg) translateZ(2px);
    }
}

@keyframes anti-spin {
    from {
        transform: rotate(0deg) translateZ(2px);
    }

    to {
        transform: rotate(360deg) translateZ(2px);
    }
}

.turntable-eq {
    padding: min(2vw, 2vh) min(1vw, 1vh);
    display: flex;
    flex-direction: row;
    position: relative;
    flex: 1;
    height: 100%;
    background-color: #151515;
    border-radius: min(2vw, 2vh);
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.volume-steps {
    display: flex;
    flex-direction: column;
    padding: 2px;
    gap: 4%;
    position: relative;
    border-radius: 15px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.volume-bar {
    position: absolute;
    height: 0%;
    background-color: #ffffff;
    width: 100%;
    bottom: 0;
}

.volume-step {
    opacity: 1;
    border-radius: 15px;
    width: 100%;
    height: 5%;
    /* Each step is 20% of the height */
    background-color: #666;
    transition: background-color 0.1s ease-in-out;
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, .5),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, .3);
}