:root {
    --bg: #12051f;
    --bg2: #2b0b43;
    --card: rgba(255, 255, 255, 0.1);
    --card2: rgba(255, 255, 255, 0.16);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.7);
    --accent: #ffcf33;
    --danger: #ff4f6d;
    --ok: #40e38c;
    --line: rgba(255, 255, 255, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #6b1ca2 0, var(--bg) 48%, #05010a 100%);
    color: var(--text);
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 800;
    background: var(--accent);
    color: #18051f;
}

button:hover {
    filter: brightness(1.08);
}

button.small {
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    font-size: 0.85rem;
}

button.danger {
    background: var(--danger);
    color: white;
}

button.primary {
    background: var(--ok);
    color: #041409;
}

.guest-page,
.admin-login,
.qr-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.guest-card,
.login-card,
.qr-card {
    width: min(520px, 100%);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
}

.center {
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: #18051f;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-weight: 900;
}

h1 {
    margin: 0.8rem 0;
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 0.95;
}

.lead,
.login-card p {
    color: var(--muted);
    line-height: 1.5;
}

.signup-form,
.login-card form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

label {
    display: grid;
    gap: 0.4rem;
}

label span {
    font-weight: 800;
}

input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.error {
    background: rgba(255, 79, 109, 0.18);
    border: 1px solid rgba(255, 79, 109, 0.55);
    padding: 1rem;
    border-radius: 18px;
    margin: 1rem 0;
}

.secondary-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 900;
}

.big-icon {
    font-size: 4rem;
}

.admin-page {
    min-height: 100vh;
    padding: 1.2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.admin-header h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0;
}

.admin-header p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.admin-header nav {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.admin-header a {
    text-decoration: none;
    background: var(--card2);
    padding: 0.7rem 1rem;
    border-radius: 14px;
    font-weight: 900;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.panel {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
}

.panel h2 {
    margin: 0 0 1rem;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.list {
    display: grid;
    gap: 0.7rem;
}

.singer {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.8rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0.75rem;
}

.singer.active {
    background: rgba(64, 227, 140, 0.14);
    border-color: rgba(64, 227, 140, 0.55);
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.thumb.empty {
    display: grid;
    place-items: center;
    font-size: 2rem;
}

.singer-main {
    min-width: 0;
}

.singer-main strong {
    display: block;
    font-size: 1.15rem;
}

.singer-main span {
    display: block;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.done-row {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.18);
    padding: 0.7rem;
    border-radius: 14px;
}

.done-row span {
    font-weight: 900;
}

.done-row small {
    color: var(--muted);
}

.empty-state {
    color: var(--muted);
    padding: 1rem;
    border: 1px dashed var(--line);
    border-radius: 18px;
}

.display-page {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 207, 51, 0.28), transparent 25%),
        radial-gradient(circle at 80% 5%, rgba(255, 79, 109, 0.35), transparent 25%),
        radial-gradient(circle at 55% 90%, rgba(64, 227, 140, 0.22), transparent 30%),
        #05010a;
}

.stage {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    padding: 4vw;
    align-items: center;
}

.artist-card {
    display: grid;
    grid-template-columns: minmax(260px, 42vw) 1fr;
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.artist-photo {
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    object-fit: cover;
    border-radius: 44px;
    border: 5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.artist-photo.fallback {
    display: grid;
    place-items: center;
    font-size: 9rem;
    background: rgba(255, 255, 255, 0.1);
}

.artist-text .eyebrow {
    color: var(--accent);
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.artist-text h1 {
    font-size: clamp(4rem, 10vw, 10rem);
    margin: 0.2rem 0;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.artist-text p {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    color: var(--muted);
    font-weight: 800;
}

.stage-empty {
    grid-column: 1 / -1;
    text-align: center;
}

.stage-empty div {
    font-size: 7rem;
}

.stage-empty h1 {
    font-size: clamp(3rem, 8vw, 8rem);
}

.stage-empty p {
    color: var(--muted);
    font-size: 1.5rem;
}

.next-list {
    align-self: center;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 1.5rem;
    animation: popIn 0.45s ease both;
}

.next-list.hidden {
    display: none;
}

.next-list h2 {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 2rem;
}

.next-item {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.22);
    margin-bottom: 0.8rem;
}

.next-item strong {
    display: block;
    font-size: 1.4rem;
}

.next-item span {
    color: var(--muted);
}

.qr-card {
    text-align: center;
}

.qr-card img {
    width: min(70vw, 420px);
    background: white;
    padding: 1rem;
    border-radius: 24px;
}

.qr-card p {
    color: var(--muted);
    overflow-wrap: anywhere;
    font-weight: 800;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (min-width: 1100px) {
    .admin-grid {
        grid-template-columns: 1fr 1.2fr 0.9fr;
        align-items: start;
    }
}

@media (max-width: 900px) {
    .admin-header {
        display: grid;
    }

    .stage {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .artist-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .next-list {
        width: 100%;
    }
}

/* Patch: artist först i mitten, sedan artist + kommande kö */
.stage {
    transition: grid-template-columns 0.7s ease, gap 0.7s ease;
}

.stage.solo-mode {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.stage.solo-mode .artist-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    transform: translateX(0) scale(1);
    transition: transform 0.7s ease;
}

.stage.solo-mode .artist-photo {
    width: min(52vw, 620px);
    height: min(52vw, 620px);
}

.stage.solo-mode .artist-text h1 {
    font-size: clamp(5rem, 12vw, 12rem);
}

.stage.solo-mode .artist-text p {
    font-size: clamp(2rem, 5vw, 4rem);
}

.stage.queue-mode {
    grid-template-columns: 1fr 360px;
    justify-items: stretch;
    text-align: left;
}

.stage.queue-mode .artist-card {
    grid-template-columns: minmax(260px, 42vw) 1fr;
    justify-items: stretch;
    text-align: left;
    transform: translateX(0) scale(0.96);
    transition: transform 0.7s ease;
}

.stage.queue-mode .next-list {
    animation: queueSlideIn 0.7s ease both;
}

@keyframes queueSlideIn {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 900px) {
    .stage.queue-mode {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stage.queue-mode .artist-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

/* Patch: namn och låt direkt på artistbilden */
.artist-photo-wrap {
    position: relative;
    display: inline-block;
}

.photo-nameplate {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    padding: 1.1rem 1.4rem;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.photo-nameplate .photo-label {
    color: var(--accent);
    font-size: clamp(0.9rem, 1.8vw, 1.4rem);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.photo-nameplate strong {
    display: block;
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.95;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.photo-nameplate span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2.2vw, 2rem);
    font-weight: 800;
}

.stage.queue-mode .photo-nameplate {
    bottom: 18px;
    padding: 0.8rem 1rem;
    border-radius: 18px;
}

.stage.queue-mode .photo-nameplate strong {
    font-size: clamp(1.5rem, 3vw, 3rem);
}

.stage.queue-mode .photo-nameplate span {
    font-size: clamp(0.9rem, 1.6vw, 1.35rem);
}

@media (max-width: 900px) {
    .photo-nameplate {
        width: calc(100% - 28px);
        bottom: 14px;
        padding: 0.8rem 1rem;
    }
}

/* Patch: ren bild, text under bilden, och bort med gamla namnplattor */
.display-page .photo-nameplate {
    display: none !important;
}

.display-page .stage {
    transition: grid-template-columns 0.7s ease, gap 0.7s ease;
}

.display-page .artist-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    align-items: center !important;
    gap: 1.2rem !important;
    width: 100%;
}

.display-page .artist-photo-wrap {
    position: relative;
    display: grid !important;
    justify-items: center;
    width: 100%;
}

.display-page .artist-photo {
    display: block;
    object-fit: cover;
}

.display-page .artist-text {
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center !important;
}

.display-page .artist-text .eyebrow {
    color: var(--accent);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.display-page .artist-text h1 {
    margin: 0 !important;
    line-height: 0.95;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.display-page .artist-text p {
    margin: 0.35rem 0 0 !important;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 850;
}

/* Första läget: artist stort i mitten */
.display-page .stage.solo-mode {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
}

.display-page .stage.solo-mode .artist-card {
    max-width: 1200px;
}

.display-page .stage.solo-mode .artist-photo {
    width: min(52vw, 620px) !important;
    height: min(52vw, 620px) !important;
}

.display-page .stage.solo-mode .artist-text h1 {
    font-size: clamp(4.5rem, 11vw, 11rem) !important;
}

.display-page .stage.solo-mode .artist-text p {
    font-size: clamp(1.7rem, 4vw, 3.6rem) !important;
}

.display-page .stage.solo-mode .artist-text .eyebrow {
    font-size: clamp(1.2rem, 2.6vw, 2.3rem) !important;
}

/* Efter 10 sekunder: artist kvar med text under bilden, kö bredvid */
.display-page .stage.queue-mode {
    grid-template-columns: 1fr 380px !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
}

.display-page .stage.queue-mode .artist-card {
    max-width: 820px;
    transform: scale(0.96);
    transition: transform 0.7s ease;
}

.display-page .stage.queue-mode .artist-photo {
    width: min(38vw, 500px) !important;
    height: min(38vw, 500px) !important;
}

.display-page .stage.queue-mode .artist-text h1 {
    font-size: clamp(3rem, 6vw, 6.5rem) !important;
}

.display-page .stage.queue-mode .artist-text p {
    font-size: clamp(1.2rem, 2.6vw, 2.3rem) !important;
}

.display-page .stage.queue-mode .artist-text .eyebrow {
    font-size: clamp(1rem, 1.8vw, 1.6rem) !important;
}

.display-page .stage.queue-mode .next-list {
    align-self: center;
    animation: queueSlideInClean 0.7s ease both;
}

@keyframes queueSlideInClean {
    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 900px) {
    .display-page .stage.queue-mode {
        grid-template-columns: 1fr !important;
    }

    .display-page .stage.queue-mode .artist-photo,
    .display-page .stage.solo-mode .artist-photo {
        width: min(78vw, 520px) !important;
        height: min(78vw, 520px) !important;
    }
}

/* Patch: håll aktuell artist + text synlig på större skärmar */
.display-page {
    overflow: hidden !important;
}

.display-page .stage {
    height: 100vh !important;
    max-height: 100vh !important;
    padding: 2.5vh 4vw !important;
    align-items: center !important;
}

.display-page .artist-card {
    align-content: center !important;
    gap: 0.9rem !important;
}

/* Solo-läge: stor bild, men inte så stor att texten ramlar av scenen */
.display-page .stage.solo-mode .artist-photo {
    width: min(42vw, 48vh, 560px) !important;
    height: min(42vw, 48vh, 560px) !important;
}

.display-page .stage.solo-mode .artist-text h1 {
    font-size: clamp(3.2rem, 8vw, 8.5rem) !important;
}

.display-page .stage.solo-mode .artist-text p {
    font-size: clamp(1.3rem, 3vw, 2.8rem) !important;
}

.display-page .stage.solo-mode .artist-text .eyebrow {
    font-size: clamp(1rem, 2vw, 1.8rem) !important;
}

/* Kö-läge: bilden krymper mer så namn/låt fortfarande syns */
.display-page .stage.queue-mode {
    grid-template-columns: minmax(0, 1fr) 380px !important;
    gap: 1.4rem !important;
}

.display-page .stage.queue-mode .artist-card {
    max-width: 720px !important;
    gap: 0.65rem !important;
}

.display-page .stage.queue-mode .artist-photo {
    width: min(32vw, 42vh, 430px) !important;
    height: min(32vw, 42vh, 430px) !important;
}

.display-page .stage.queue-mode .artist-text h1 {
    font-size: clamp(2.4rem, 5vw, 5rem) !important;
}

.display-page .stage.queue-mode .artist-text p {
    font-size: clamp(1rem, 2vw, 1.9rem) !important;
}

.display-page .stage.queue-mode .artist-text .eyebrow {
    font-size: clamp(0.85rem, 1.5vw, 1.35rem) !important;
}

/* Lite tajtare lista bredvid */
.display-page .next-list {
    max-height: 88vh !important;
    overflow: hidden !important;
}

.display-page .next-list h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem) !important;
}

.display-page .next-item {
    padding: 0.8rem !important;
}

.display-page .next-item strong {
    font-size: clamp(1.05rem, 1.8vw, 1.4rem) !important;
}

/* Mobilen får behålla sin snälla layout */
@media (max-width: 900px) {
    .display-page .stage {
        padding: 2vh 4vw !important;
        overflow-y: auto !important;
    }

    .display-page .stage.queue-mode {
        grid-template-columns: 1fr !important;
    }

    .display-page .stage.solo-mode .artist-photo,
    .display-page .stage.queue-mode .artist-photo {
        width: min(76vw, 46vh, 520px) !important;
        height: min(76vw, 46vh, 520px) !important;
    }
}

/* Patch: lyxig ram runt artistbilden */
.display-page .artist-photo-wrap {
    position: relative;
    display: inline-grid !important;
    justify-items: center;
    padding: 18px;
    border-radius: 42px;
    background:
        linear-gradient(145deg,
            rgba(255, 230, 140, 0.95) 0%,
            rgba(255, 210, 80, 1) 18%,
            rgba(255, 245, 200, 0.98) 34%,
            rgba(212, 160, 30, 1) 50%,
            rgba(255, 235, 150, 0.98) 67%,
            rgba(180, 120, 10, 1) 82%,
            rgba(255, 225, 120, 0.95) 100%);
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.22),
        0 18px 45px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(255, 210, 90, 0.22);
}

.display-page .artist-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 32px;
    border: 2px solid rgba(255, 248, 220, 0.75);
    pointer-events: none;
    box-shadow:
        inset 0 0 14px rgba(255,255,255,0.28),
        0 0 12px rgba(255, 220, 120, 0.18);
}

.display-page .artist-photo-wrap::after {
    content: "★ KARAOKE STAR ★";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    font-weight: 1000;
    letter-spacing: 0.08em;
    white-space: nowrap;
    color: #2c1600;
    background: linear-gradient(180deg, #fff3bf 0%, #ffd54a 100%);
    box-shadow:
        0 8px 18px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(140, 90, 0, 0.35);
    z-index: 3;
}

.display-page .artist-photo {
    border-radius: 28px !important;
    border: 4px solid rgba(255,255,255,0.82);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.45),
        0 12px 26px rgba(0,0,0,0.28);
    background: #111;
}

/* Lite extra showkänsla i solo-läget */
.display-page .stage.solo-mode .artist-photo-wrap {
    transform: scale(1.02);
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.24),
        0 28px 70px rgba(0,0,0,0.48),
        0 0 42px rgba(255, 210, 90, 0.26);
}

/* Lite mer kompakt i queue-läge */
.display-page .stage.queue-mode .artist-photo-wrap {
    padding: 14px;
    border-radius: 34px;
}

.display-page .stage.queue-mode .artist-photo-wrap::before {
    inset: 7px;
    border-radius: 26px;
}

.display-page .stage.queue-mode .artist-photo-wrap::after {
    top: -12px;
    font-size: clamp(0.72rem, 0.95vw, 0.92rem);
    padding: 0.38rem 0.85rem;
}

@media (max-width: 900px) {
    .display-page .artist-photo-wrap {
        padding: 12px;
        border-radius: 28px;
    }

    .display-page .artist-photo-wrap::before {
        inset: 6px;
        border-radius: 22px;
    }

    .display-page .artist-photo-wrap::after {
        top: -10px;
        padding: 0.35rem 0.75rem;
        font-size: 0.72rem;
    }

    .display-page .artist-photo {
        border-radius: 20px !important;
    }
}

/* Patch: gör ramen lika stor som bilden, inte utdragen över hela layouten */
.display-page .artist-photo-wrap {
    width: fit-content !important;
    max-width: none !important;
    justify-self: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Säkerställ att bilden styr ramens form */
.display-page .artist-photo-wrap .artist-photo {
    display: block !important;
    max-width: none !important;
}

/* Solo-läge: håll ramen proportionerlig */
.display-page .stage.solo-mode .artist-photo-wrap {
    width: fit-content !important;
}

/* Kö-läge: samma sak när kön visas bredvid */
.display-page .stage.queue-mode .artist-photo-wrap {
    width: fit-content !important;
}

/* Om webbläsaren är lite gammal och sur */
@supports not (width: fit-content) {
    .display-page .artist-photo-wrap {
        width: max-content !important;
    }
}

/* Patch: tack-sida med nedräkning till display */
.thanks-redirect-card {
    max-width: 560px;
}

.countdown-box {
    margin: 1.4rem auto;
    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.countdown-box p {
    margin: 0 0 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.countdown-box strong {
    display: block;
    font-size: clamp(2rem, 9vw, 4rem);
    line-height: 1;
    color: var(--accent);
}

.tiny-help {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.45;
    margin: 1rem 0;
}

.display-link {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    background: var(--accent);
    color: #18051f;
    font-weight: 1000;
    text-decoration: none;
}

.display-link:hover {
    filter: brightness(1.08);
}
