:root {
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.12);
    --safe-x: max(0px, env(safe-area-inset-left, 0px));
    --safe-r: max(0px, env(safe-area-inset-right, 0px));
    --safe-t: max(0px, env(safe-area-inset-top, 0px));
    --safe-b: max(0px, env(safe-area-inset-bottom, 0px));
    --beat: 0;
    --accent-red: #ff2a2a;
}

html {
    height: 100%;
    color-scheme: dark;
}

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

body {
    font-family: "Lexend", sans-serif;
    color: var(--text-main);
    min-height: 100dvh;
    overflow: hidden;
    background-color: #020202;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(255, 25, 25, 0.11), transparent 35%),
        radial-gradient(circle at 80% 82%, rgba(120, 190, 255, 0.1), transparent 34%);
    transition: background-image 0.35s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(460px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.09), transparent 48%),
        radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 40, 40, 0.08), transparent 52%);
    transition: opacity 0.2s ease;
}

.fx-layer {
    position: fixed;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.shockwave {
    position: absolute;
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-top: -9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.35), inset 0 0 20px rgba(255, 70, 70, 0.18);
    animation: shockwave 0.68s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

@keyframes shockwave {
    0% { transform: scale(0.3); opacity: 0.85; }
    100% { transform: scale(13); opacity: 0; }
}

.mode-toast {
    position: fixed;
    right: max(18px, calc(var(--safe-r) + 8px));
    bottom: max(18px, calc(var(--safe-b) + 8px));
    z-index: 110;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 10, 10, 0.75);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.mode-toast.show {
    opacity: 1;
    transform: translateY(0);
}

body.glitch-burst .profile-card {
    animation: glitch-card 0.55s steps(2, end);
}

body.glitch-burst .entry-brand-title,
body.glitch-burst .name {
    text-shadow:
        -2px 0 rgba(255, 0, 0, 0.7),
        2px 0 rgba(0, 180, 255, 0.7),
        0 0 10px rgba(255, 255, 255, 0.35);
}

@keyframes glitch-card {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, -2px); }
    100% { transform: translate(0, 0); }
}

#star-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
    z-index: 3;
    pointer-events: none;
}

.bg-overlay::before {
    content: none;
}

.ambient-orb {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--s, 34px);
    height: var(--s, 34px);
    border-radius: 999px;
    opacity: var(--o, 0.2);
    filter: blur(14px);
    transform: translate3d(var(--x, 50vw), var(--y, 50vh), 0);
}

.ambient-orb.is-blue {
    background: radial-gradient(circle at 30% 30%, rgba(96, 188, 255, 0.92), rgba(96, 188, 255, 0.1) 65%, transparent 100%);
}

.ambient-orb.is-yellow {
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 80, 0.9), rgba(255, 215, 80, 0.1) 65%, transparent 100%);
}

body.mode-switch-hit .main-container,
body.mode-switch-hit #entry-screen {
    animation: mode-shake 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.mode-switch-hit #star-canvas {
    animation: stars-shake 380ms ease-out;
}

@keyframes mode-shake {
    0% { transform: translate3d(0, 0, 0); }
    20% { transform: translate3d(-4px, 2px, 0); }
    40% { transform: translate3d(4px, -2px, 0); }
    60% { transform: translate3d(-2px, -1px, 0); }
    80% { transform: translate3d(2px, 1px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes stars-shake {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    30% { transform: translate3d(-6px, 3px, 0) scale(1.02); }
    65% { transform: translate3d(6px, -3px, 0) scale(1.02); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

.cursor-dot,
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 999px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    box-shadow: 0 0 14px #fff;
}

.cursor-trail {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s;
}

#entry-screen {
    --entry-rx: 0deg;
    --entry-ry: 0deg;
    position: fixed;
    inset: 0;
    background: #030303;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 60;
    perspective: 1200px;
    transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.05s ease, filter 1.05s ease;
}

#entry-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
}

.entry-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.15rem, 4vw, 1.75rem);
    max-width: min(980px, calc(100vw - var(--safe-x) - var(--safe-r) - 24px));
    padding-inline: max(var(--safe-x), 12px) max(var(--safe-r), 12px);
    padding-block: max(8px, var(--safe-t)) max(10px, var(--safe-b));
}

.entry-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.2rem, 1.2vw, 0.45rem);
    width: 100%;
    transform: rotateX(var(--entry-rx)) rotateY(var(--entry-ry)) translateZ(0);
    transition: transform 0.18s ease-out, opacity 0.75s ease, filter 0.75s ease;
    will-change: transform, opacity, filter;
    opacity: 0;
    filter: blur(8px);
}

.entry-album-image {
    width: clamp(120px, 16vw, 180px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    transform: translateZ(0);
    transition: transform 0.24s ease, opacity 0.5s ease, filter 0.5s ease;
    opacity: 0;
    filter: blur(8px);
}

.entry-brand-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.85),
        0 0 16px rgba(255, 255, 255, 0.2);
}

.entry-brand-red {
    color: #ff2424;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.85),
        0 0 calc(14px + 18px * var(--beat)) rgba(255, 45, 45, calc(0.45 + 0.4 * var(--beat)));
}

.entry-brand-subtitle {
    margin-top: -0.15em;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(0.85rem, 2.6vw, 1.7rem);
    letter-spacing: 0.04em;
    color: #f3f3f3;
    text-transform: lowercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.95), 0 0 8px rgba(255, 255, 255, 0.18);
}

.click-text {
    font-size: clamp(0.82rem, 2.8vw, 1rem);
    letter-spacing: clamp(2px, 0.6vw, 4px);
    text-transform: uppercase;
    animation: pulse-text 2s infinite;
    color: #f1f1f1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes pulse-text {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

.playing-notice {
    position: fixed;
    top: max(14px, calc(var(--safe-t) + 8px));
    left: max(14px, calc(var(--safe-x) + 8px));
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    max-width: min(330px, calc(100vw - var(--safe-x) - var(--safe-r) - 24px));
    background: rgba(12, 12, 12, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 0.78rem;
    color: #e8e8e8;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.playing-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.playing-notice.is-error {
    border-color: rgba(255, 120, 90, 0.45);
}

.playing-notice[hidden] {
    display: none !important;
}

.playing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3dff7a;
    box-shadow: 0 0 10px rgba(61, 255, 122, 0.7);
    animation: playing-pulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes playing-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.92);
    }
}

.playing-notice .playing-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.playing-notice .playing-track {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    padding-inline: max(var(--safe-x), 12px) max(var(--safe-r), 12px);
    padding-bottom: calc(max(12px, var(--safe-b)) + 2.75rem);
    opacity: 0;
    transform: translateY(45px) scale(0.93);
    filter: blur(14px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
    position: relative;
    z-index: 5;
}

.main-container.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

body.page-ready .entry-brand-row {
    opacity: 1;
    filter: blur(0);
}

body.page-ready .entry-album-image {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

body.page-ready .click-text {
    opacity: 1;
    transform: translateY(0);
}

#entry-screen.is-exiting .entry-brand-row {
    transform: rotateX(var(--entry-rx)) rotateY(var(--entry-ry)) translateY(-12px) scale(1.1);
    opacity: 0;
    filter: blur(6px) brightness(0.9);
}

#entry-screen.is-exiting .entry-album-image {
    transform: translateY(-8px) scale(1.34);
    opacity: 0;
    filter: blur(10px) brightness(0.35);
}

#entry-screen.is-exiting::after {
    opacity: 1;
}

#entry-screen.is-exiting .click-text {
    opacity: 0;
    transform: translateY(14px);
}

.profile-card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 50%;
    width: 100%;
    max-width: min(620px, 100%);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: clamp(1.4rem, 3.8vw, 2rem) clamp(1rem, 3.2vw, 1.35rem);
    text-align: center;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
    filter: saturate(calc(1 + 0.2 * var(--beat)));
}

.profile-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(340px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 45%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.profile-card::before {
    content: "";
    position: absolute;
    inset: -18%;
    pointer-events: none;
    border-radius: 36px;
    opacity: 0.38;
    z-index: 0;
    background:
        radial-gradient(45% 38% at 22% 26%, rgba(255, 36, 36, 0.2), transparent 70%),
        radial-gradient(42% 40% at 82% 75%, rgba(52, 156, 255, 0.18), transparent 72%),
        conic-gradient(from 120deg at 50% 50%, rgba(255, 60, 60, 0.12), rgba(49, 137, 255, 0.1), rgba(255, 60, 60, 0.12));
    filter: blur(24px) saturate(1.05);
    animation: synth-drift 16s ease-in-out infinite;
}

@keyframes synth-drift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        opacity: 0.34;
    }
    50% {
        transform: translate3d(1.5%, -1.2%, 0) rotate(7deg) scale(1.04);
        opacity: 0.48;
    }
}

.profile-card.is-active {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.68),
        0 0 calc(22px + 26px * var(--beat)) rgba(255, 45, 45, calc(0.14 + 0.45 * var(--beat))),
        inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.profile-card.is-active::after {
    opacity: 1;
}

.profile-card > * {
    position: relative;
    z-index: 1;
}

.avatar-container {
    width: 112px;
    height: 112px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 3px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-container:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.name {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 45, 45, 0.16);
}

.role-title {
    margin-top: -0.15rem;
    margin-bottom: 0.9rem;
    font-size: clamp(0.78rem, 2.4vw, 0.95rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ddd;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.links {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transform: translate3d(var(--btn-tx, 0px), var(--btn-ty, 0px), 0);
    transition: transform 0.16s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.link-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
    transition: left 0.42s ease;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translate3d(var(--btn-tx, 0px), calc(-3px + var(--btn-ty, 0px)), 0) scale(1.01);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.link-btn:hover::before {
    left: 130%;
}

.link-btn:active {
    transform: translate3d(var(--btn-tx, 0px), var(--btn-ty, 0px), 0) scale(0.98);
}

body.rage-mode {
    --accent-red: #ff0000;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(255, 0, 0, 0.16), transparent 36%),
        radial-gradient(circle at 80% 82%, rgba(255, 40, 40, 0.12), transparent 34%);
}

body.rage-mode .profile-card.is-active {
    box-shadow:
        0 30px 76px rgba(0, 0, 0, 0.72),
        0 0 calc(30px + 36px * var(--beat)) rgba(255, 0, 0, calc(0.28 + 0.5 * var(--beat))),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.rage-mode .profile-card {
    animation: trippy-float 8s ease-in-out infinite;
}

body.rage-mode .profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.34;
    box-shadow:
        -10px 0 28px rgba(255, 0, 0, 0.22),
        10px 0 28px rgba(0, 170, 255, 0.2);
    animation: trippy-ghost 4.6s ease-in-out infinite;
}

body.rage-mode .name,
body.rage-mode .role-title {
    animation: trippy-text 3.8s ease-in-out infinite;
}

body.rage-mode #star-canvas {
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.24)) saturate(1.2);
    animation: quake-canvas 0.12s steps(2, end) infinite;
}

@keyframes trippy-float {
    0%, 100% { transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0px); }
    50% { transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px) scale(1.008); }
}

@keyframes trippy-ghost {
    0%, 100% { transform: translateX(-4px) scale(1.004); opacity: 0.3; }
    50% { transform: translateX(5px) scale(1.01); opacity: 0.48; }
}

@keyframes trippy-text {
    0%, 100% {
        text-shadow:
            -1px 0 rgba(255, 0, 0, 0.55),
            1px 0 rgba(0, 180, 255, 0.45),
            0 0 14px rgba(255, 255, 255, 0.25);
    }
    50% {
        text-shadow:
            -2px 0 rgba(255, 0, 0, 0.7),
            2px 0 rgba(0, 180, 255, 0.6),
            0 0 18px rgba(255, 255, 255, 0.32);
    }
}

@keyframes quake-canvas {
    0% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(-3px, 2px, 0); }
    50% { transform: translate3d(3px, -2px, 0); }
    75% { transform: translate3d(-2px, -1px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.client-logo-link {
    position: fixed;
    top: max(16px, calc(var(--safe-t) + 8px));
    right: max(16px, calc(var(--safe-r) + 8px));
    z-index: 90;
    display: inline-flex;
    width: clamp(50px, 8.3vw, 68px);
    height: clamp(50px, 8.3vw, 68px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.client-logo-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 95%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.5s ease;
}

.client-logo-link:hover {
    transform: translateY(-2px) scale(1.07);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.client-logo-link:hover::before {
    left: 150%;
}

.client-logo-link:active {
    transform: scale(0.97);
}

.client-logo-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    padding: 0.65rem max(var(--safe-x), 16px) max(0.75rem, var(--safe-b));
    text-align: center;
    font-size: clamp(0.65rem, 1.9vw, 0.76rem);
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(180, 180, 180, 0.55);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    pointer-events: none;
}

@media (max-width: 740px) {
    .entry-brand-title {
        letter-spacing: 0.03em;
    }
}

@media (max-width: 768px) {
    .cursor-dot,
    .cursor-trail {
        display: none;
    }

    * {
        cursor: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .click-text,
    .playing-dot {
        animation: none;
    }

    .main-container,
    #entry-screen,
    .playing-notice,
    .link-btn,
    .client-logo-link,
    .avatar-container {
        transition-duration: 0.01ms;
    }

    #entry-screen::after,
    .entry-brand-row,
    .entry-album-image {
        transition-duration: 0.01ms;
    }
}
