:root {
    color-scheme: dark;
    --bg: #0f172a;
    --panel: rgba(30, 41, 59, 0.72);
    --panel-strong: rgba(15, 23, 42, 0.86);
    --primary: #6366f1;
    --accent: #a78bfa;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --success: #22c55e;
    --line: rgba(226, 232, 240, 0.12);
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 50% -12%, rgba(99, 102, 241, 0.44), transparent 34rem),
        radial-gradient(circle at 0% 88%, rgba(167, 139, 250, 0.22), transparent 26rem),
        linear-gradient(160deg, #0f172a 0%, #111827 48%, #1e1b4b 100%);
    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

button,
a,
label {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

.app-shell {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 100dvh;
    margin: 0 auto;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.82)),
        rgba(15, 23, 42, 0.82);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.screen {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    padding: max(28px, env(safe-area-inset-top)) 24px max(26px, env(safe-area-inset-bottom));
}

.fade-screen {
    animation: fadeUp 520ms ease both;
}

.screen-entry,
.auth-screen,
.screen-onboarding,
.screen-player {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.screen-dashboard {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.screen-secondary {
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    gap: 24px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.entry-content {
    display: grid;
    place-items: center;
    flex: 1;
    text-align: center;
}

.breath-field {
    position: relative;
    display: grid;
    place-items: center;
    width: 228px;
    aspect-ratio: 1;
    margin-bottom: 34px;
}

.breath-field.small {
    width: 154px;
    margin: 0 auto 28px;
}

.breath-ring,
.breath-core {
    position: absolute;
    border-radius: 999px;
}

.breath-ring {
    inset: 12px;
    border: 1px solid rgba(226, 232, 240, 0.2);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), rgba(167, 139, 250, 0.03) 56%, transparent);
    animation: breathe 5.6s ease-in-out infinite;
}

.breath-ring-two {
    inset: 36px;
    animation-delay: 1.4s;
}

.breath-core {
    width: 74px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(167, 139, 250, 0.9));
    box-shadow: 0 0 42px rgba(99, 102, 241, 0.45);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Poppins, Inter, sans-serif;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 14px;
    font-size: clamp(2.35rem, 15vw, 4.3rem);
    line-height: 1.02;
}

.screen-header h1,
.auth-card h1,
.player-copy h1 {
    font-size: 2.15rem;
    line-height: 1.08;
}

.lead {
    max-width: 280px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.6;
}

.screen-action {
    display: grid;
    gap: 18px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:active,
.choice-card:active,
.list-option:active,
.player-control:active {
    transform: scale(0.95);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 18px 42px rgba(99, 102, 241, 0.34);
}

.install-prompt {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    left: max(18px, env(safe-area-inset-left));
    z-index: 20;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    max-width: 384px;
    min-height: 72px;
    margin: 0 auto;
    padding: 12px;
    border: 1px solid rgba(226, 232, 240, 0.18);
    border-radius: 18px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.install-prompt[hidden] {
    display: none;
}

.install-prompt img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.install-prompt strong,
.install-prompt span {
    display: block;
}

.install-prompt strong {
    font-size: 0.98rem;
}

.install-prompt span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.install-prompt button {
    min-width: 72px;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    background: #fbbf24;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 800;
}

.btn-secondary {
    color: var(--text);
    background: rgba(226, 232, 240, 0.1);
    border: 1px solid var(--line);
}

.btn:disabled,
.btn-locked {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

.text-link {
    color: var(--muted);
    font-size: 0.94rem;
}

.flow-form {
    position: relative;
    display: flex;
    min-height: calc(100dvh - 56px);
    flex-direction: column;
}

.flow-step {
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.flow-step.is-active {
    display: flex;
    animation: fadeUp 420ms ease both;
}

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

.screen-header.align-left {
    text-align: left;
}

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

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

.choice-card,
.list-option,
.reminder-card,
.auth-card,
.daily-card,
.mini-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.68));
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.choice-card {
    position: relative;
    display: grid;
    min-height: 128px;
    place-items: center;
    gap: 10px;
    padding: 18px 12px;
    border-radius: 22px;
    color: var(--text);
    text-align: center;
    cursor: pointer;
    transition: border 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-card.compact {
    min-height: 96px;
    grid-template-columns: 54px 1fr;
    justify-items: start;
    text-align: left;
}

.choice-card input,
.list-option input,
.switch-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-icon {
    display: grid;
    width: 50px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    font-size: 1.45rem;
    background: rgba(99, 102, 241, 0.16);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.1);
}

.choice-card:has(input:checked),
.list-option:has(input:checked) {
    border-color: rgba(167, 139, 250, 0.74);
    box-shadow: 0 18px 54px rgba(99, 102, 241, 0.28), inset 0 0 0 1px rgba(167, 139, 250, 0.18);
}

.option-list {
    display: grid;
    gap: 12px;
}

.list-option {
    position: relative;
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    color: var(--text);
    cursor: pointer;
    transition: border 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.radio-dot {
    display: block;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 999px;
    border: 2px solid rgba(148, 163, 184, 0.68);
}

.list-option:has(input:checked) .radio-dot {
    border-color: var(--accent);
    box-shadow: inset 0 0 0 4px #1e1b4b;
    background: var(--accent);
}

.reminder-card {
    display: grid;
    gap: 22px;
    padding: 20px;
    border-radius: 24px;
}

.switch-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.switch-row strong,
.switch-row small,
.time-picker span {
    display: block;
}

.switch-row small,
.time-picker span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.86rem;
}

.switch-ui {
    position: relative;
    width: 58px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    transition: background 180ms ease;
}

.switch-ui::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 24px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 180ms ease;
}

.switch-row input:checked + .switch-ui {
    background: var(--success);
}

.switch-row input:checked + .switch-ui::after {
    transform: translateX(24px);
}

.time-picker {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

.time-picker input,
.auth-form input {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.62);
    outline: 0;
}

.time-picker input {
    width: 118px;
    padding: 0 12px;
}

.flow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 18px;
}

.flow-dots span {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.25);
}

.flow-dots span.is-active {
    width: 22px;
    background: var(--accent);
}

.dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-top h1 {
    margin-bottom: 0;
    font-size: 2.2rem;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.profile-button {
    display: grid;
    width: 46px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.18);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(167, 139, 250, 0.85));
    box-shadow: 0 14px 34px rgba(99, 102, 241, 0.26);
    font-weight: 800;
}

.streak-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.26);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.streak-pill.large {
    min-height: 44px;
    padding: 0 18px;
    font-size: 1rem;
}

.daily-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
    padding: 34px 24px;
    border-radius: 24px;
    text-align: center;
}

.day-label {
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 800;
}

.daily-card h2 {
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 1.16;
}

.daily-card p:not(.day-label) {
    max-width: 250px;
    margin: 0 auto 34px;
    color: var(--muted);
    line-height: 1.6;
}

.mini-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
}

.mini-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.status-dot {
    width: 10px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 22px rgba(34, 197, 94, 0.62);
}

.screen-player {
    align-items: center;
    text-align: center;
}

.close-button {
    position: absolute;
    top: calc(18px + env(safe-area-inset-top));
    right: 18px;
}

.icon-button {
    display: grid;
    width: 44px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.08);
    border: 1px solid var(--line);
}

.close-button span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.close-button span:first-child {
    transform: rotate(45deg);
}

.close-button span:last-child {
    transform: rotate(-45deg);
}

.player-copy {
    width: 100%;
    padding-top: 52px;
}

.player-copy h1 {
    max-width: 330px;
    margin-inline: auto;
}

.timer-card {
    position: relative;
    display: grid;
    width: min(82vw, 320px);
    aspect-ratio: 1;
    place-items: center;
    margin: 16px 0;
}

.progress-ring {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 22px 40px rgba(99, 102, 241, 0.25));
    transform: rotate(-90deg);
}

.progress-track,
.progress-fill {
    fill: none;
    stroke-width: 12;
}

.progress-track {
    stroke: rgba(226, 232, 240, 0.12);
}

.progress-fill {
    stroke: var(--accent);
    stroke-linecap: round;
    stroke-dasharray: 590;
    stroke-dashoffset: 590;
    transition: stroke-dashoffset 400ms linear;
}

.timer-center {
    position: absolute;
    display: grid;
    gap: 10px;
}

.timer-center span {
    font-family: Poppins, Inter, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.timer-center small {
    max-width: 190px;
    color: var(--muted);
    line-height: 1.4;
}

.ripple-bell {
    position: absolute;
    inset: 21%;
    border-radius: 999px;
    border: 1px solid rgba(167, 139, 250, 0.25);
    animation: ripple 3.8s ease-out infinite;
}

.player-control {
    position: relative;
    z-index: 4;
    display: grid;
    width: 82px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(226, 232, 240, 0.22);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 20px 46px rgba(99, 102, 241, 0.34);
    cursor: pointer;
}

.player-control svg {
    width: 34px;
    fill: currentColor;
}

.hidden {
    display: none !important;
}

.completion-screen {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto;
    padding: 28px 24px max(26px, env(safe-area-inset-bottom));
    color: var(--text);
    text-align: center;
    background:
        radial-gradient(circle at 50% 16%, rgba(99, 102, 241, 0.42), transparent 22rem),
        linear-gradient(180deg, #0f172a, #111827 58%, #1e1b4b);
    animation: fadeUp 440ms ease both;
}

.completion-mark {
    display: grid;
    width: 86px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 999px;
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.3);
    font-size: 2.5rem;
    box-shadow: 0 0 44px rgba(34, 197, 94, 0.16);
}

.completion-screen h1 {
    margin-bottom: 0;
    font-size: 3.2rem;
}

.completion-screen p:not(.eyebrow) {
    color: var(--muted);
}

.completion-actions {
    display: grid;
    width: 100%;
    gap: 12px;
    margin-top: 18px;
}

.auth-screen {
    justify-content: center;
}

.auth-card {
    display: grid;
    gap: 18px;
    padding: 26px 20px;
    border-radius: 24px;
    text-align: center;
}

.auth-card h1 {
    margin-bottom: 4px;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form label {
    display: grid;
    gap: 5px;
    text-align: left;
}

.auth-form input {
    padding: 0 16px;
}

.auth-form span {
    min-height: 17px;
    color: #fca5a5;
    font-size: 0.78rem;
}

.profile-screen {
    display: flex;
    min-height: 100dvh;
    flex-direction: column;
    gap: 22px;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.profile-top {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    text-align: center;
}

.profile-top .eyebrow {
    margin: 0;
}

.back-button {
    position: relative;
}

.back-button span {
    width: 13px;
    aspect-ratio: 1;
    border-bottom: 2px solid var(--text);
    border-left: 2px solid var(--text);
    transform: rotate(45deg) translateX(2px);
}

.profile-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 30px 22px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.68));
    box-shadow: var(--shadow);
}

.profile-avatar {
    display: grid;
    width: 92px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 20px 48px rgba(99, 102, 241, 0.34);
    font-size: 2.4rem;
    font-weight: 800;
}

.profile-card h1 {
    margin: 8px 0 0;
    font-size: 2rem;
}

.profile-card p {
    margin: 0;
    color: var(--muted);
}

.profile-stats {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.profile-stats div {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(226, 232, 240, 0.08);
    border: 1px solid var(--line);
}

.profile-stats strong {
    color: var(--text);
}

.profile-stats span {
    color: var(--muted);
    font-size: 0.82rem;
}

.profile-actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.btn-danger {
    color: #fecaca;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.path-section {
    display: grid;
    gap: 12px;
}

.path-section h2 {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.path-card {
    position: relative;
    display: grid;
    min-height: 154px;
    align-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.72));
    box-shadow: var(--shadow);
}

.path-card.active {
    grid-template-columns: 1fr auto;
    min-height: 136px;
    align-items: center;
}

.path-card p {
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
}

.path-card h3 {
    margin: 0;
    font-family: Poppins, Inter, sans-serif;
    font-size: 1.2rem;
    line-height: 1.18;
}

.path-card.locked {
    opacity: 0.72;
}

.path-symbol {
    display: grid;
    width: 56px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    background: rgba(99, 102, 241, 0.18);
    font-size: 1.45rem;
}

.path-lock {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: var(--muted);
}

.monastery-screen {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
    overflow: hidden;
}

.monastery-art,
.monastery-shade,
.monastery-path {
    position: absolute;
    inset: 0;
}

.monastery-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.04);
}

.monastery-shade {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.04) 44%, #0f172a 100%);
}

.monastery-top {
    position: relative;
    z-index: 2;
    max-width: 260px;
}

.monastery-top h1 {
    font-size: 2.1rem;
}

.progress-pin {
    position: absolute;
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
    animation: floatPin 2.8s ease-in-out infinite;
}

.progress-pin img {
    width: 58px;
    aspect-ratio: 1;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.35);
}

.progress-pin span {
    padding: 7px 11px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid var(--line);
    font-size: 0.76rem;
    font-weight: 800;
}

.path-node {
    position: absolute;
    z-index: 2;
    width: 14px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.72);
    box-shadow: 0 0 24px rgba(226, 232, 240, 0.28);
}

.monastery-path {
    z-index: 1;
    width: 100%;
    height: 100%;
}

.bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    background: rgba(15, 23, 42, 0.82);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

.bottom-nav a {
    display: grid;
    min-height: 54px;
    place-items: center;
    border-radius: 18px;
    color: var(--muted);
}

.bottom-nav a.is-active {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.16);
}

.bottom-nav span {
    font-size: 1.35rem;
    line-height: 1;
}

.bottom-nav small {
    font-size: 0.73rem;
    font-weight: 700;
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.52;
        transform: scale(0.86);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    0% {
        opacity: 0.76;
        transform: scale(0.7);
    }
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@keyframes floatPin {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@media (max-width: 360px) {
    .screen {
        padding-right: 18px;
        padding-left: 18px;
    }

    .screen-header h1,
    .auth-card h1,
    .player-copy h1 {
        font-size: 1.85rem;
    }

    .timer-center span {
        font-size: 3.35rem;
    }
}
