:root {
    --hw-bg: #080b10;
    --hw-panel: rgba(17, 22, 31, 0.78);
    --hw-panel-strong: rgba(21, 27, 38, 0.92);
    --hw-border: rgba(169, 184, 205, 0.16);
    --hw-muted: #98a2b3;
    --hw-text: #f5f7fb;
    --hw-green: #59f082;
    --hw-green-soft: rgba(89, 240, 130, 0.16);
    --hw-blue: #39a7ff;
    --hw-gold: #e4bd58;
    --hw-red: #ff515d;
}

@property --ring-spin {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

* {
    letter-spacing: 0;
}

body.hw-bg {
    min-height: 100vh;
    color: var(--hw-text);
    background:
        radial-gradient(circle at 77% 18%, rgba(65, 115, 190, 0.20), transparent 22rem),
        radial-gradient(circle at 32% 36%, rgba(73, 221, 118, 0.18), transparent 24rem),
        radial-gradient(circle at 90% 88%, rgba(228, 189, 88, 0.19), transparent 20rem),
        linear-gradient(135deg, #070a0f 0%, #0d1118 48%, #080a10 100%);
    overflow-x: hidden;
}

body.hw-bg::before,
body.hw-bg::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

body.hw-bg::before {
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

body.hw-bg::after {
    width: 28rem;
    height: 28rem;
    right: -10rem;
    bottom: -11rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 245, 245, 0.11), rgba(245, 245, 245, 0.03) 38%, transparent 68%);
    filter: blur(14px);
}

html.splash-lock,
body.splash-lock {
    overflow: hidden;
    overscroll-behavior: none;
}

body.seal-zoom-lock {
    overflow: hidden;
}

.daily-splash {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 0;
    background: #000000;
    opacity: 0;
    transition: opacity 180ms ease;
}

.daily-splash.is-visible {
    opacity: 1;
}

.daily-splash-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    background: #000000;
    overflow: hidden;
}

.daily-splash-video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100dvh;
    object-fit: contain;
    object-position: center center;
    background: #000000;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    transition: opacity 220ms ease;
}

.daily-splash.is-video-ready .daily-splash-video {
    opacity: 1;
}

.daily-splash-video.is-cover {
    object-fit: cover;
}

.daily-splash-video::-webkit-media-controls {
    display: none !important;
}

.daily-splash-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    background: #000000;
    opacity: 1;
    transition: opacity 260ms ease, visibility 260ms ease;
}

.daily-splash.is-video-ready .daily-splash-loader {
    visibility: hidden;
    opacity: 0;
}

.splash-loader-rings {
    position: relative;
    width: min(68vw, 260px);
    aspect-ratio: 2.45 / 1;
    filter: drop-shadow(0 0 24px rgba(216, 178, 82, 0.22));
}

.splash-loader-rings span {
    --ring-spin: 0deg;
    position: absolute;
    width: 34%;
    aspect-ratio: 1;
    border: clamp(4px, 1.35vw, 7px) solid rgba(214, 180, 117, 0.28);
    border-radius: 50%;
    background:
        conic-gradient(from var(--ring-spin), transparent 0 68%, rgba(255, 245, 200, 0.96) 76%, #d6b475 84%, transparent 94%),
        transparent;
    mask: radial-gradient(circle, transparent 56%, #000 58%);
    animation: ring-light 1350ms linear infinite;
}

.splash-loader-rings span:nth-child(1) {
    left: 0;
    top: 0;
}

.splash-loader-rings span:nth-child(2) {
    left: 33%;
    top: 0;
    animation-delay: 110ms;
}

.splash-loader-rings span:nth-child(3) {
    right: 0;
    top: 0;
    animation-delay: 220ms;
}

.splash-loader-rings span:nth-child(4) {
    left: 16.5%;
    bottom: 0;
    animation-delay: 330ms;
}

.splash-loader-rings span:nth-child(5) {
    right: 16.5%;
    bottom: 0;
    animation-delay: 440ms;
}

@keyframes ring-light {
    to {
        --ring-spin: 360deg;
    }
}

.daily-splash-skip {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
    z-index: 10000;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.daily-splash-skip:hover,
.daily-splash-skip:focus-visible {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.66);
    outline: 0;
}

.daily-splash[hidden] {
    display: none;
}

.language-switcher {
    position: relative;
    z-index: 45;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 999px;
    color: rgba(232, 220, 196, 0.66);
    background: rgba(8, 8, 7, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    font-size: 0.68rem;
    font-weight: 800;
}

.language-switcher.is-guest {
    margin: 10px auto 0;
}

.language-switcher.is-app {
    width: min(100% - 24px, 460px);
    margin: 8px auto 0;
}

.language-switcher.is-admin {
    flex: 0 0 auto;
    box-shadow: none;
}

.language-switcher span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.language-switcher span i {
    color: #d6b475;
    font-size: 0.82rem;
}

.language-switcher a {
    min-width: 31px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(232, 220, 196, 0.74);
    text-decoration: none;
    line-height: 1;
    transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
    border-color: rgba(214, 180, 117, 0.28);
    color: #15120c;
    background: #d6b475;
}

.hw-alert-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(232, 220, 196, 0.18);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(31, 29, 24, 0.98), rgba(12, 12, 11, 0.96));
    color: #f2eadc;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hw-alert-modal .modal-body {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 24px 10px;
}

.hw-alert-modal .modal-footer {
    border: 0;
    padding: 8px 24px 24px;
}

.hw-alert-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 180, 117, 0.28);
    border-radius: 999px;
    color: #d6b475;
    background: rgba(214, 180, 117, 0.10);
    font-size: 1.6rem;
}

.hw-alert-modal[data-tone="success"] .hw-alert-icon {
    border-color: rgba(89, 240, 130, 0.34);
    color: #59f082;
    background: rgba(89, 240, 130, 0.10);
}

.hw-alert-modal[data-tone="danger"] .hw-alert-icon,
.hw-alert-modal[data-tone="warning"] .hw-alert-icon {
    border-color: rgba(255, 81, 93, 0.34);
    color: #ff838b;
    background: rgba(255, 81, 93, 0.10);
}

.hw-alert-copy h2 {
    margin: 2px 0 8px;
    font-size: 1.18rem;
    font-weight: 900;
}

.hw-alert-copy p {
    margin: 0;
    color: rgba(232, 220, 196, 0.70);
}

a {
    color: #9df7b0;
}

a:hover {
    color: #d7ffe0;
}

.text-neon {
    color: var(--hw-green);
}

.hw-card,
.metric-card {
    position: relative;
    border: 1px solid var(--hw-border);
    background: linear-gradient(140deg, rgba(22, 29, 42, 0.86), rgba(13, 17, 26, 0.74));
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hw-card {
    border-radius: 16px;
}

.metric-card {
    min-height: 86px;
    overflow: hidden;
    border-radius: 16px;
    padding: 18px;
}

.metric-card::after {
    content: "";
    position: absolute;
    width: 86px;
    height: 86px;
    right: -18px;
    top: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 66%);
}

.metric-card.metric-green {
    border-color: rgba(89, 240, 130, 0.38);
    background: linear-gradient(135deg, rgba(35, 101, 61, 0.42), rgba(15, 21, 31, 0.82));
}

.metric-card.metric-blue {
    border-color: rgba(57, 167, 255, 0.36);
}

.metric-card.metric-gold {
    border-color: rgba(228, 189, 88, 0.42);
}

.metric-card .metric-value {
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    line-height: 1;
    font-weight: 800;
}

.metric-card .metric-label {
    color: #dce4ee;
    line-height: 1.1;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn.is-loading,
button.is-loading {
    pointer-events: none;
    user-select: none;
}

.btn-loading-spinner {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
    vertical-align: -0.16em;
    animation: btn-loading-spin 720ms linear infinite;
}

.btn-loading-label {
    margin-left: 0.5rem;
}

.btn.is-loading,
button.is-loading:not(.btn-close) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.admin-icon-action.is-loading .btn-loading-spinner,
.public-app-icon.is-loading .btn-loading-spinner,
.admin-menu-toggle.is-loading .btn-loading-spinner {
    width: 0.95rem;
    height: 0.95rem;
}

.admin-icon-action.is-loading .btn-loading-label {
    font-size: 0.68rem;
    font-weight: 800;
}

@keyframes btn-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-neon {
    background: linear-gradient(90deg, #78f89a, #45e876);
    border: 1px solid rgba(173, 255, 188, 0.28);
    color: #051109;
    box-shadow: 0 0 22px rgba(89, 240, 130, 0.22);
}

.btn-neon:hover {
    background: linear-gradient(90deg, #8dffac, #54f383);
    color: #051109;
}

.btn-outline-light,
.btn-outline-success {
    border-color: rgba(169, 184, 205, 0.28);
    color: #e7edf7;
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover,
.btn-outline-success:hover {
    border-color: rgba(89, 240, 130, 0.58);
    background: var(--hw-green-soft);
    color: #eaffef;
}

.form-control,
.form-select {
    border-radius: 12px;
    border-color: rgba(169, 184, 205, 0.22);
    background-color: rgba(6, 9, 14, 0.72);
    color: var(--hw-text);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(89, 240, 130, 0.62);
    box-shadow: 0 0 0 0.22rem rgba(89, 240, 130, 0.13);
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.025);
    --bs-table-hover-bg: rgba(89, 240, 130, 0.07);
    --bs-table-border-color: rgba(169, 184, 205, 0.12);
}

.table thead th {
    color: var(--hw-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.badge {
    border-radius: 999px;
    padding: 0.48rem 0.68rem;
}

.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
}

.admin-sidebar-backdrop,
.admin-sidebar-close,
.admin-menu-toggle {
    display: none;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 18px 18px 22px;
    background: rgba(8, 11, 17, 0.91);
    border-right: 1px solid rgba(169, 184, 205, 0.14);
}

.admin-brand {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 0 0 24px;
    text-align: center;
}

.brand-logo {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.42));
}

.admin-brand-logo {
    width: 142px;
}

.landing-logo {
    width: min(220px, 82vw);
}

.hw-mark {
    position: relative;
    width: 132px;
    height: 105px;
    display: grid;
    place-items: end center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffe76f;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.hw-mark .ring {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 4px solid currentColor;
    border-radius: 50%;
    top: 6px;
    filter: drop-shadow(0 0 10px currentColor);
}

.hw-mark .ring:nth-child(1) { left: 16px; color: #2ea7ff; }
.hw-mark .ring:nth-child(2) { left: 46px; color: #34445f; }
.hw-mark .ring:nth-child(3) { left: 76px; color: #ff4e5d; }
.hw-mark .ring:nth-child(4) { left: 31px; top: 34px; color: #f4d255; }
.hw-mark .ring:nth-child(5) { left: 61px; top: 34px; color: #62ef7f; }

.hw-mark .word {
    position: relative;
    z-index: 1;
}

.hw-mark .word::before,
.hw-mark .word::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 21px;
    bottom: -16px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 15px 7px 0 #50e67a, 47px -3px 0 #43a7ff, 76px 8px 0 #ff5060;
}

.hw-mark .word::before {
    left: 4px;
}

.hw-mark .word::after {
    right: 15px;
    background: #ff5060;
}

.admin-brand strong {
    font-size: 1.08rem;
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 45px;
    padding: 10px 13px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #aab3c2;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.admin-menu a i {
    width: 22px;
    font-size: 1.16rem;
}

.admin-menu a:hover,
.admin-menu a.active {
    color: #f4fff7;
    border-color: rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.08);
}

.admin-menu a.active i {
    color: var(--hw-green);
}

.admin-content {
    min-width: 0;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 86px;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(169, 184, 205, 0.14);
    background: rgba(10, 14, 21, 0.82);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-topbar-title-group {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-title {
    font-size: 1.7rem;
    line-height: 1.05;
    font-weight: 800;
}

.admin-kicker {
    color: var(--hw-muted);
    font-size: 0.88rem;
}

.admin-topnav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.admin-topnav a {
    color: #b8c1cd;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.admin-topnav a:hover,
.admin-topnav a.active {
    color: #dfffdf;
    border-color: var(--hw-green);
}

body.hw-bg.admin-shell {
    background:
        linear-gradient(180deg, #050a11 0%, #07111a 46%, #050910 100%);
}

body.hw-bg.admin-shell::before {
    background:
        linear-gradient(rgba(69, 221, 210, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69, 221, 210, 0.026) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 82%);
}

body.hw-bg.admin-shell::after {
    display: none;
}

.admin-top-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10050;
    width: 100%;
    height: 3px;
    pointer-events: none;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #4285f4 0%, #34a853 34%, #fbbc05 66%, #ea4335 100%);
    box-shadow: 0 0 16px rgba(66, 133, 244, 0.58), 0 0 24px rgba(53, 240, 199, 0.24);
    transition: transform 0.72s cubic-bezier(0.18, 0.84, 0.22, 1), opacity 0.14s ease;
}

.admin-top-loading-bar.is-visible {
    opacity: 1;
}

.admin-top-loading-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
    transform: translateX(-100%);
    animation: admin-top-loading-shine 1.05s ease-in-out infinite;
}

@keyframes admin-top-loading-shine {
    to {
        transform: translateX(100%);
    }
}

.admin-shell {
    --hw-bg: #050a11;
    --hw-panel: rgba(7, 15, 24, 0.86);
    --hw-panel-strong: rgba(9, 20, 31, 0.94);
    --hw-border: rgba(54, 214, 203, 0.18);
    --hw-muted: #94a3b8;
    --hw-text: #f4f8fb;
    --hw-green: #35f0c7;
    --hw-green-soft: rgba(53, 240, 199, 0.12);
    --hw-gold: #f6bc42;
    --hw-blue: #2ca9ff;
}

.admin-shell .admin-layout {
    grid-template-columns: 218px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
}

.admin-shell .admin-sidebar {
    border: 1px solid rgba(54, 214, 203, 0.20);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(7, 18, 29, 0.96), rgba(4, 11, 18, 0.96));
    box-shadow: inset -1px 0 0 rgba(53, 240, 199, 0.08), 0 24px 70px rgba(0, 0, 0, 0.36);
}

.admin-shell .admin-brand {
    padding-bottom: 30px;
}

.admin-shell .admin-brand-logo {
    width: 128px;
}

.admin-shell .admin-brand strong {
    color: #f7fbff;
    font-size: 1.1rem;
    font-weight: 900;
}

.admin-shell .admin-brand small {
    color: rgba(171, 231, 218, 0.72);
}

.admin-shell .admin-menu {
    gap: 8px;
}

.admin-shell .admin-menu a {
    position: relative;
    min-height: 48px;
    border-radius: 8px;
    color: #a9b6c5;
    font-weight: 750;
    background: transparent;
}

.admin-shell .admin-menu a i {
    color: #93a4b7;
}

.admin-shell .admin-menu a:hover,
.admin-shell .admin-menu a.active {
    border-color: rgba(53, 240, 199, 0.16);
    color: #f8fffd;
    background: linear-gradient(90deg, rgba(53, 240, 199, 0.15), rgba(53, 240, 199, 0.035));
}

.admin-shell .admin-menu a.active::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--hw-gold), var(--hw-green));
    box-shadow: 0 0 18px rgba(53, 240, 199, 0.42);
}

.admin-shell .admin-menu a.active i {
    color: var(--hw-green);
}

.admin-shell .admin-menu a.is-menu-loading {
    border-color: rgba(66, 133, 244, 0.28);
    color: #f8fffd;
    background: linear-gradient(90deg, rgba(66, 133, 244, 0.16), rgba(53, 240, 199, 0.06));
}

.admin-shell .admin-menu a.is-menu-loading::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #4285f4, #34a853, #fbbc05, #ea4335, transparent);
    background-size: 220% 100%;
    box-shadow: 0 0 14px rgba(66, 133, 244, 0.58);
    animation: admin-menu-loading-stripe 0.9s linear infinite;
}

@keyframes admin-menu-loading-stripe {
    from {
        background-position: 220% 0;
    }

    to {
        background-position: -220% 0;
    }
}

.admin-shell .admin-content {
    border: 1px solid rgba(54, 214, 203, 0.12);
    border-radius: 8px;
    background: rgba(4, 10, 17, 0.56);
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.28);
    overflow: clip;
}

.admin-shell .admin-topbar {
    min-height: 76px;
    padding: 14px 28px;
    border-bottom-color: rgba(54, 214, 203, 0.12);
    background: rgba(5, 12, 20, 0.72);
}

.admin-shell .admin-title {
    color: #f7fbff;
    font-size: 1.55rem;
    font-weight: 920;
}

.admin-shell .admin-kicker {
    color: rgba(171, 231, 218, 0.68);
}

.admin-shell .admin-topbar-title-group {
    flex: 0 0 auto;
}

.admin-shell .admin-global-search {
    flex: 1 1 520px;
    max-width: 760px;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    color: #9ba8ba;
    background:
        linear-gradient(180deg, rgba(21, 32, 45, 0.88), rgba(11, 20, 31, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.admin-shell .admin-global-search:focus-within {
    border-color: rgba(66, 133, 244, 0.58);
    box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-shell .admin-global-search i {
    font-size: 1.06rem;
}

.admin-shell .admin-global-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #eef5fb;
    background: transparent;
    font-weight: 650;
}

.admin-shell .admin-global-search input::placeholder {
    color: rgba(203, 213, 225, 0.66);
}

.admin-shell .admin-topnav {
    display: none;
}

.admin-shell .admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.admin-profile-chip {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 7px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    color: #eef5fb;
    background: rgba(14, 25, 38, 0.72);
}

.admin-profile-chip > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #4285f4, #34a853);
    font-weight: 900;
}

.admin-profile-chip strong,
.admin-profile-chip small {
    display: block;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-profile-chip strong {
    font-size: 0.78rem;
}

.admin-profile-chip small {
    color: rgba(203, 213, 225, 0.72);
    font-size: 0.68rem;
}

.admin-shell .language-switcher.is-admin {
    border-color: rgba(246, 188, 66, 0.34);
    color: rgba(248, 241, 222, 0.80);
    background: rgba(12, 16, 21, 0.72);
}

.admin-shell .language-switcher a.active,
.admin-shell .language-switcher a:hover {
    color: #100d05;
    background: var(--hw-gold);
}

.admin-shell .admin-logout-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-inline: 14px;
    border-radius: 999px;
}

.admin-readonly-notice {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-readonly-notice i {
    color: #52ffd1;
}

.admin-readonly form[method="post"],
.admin-readonly .admin-status-btn,
.admin-readonly .admin-sample-status-btn,
.admin-readonly [data-admin-edit-user],
.admin-readonly [data-admin-resend-access],
.admin-readonly [data-admin-modal-resend-access],
.admin-readonly [data-admin-modal-decision],
.admin-readonly [data-entry-sample-status-option],
.admin-readonly [data-modal-sample-status],
.admin-readonly [data-admin-user-edit-form] button[type="submit"],
.admin-readonly [data-admin-sample-form] button[type="submit"],
.admin-readonly a[href*="/admin/cup-create.php"],
.admin-readonly a[href*="/admin/cup-edit.php"],
.admin-readonly [data-rosin-action],
.admin-readonly a[href*="/admin/start-voting.php"],
.admin-readonly a[href*="/admin/close-voting.php"] {
    display: none !important;
}

.admin-readonly input:not([type="search"]),
.admin-readonly textarea {
    pointer-events: none;
}

.admin-shell .hw-card,
.admin-shell .metric-card,
.admin-shell .premium-page-head,
.admin-shell .premium-card,
.admin-shell .podium-card {
    border-color: rgba(54, 214, 203, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(12, 28, 42, 0.86), rgba(6, 14, 23, 0.88));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 18px 48px rgba(0, 0, 0, 0.22);
}

.admin-shell .hw-card:hover,
.admin-shell .metric-card:hover,
.admin-shell .premium-card:hover {
    border-color: rgba(53, 240, 199, 0.34);
}

.admin-shell .premium-page-head {
    align-items: center;
    padding: 24px 28px;
    border-color: rgba(148, 163, 184, 0.14);
    background:
        radial-gradient(circle at 9% 0%, rgba(66, 133, 244, 0.12), transparent 22rem),
        linear-gradient(145deg, rgba(14, 25, 38, 0.88), rgba(7, 14, 23, 0.90));
}

.admin-shell .premium-page-head h1 {
    color: #f8fbff;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 920;
    letter-spacing: 0;
}

.admin-shell .premium-page-head .text-secondary {
    color: rgba(203, 213, 225, 0.84) !important;
}

.admin-shell .metric-card {
    min-height: 128px;
    padding: 18px 20px;
}

.admin-shell .metric-card::after {
    background: linear-gradient(135deg, transparent, rgba(53, 240, 199, 0.22));
}

.admin-shell .metric-card.metric-gold::after {
    background: linear-gradient(135deg, transparent, rgba(246, 188, 66, 0.30));
}

.admin-shell .metric-card .metric-value {
    color: #f8fbff;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 940;
}

.admin-shell .metric-card .metric-label {
    color: #aeb9c8;
    font-weight: 700;
}

.admin-shell form.hw-card {
    padding: 18px !important;
    border-color: rgba(148, 163, 184, 0.14);
    background:
        linear-gradient(145deg, rgba(14, 25, 38, 0.82), rgba(7, 14, 23, 0.88));
}

.admin-shell form.hw-card .row {
    align-items: end;
}

.admin-competitors-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.admin-page-spark {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(66, 133, 244, 0.24);
    border-radius: 8px;
    color: #cfe0ff;
    background: rgba(66, 133, 244, 0.08);
    font-weight: 820;
}

.admin-page-spark i {
    color: #8ab4f8;
}

.admin-competitor-toolbar .form-label {
    margin-bottom: 6px;
}

.admin-field-icon {
    position: relative;
}

.admin-field-icon i {
    position: absolute;
    left: 13px;
    top: 50%;
    z-index: 2;
    color: rgba(203, 213, 225, 0.58);
    transform: translateY(-50%);
}

.admin-field-icon .form-control {
    padding-left: 40px;
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 10px;
}

.admin-kpi-card {
    min-height: 92px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 27, 40, 0.88), rgba(7, 15, 24, 0.90));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.admin-kpi-card > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.admin-kpi-card small,
.admin-kpi-card em {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: rgba(203, 213, 225, 0.72);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-kpi-card small {
    font-weight: 760;
}

.admin-kpi-card strong {
    display: block;
    color: #f8fbff;
    font-size: 1.55rem;
    font-weight: 940;
    line-height: 1.1;
}

.admin-kpi-card.is-blue > span {
    color: #8ab4f8;
    background: rgba(66, 133, 244, 0.16);
}

.admin-kpi-card.is-green > span {
    color: #81c995;
    background: rgba(52, 168, 83, 0.16);
}

.admin-kpi-card.is-yellow > span {
    color: #fdd663;
    background: rgba(251, 188, 4, 0.16);
}

.admin-kpi-card.is-red > span {
    color: #f28b82;
    background: rgba(234, 67, 53, 0.16);
}

.admin-kpi-card.is-purple > span {
    color: #c58af9;
    background: rgba(160, 81, 233, 0.16);
}

.admin-kpi-card.is-teal > span {
    color: #52ffd1;
    background: rgba(53, 240, 199, 0.14);
}

.admin-shell .row.g-3.mb-3 > .col-lg-6 .hw-card {
    min-height: 126px;
}

.admin-shell .pill,
.admin-shell .badge,
.admin-shell .status-chip {
    border-radius: 8px;
    border-color: rgba(53, 240, 199, 0.20);
    background: rgba(53, 240, 199, 0.08);
    color: #dffdf7;
    font-weight: 820;
}

.admin-shell .text-bg-success {
    color: #52ffd1 !important;
    background: rgba(53, 240, 199, 0.12) !important;
    border: 1px solid rgba(53, 240, 199, 0.26);
}

.admin-shell .text-bg-warning {
    color: #ffd35d !important;
    background: rgba(246, 188, 66, 0.12) !important;
    border: 1px solid rgba(246, 188, 66, 0.28);
}

.admin-shell .text-bg-danger {
    color: #ff7676 !important;
    background: rgba(255, 81, 93, 0.12) !important;
    border: 1px solid rgba(255, 81, 93, 0.26);
}

.admin-shell .text-bg-secondary,
.admin-shell .text-bg-dark {
    color: #cbd5e1 !important;
    background: rgba(148, 163, 184, 0.12) !important;
    border: 1px solid rgba(148, 163, 184, 0.20);
}

.admin-report-page {
    max-width: 1240px;
    margin-inline: auto;
}

.admin-report-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-report-filter {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) minmax(120px, 150px) 46px;
    gap: 10px;
    align-items: end;
}

.admin-report-filter label {
    display: grid;
    gap: 6px;
}

.admin-report-filter label span {
    color: rgba(203, 213, 225, 0.78);
    font-size: 0.78rem;
    font-weight: 780;
}

.admin-report-filter .btn {
    width: 46px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
}

.admin-report-focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(53, 240, 199, 0.10), rgba(246, 188, 66, 0.06)),
        rgba(9, 17, 28, 0.72);
}

.admin-report-focus small,
.admin-report-email-grid small,
.admin-report-log small {
    display: block;
    color: rgba(203, 213, 225, 0.68);
    font-weight: 760;
}

.admin-report-focus strong {
    display: block;
    color: #f8fbff;
    font-size: 1.05rem;
}

.admin-report-metric-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 10px;
}

.admin-report-metric {
    min-height: 106px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 27, 40, 0.88), rgba(7, 15, 24, 0.92));
}

.admin-report-metric > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.admin-report-metric small,
.admin-report-metric em {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: rgba(203, 213, 225, 0.72);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-report-metric small {
    font-weight: 760;
}

.admin-report-metric strong {
    display: block;
    color: #f8fbff;
    font-size: 1.62rem;
    font-weight: 940;
    line-height: 1.08;
}

.admin-report-metric.is-blue > span {
    color: #8ab4f8;
    background: rgba(66, 133, 244, 0.16);
}

.admin-report-metric.is-green > span {
    color: #81c995;
    background: rgba(52, 168, 83, 0.16);
}

.admin-report-metric.is-yellow > span {
    color: #fdd663;
    background: rgba(251, 188, 4, 0.16);
}

.admin-report-metric.is-teal > span {
    color: #52ffd1;
    background: rgba(53, 240, 199, 0.14);
}

.admin-report-metric.is-purple > span {
    color: #c58af9;
    background: rgba(160, 81, 233, 0.16);
}

.admin-report-metric.is-red > span {
    color: #f28b82;
    background: rgba(234, 67, 53, 0.16);
}

.admin-report-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    gap: 14px;
}

.admin-report-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.admin-report-category-list,
.admin-report-review-list,
.admin-report-days,
.admin-report-cup-list {
    display: grid;
    gap: 10px;
}

.admin-report-help-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-report-help-steps div {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(82, 255, 209, 0.055);
}

.admin-report-help-steps strong {
    display: inline-grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #071316;
    background: linear-gradient(135deg, #52ffd1, #fdd663);
}

.admin-report-help-steps span {
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.84rem;
    line-height: 1.3;
}

.admin-report-review-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) minmax(140px, 0.8fr) minmax(150px, 0.9fr) minmax(180px, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-report-review-row small,
.admin-report-review-row span {
    display: block;
    color: rgba(203, 213, 225, 0.70);
    font-size: 0.78rem;
    line-height: 1.35;
}

.admin-report-review-row strong {
    display: block;
    color: #f8fbff;
    line-height: 1.35;
}

.admin-report-review-row .btn {
    white-space: nowrap;
}

.admin-participant-modal .modal-content {
    border: 1px solid rgba(82, 255, 209, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(82, 255, 209, 0.10), transparent 34%),
        #081017;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.admin-participant-modal .modal-header,
.admin-participant-modal .modal-footer {
    border-color: rgba(148, 163, 184, 0.14);
}

.admin-participant-modal .modal-title {
    color: #f8fbff;
    font-weight: 800;
}

.admin-participant-summary,
.admin-participant-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-participant-summary div,
.admin-participant-card-grid div,
.admin-participant-sample {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-participant-summary small,
.admin-participant-card-grid small {
    display: block;
    margin-bottom: 4px;
    color: rgba(203, 213, 225, 0.65);
    font-size: 0.76rem;
    text-transform: uppercase;
}

.admin-participant-summary strong,
.admin-participant-card-grid strong,
.admin-participant-sample {
    display: block;
    overflow-wrap: anywhere;
    color: #f8fbff;
    line-height: 1.35;
}

.admin-participant-card-section {
    margin-top: 16px;
}

.admin-participant-card-section h3 {
    margin: 0 0 10px;
    color: #f8fbff;
    font-size: 0.96rem;
    font-weight: 800;
}

.admin-participant-edit-modal .modal-dialog {
    max-height: calc(100vh - 2rem);
    height: calc(100vh - 2rem);
}

.admin-participant-edit-modal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    border: 1px solid rgba(82, 255, 209, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(82, 255, 209, 0.10), transparent 34%),
        #081017;
}

.admin-participant-edit-modal .modal-content > form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
}

.admin-participant-edit-modal .modal-header,
.admin-participant-edit-modal .modal-footer {
    flex-shrink: 0;
    border-color: rgba(148, 163, 184, 0.14);
}

.admin-participant-edit-modal .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 1.25rem;
}

.admin-participant-edit-modal .form-control:not(.form-control-sm) {
    line-height: 1.4;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.admin-participant-edit-context {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-participant-edit-context div {
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-participant-edit-context small {
    display: block;
    color: rgba(203, 213, 225, 0.65);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.admin-participant-edit-context strong {
    display: block;
    overflow-wrap: anywhere;
    color: #f8fbff;
}

.admin-participant-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: min(320px, 100%);
    padding: 8px 12px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.46);
    color: rgba(203, 213, 225, 0.72);
}

.admin-participant-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #f8fbff;
}

.admin-participant-search input::placeholder {
    color: rgba(203, 213, 225, 0.55);
}

.admin-participant-edit-section {
    padding-top: 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.admin-participant-edit-section-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.admin-participant-edit-section-head h3 {
    margin: 0;
    color: #f8fbff;
    font-size: 1rem;
    font-weight: 800;
}

.admin-participant-edit-section-head p {
    max-width: 680px;
    margin: 4px 0 0;
    color: rgba(203, 213, 225, 0.70);
    font-size: 0.84rem;
}

.admin-participant-intention-list {
    display: grid;
    gap: 10px;
}

.admin-participant-intention-card {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(110px, 0.45fr) minmax(170px, 0.55fr) minmax(130px, 0.45fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-participant-intention-main strong,
.admin-participant-intention-numbers strong {
    display: block;
    overflow-wrap: anywhere;
    color: #f8fbff;
}

.admin-participant-intention-main span,
.admin-participant-intention-numbers small,
.admin-participant-intention-status small,
.admin-participant-intention-qty span {
    display: block;
    color: rgba(203, 213, 225, 0.68);
    font-size: 0.78rem;
}

.admin-participant-intention-numbers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.admin-participant-intention-numbers div {
    padding: 8px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.42);
}

.admin-participant-intention-empty {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding: 20px;
    border: 1px dashed rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    color: rgba(203, 213, 225, 0.72);
    text-align: center;
}

.admin-participant-intention-empty i {
    color: #52ffd1;
    font-size: 1.4rem;
}

.admin-participant-sample-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.admin-sample-gear-menu {
    position: relative;
}

.admin-sample-gear-btn {
    min-width: 40px;
}

.admin-sample-gear-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 1085;
    display: grid;
    gap: 4px;
    min-width: 250px;
    padding: 6px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(8, 14, 24, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.admin-sample-gear-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #f8fbff;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.admin-sample-gear-option i {
    color: #52ffd1;
    font-size: 1rem;
}

.admin-sample-gear-option:hover:not(:disabled),
.admin-sample-gear-option:focus-visible:not(:disabled) {
    border-color: rgba(82, 255, 209, 0.28);
    background: rgba(82, 255, 209, 0.08);
    outline: none;
}

.admin-sample-gear-option:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.admin-modal-sample-panel {
    margin-top: 12px;
    margin-bottom: 4px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(82, 255, 209, 0.18);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.42);
}

.admin-modal-sample-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-modal-sample-panel-head h4 {
    margin: 0;
    color: #f8fbff;
    font-size: 0.95rem;
    font-weight: 800;
}

.admin-modal-sample-form {
    display: grid;
    gap: 12px;
}

.admin-modal-sample-form .admin-sample-form-main {
    margin-top: 0;
}

.admin-modal-sample-form-weights {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 0;
}

.admin-modal-sample-form-weights label {
    min-width: 0;
}

.admin-modal-sample-form .form-control-sm,
.admin-modal-sample-form .form-select-sm {
    min-height: 34px;
    padding: 0.35rem 0.65rem;
    line-height: 1.4;
}

.admin-report-category-row {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) minmax(130px, 0.7fr) 64px;
    gap: 12px;
    align-items: center;
    min-height: 62px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-report-category-main strong,
.admin-report-cup-row strong {
    display: block;
    color: #f8fbff;
}

.admin-report-category-main small,
.admin-report-cup-row small,
.admin-report-day small {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: rgba(203, 213, 225, 0.70);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-report-category-main small {
    white-space: normal;
}

.admin-report-bar,
.admin-report-day-bar {
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(148, 163, 184, 0.16);
}

.admin-report-bar span,
.admin-report-day-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #52ffd1, #fdd663);
}

.admin-report-category-total {
    justify-self: end;
    color: #f8fbff;
    font-size: 1.2rem;
    font-weight: 940;
}

.admin-report-email-grid,
.admin-report-log {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-report-email-grid > div,
.admin-report-log > div {
    min-height: 82px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-report-email-grid strong,
.admin-report-log strong {
    display: block;
    color: #f8fbff;
    font-size: 1.38rem;
    font-weight: 920;
    line-height: 1.1;
}

.admin-report-email-grid em {
    display: block;
    color: #52ffd1;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 820;
}

.admin-report-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(246, 188, 66, 0.28);
    border-radius: 8px;
    color: #fdd663;
    background: rgba(246, 188, 66, 0.10);
}

.admin-report-day {
    display: grid;
    grid-template-columns: 52px minmax(100px, 1fr) minmax(140px, 0.8fr);
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-report-day strong {
    color: #f8fbff;
}

.admin-report-cup-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.admin-report-cup-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-report-cup-stats span {
    padding: 5px 8px;
    border-radius: 8px;
    color: #dffdf7;
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(53, 240, 199, 0.08);
}

.admin-report-empty {
    min-height: 220px;
}

.admin-shell .btn,
.admin-shell .form-control,
.admin-shell .form-select,
.admin-shell .input-group-text {
    border-radius: 8px;
}

.admin-shell .btn-neon,
.admin-shell .btn-success {
    border-color: rgba(53, 240, 199, 0.34);
    color: #eafffb;
    background: linear-gradient(135deg, rgba(53, 240, 199, 0.22), rgba(21, 132, 116, 0.44));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 10px 26px rgba(53, 240, 199, 0.10);
}

.admin-shell .btn-neon:hover,
.admin-shell .btn-success:hover {
    border-color: rgba(53, 240, 199, 0.62);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(53, 240, 199, 0.32), rgba(21, 132, 116, 0.56));
}

.admin-shell .btn-outline-light,
.admin-shell .btn-outline-secondary,
.admin-shell .btn-outline-info,
.admin-shell .btn-outline-warning,
.admin-shell .btn-outline-danger,
.admin-shell .btn-outline-success {
    background: rgba(8, 17, 27, 0.70);
    border-color: rgba(148, 163, 184, 0.22);
    color: #d6dee9;
}

.admin-shell .btn-outline-danger:hover {
    border-color: rgba(255, 81, 93, 0.52);
    color: #ffd7d7;
    background: rgba(255, 81, 93, 0.12);
}

.admin-shell .form-label {
    color: #aeb9c8;
    font-size: 0.76rem;
    font-weight: 820;
    text-transform: uppercase;
}

.admin-shell .form-control,
.admin-shell .form-select,
.admin-shell .input-group-text {
    border-color: rgba(54, 214, 203, 0.16);
    background-color: rgba(4, 10, 17, 0.76);
    color: #eef5fb;
}

.admin-shell .form-control::placeholder {
    color: rgba(174, 185, 200, 0.54);
}

.admin-shell .form-control:focus,
.admin-shell .form-select:focus {
    border-color: rgba(53, 240, 199, 0.55);
    box-shadow: 0 0 0 0.18rem rgba(53, 240, 199, 0.12);
}

.admin-shell .admin-total-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-shell .admin-total-list div {
    min-height: 44px;
    border-color: rgba(54, 214, 203, 0.16);
    border-radius: 8px;
    background: rgba(6, 14, 23, 0.72);
}

.admin-shell .admin-total-list strong {
    min-width: 28px;
    min-height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #f7d16b;
    background: rgba(246, 188, 66, 0.12);
}

.admin-shell .table-responsive {
    border: 1px solid rgba(54, 214, 203, 0.12);
    border-radius: 8px;
    background: rgba(5, 12, 20, 0.50);
}

.admin-shell .table {
    --bs-table-bg: transparent;
    --bs-table-hover-bg: rgba(53, 240, 199, 0.06);
    --bs-table-border-color: rgba(54, 214, 203, 0.10);
}

.admin-shell .table thead th {
    padding: 12px 14px;
    color: #aeb9c8;
    font-size: 0.78rem;
    font-weight: 860;
    background: rgba(12, 24, 36, 0.72);
}

.admin-shell .table tbody td {
    padding: 14px;
    color: #eef5fb;
}

.admin-shell .table tbody tr[data-admin-competitor-row] {
    background: rgba(8, 17, 27, 0.54);
}

.admin-shell .table tbody tr[data-admin-competitor-row]:hover {
    box-shadow: inset 3px 0 0 rgba(53, 240, 199, 0.60);
}

.admin-shell .table tbody tr[data-admin-competitor-row].is-selected {
    background: linear-gradient(90deg, rgba(53, 240, 199, 0.16), rgba(66, 133, 244, 0.06));
    box-shadow: inset 3px 0 0 #52ffd1;
}

.admin-competitor-person {
    min-width: 210px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    padding: 0;
    border: 0;
    color: inherit;
    text-align: left;
    background: transparent;
}

.admin-competitor-person > span {
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(53, 240, 199, 0.26);
    border-radius: 50%;
    color: #eafffb;
    background: linear-gradient(135deg, rgba(53, 240, 199, 0.22), rgba(66, 133, 244, 0.18));
    font-weight: 900;
}

.admin-competitor-person strong,
.admin-competitor-person small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-competitor-person small {
    color: rgba(203, 213, 225, 0.66);
    font-size: 0.72rem;
}

[data-admin-detail-row] > td {
    padding: 0 14px 14px !important;
    background: rgba(5, 12, 20, 0.66);
}

.admin-shell .entry-sample-admin-panel {
    border-color: rgba(54, 214, 203, 0.18);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(7, 18, 29, 0.86), rgba(5, 12, 20, 0.88));
}

.admin-competitor-detail-panel {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.admin-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-detail-title {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-detail-avatar {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #4285f4, #34a853);
    font-weight: 940;
}

.admin-detail-title strong,
.admin-detail-title small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-detail-title small {
    color: rgba(203, 213, 225, 0.68);
    font-size: 0.76rem;
}

.admin-detail-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-detail-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 8px;
}

.admin-detail-summary div {
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 8px;
    background: rgba(8, 17, 27, 0.62);
}

.admin-detail-summary small,
.admin-detail-summary strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-detail-summary small {
    color: rgba(203, 213, 225, 0.58);
    font-size: 0.7rem;
    font-weight: 780;
    text-transform: uppercase;
}

.admin-shell .entry-sample-admin-item {
    border-color: rgba(54, 214, 203, 0.20);
    border-radius: 8px;
    background: rgba(5, 16, 26, 0.84);
}

.admin-shell .entry-sample-admin-item strong {
    color: #f7fbff;
}

.admin-shell .entry-sample-admin-qty strong {
    color: #52ffd1;
}

.admin-action-group {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-competitor-board {
    padding: 14px !important;
}

.admin-competitor-board .premium-table {
    table-layout: fixed;
    min-width: 980px;
}

.admin-competitor-board .premium-table th:nth-child(1) {
    width: 25%;
}

.admin-competitor-board .premium-table th:nth-child(2) {
    width: 24%;
}

.admin-competitor-board .premium-table th:nth-child(3) {
    width: 18%;
}

.admin-competitor-board .premium-table th:nth-child(4) {
    width: 18%;
}

.admin-competitor-board .premium-table th:nth-child(5) {
    width: 15%;
}

.admin-competitor-board .premium-table thead th {
    color: rgba(203, 213, 225, 0.70);
    letter-spacing: 0;
}

.admin-competitor-board .premium-table tbody td {
    padding-block: 12px;
}

.admin-competitor-mesa-section td {
    padding: 0 !important;
    border-top: 1px solid rgba(45, 212, 191, 0.22);
    background: rgba(15, 23, 42, 0.55);
}

.admin-competitor-mesa-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 14px;
}

.admin-competitor-mesa-section-head strong {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.admin-rosin-mesa-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(45, 212, 191, 0.35);
    background: rgba(45, 212, 191, 0.12);
    color: #99f6e4;
}

.admin-rosin-mesa-pill.is-mesa-1 {
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(56, 189, 248, 0.14);
    color: #bae6fd;
}

.admin-rosin-mesa-pill.is-mesa-2 {
    border-color: rgba(167, 139, 250, 0.45);
    background: rgba(167, 139, 250, 0.14);
    color: #ddd6fe;
}

.admin-rosin-mesa-pill .admin-rosin-mesa-preview {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.8;
}

.admin-rosin-mesa-status {
    border-color: rgba(45, 212, 191, 0.28) !important;
}

.admin-rosin-mesa-status.is-mesa-1 strong {
    color: #7dd3fc;
}

.admin-rosin-mesa-status.is-mesa-2 strong {
    color: #c4b5fd;
}

.admin-competitor-main-cell {
    min-width: 240px;
}

.admin-contact-stack,
.admin-meta-stack,
.admin-status-stack {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.admin-contact-stack strong,
.admin-contact-stack span,
.admin-meta-stack strong,
.admin-meta-stack span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-contact-stack strong,
.admin-meta-stack strong {
    color: #f4f8fc;
    font-size: 0.92rem;
    font-weight: 790;
}

.admin-contact-stack span,
.admin-meta-stack span,
.admin-meta-stack small {
    color: rgba(203, 213, 225, 0.68);
    font-size: 0.78rem;
}

.admin-meta-field {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.admin-meta-field small {
    color: rgba(82, 255, 209, 0.62);
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.admin-contact-stack span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-contact-stack i {
    width: 14px;
    flex: 0 0 auto;
    color: rgba(53, 240, 199, 0.70);
    font-size: 0.82rem;
}

.admin-meta-stack > small {
    color: rgba(246, 188, 66, 0.76);
}

.admin-status-stack {
    justify-items: start;
    gap: 6px;
}

.admin-readable-status {
    --admin-status-accent: #cbd5e1;
    --admin-status-bg: rgba(148, 163, 184, 0.11);
    --admin-status-border: rgba(148, 163, 184, 0.22);
    width: min(190px, 100%);
    min-height: 32px;
    display: inline-grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid var(--admin-status-border);
    border-radius: 8px;
    color: #f8fbff;
    background: var(--admin-status-bg);
}

.admin-readable-status i {
    color: var(--admin-status-accent);
    font-size: 0.95rem;
    line-height: 1;
}

.admin-readable-status strong {
    min-width: 0;
    color: #f8fbff;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.admin-competitor-status {
    box-shadow:
        inset 3px 0 0 var(--admin-status-accent),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.admin-competitor-status.is-approved,
.admin-sample-status.is-approved {
    --admin-status-accent: #52ffd1;
    --admin-status-bg: rgba(53, 240, 199, 0.12);
    --admin-status-border: rgba(53, 240, 199, 0.30);
}

.admin-competitor-status.is-pending,
.admin-sample-status.is-pending {
    --admin-status-accent: #ffd35d;
    --admin-status-bg: rgba(246, 188, 66, 0.12);
    --admin-status-border: rgba(246, 188, 66, 0.32);
}

.admin-competitor-status.is-rejected,
.admin-sample-status.is-rejected {
    --admin-status-accent: #ff7676;
    --admin-status-bg: rgba(255, 81, 93, 0.12);
    --admin-status-border: rgba(255, 81, 93, 0.30);
}

.admin-competitor-status.is-suspended,
.admin-sample-status.is-suspended,
.admin-sample-status.is-none {
    --admin-status-accent: #a9b8cd;
    --admin-status-bg: rgba(148, 163, 184, 0.10);
    --admin-status-border: rgba(148, 163, 184, 0.22);
}

.admin-account-status {
    padding-left: 3px;
    color: rgba(203, 213, 225, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
}

.admin-sample-context {
    width: min(190px, 100%);
    padding-left: 3px;
    color: rgba(203, 213, 225, 0.68);
    font-size: 0.68rem;
    font-weight: 780;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.admin-account-status.is-active {
    color: rgba(82, 255, 209, 0.72);
}

.admin-account-status.is-suspended {
    color: rgba(255, 118, 118, 0.72);
}

.admin-actions-cell {
    min-width: 220px;
}

.admin-actions-cell .admin-action-group {
    max-width: 320px;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.admin-icon-action {
    position: relative;
    width: auto;
    min-width: 34px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 9px;
    border-radius: 8px;
    line-height: 1;
}

.admin-icon-action i {
    font-size: 1rem;
    line-height: 1;
    flex: 0 0 auto;
}

.admin-decision-action {
    width: 100%;
    min-width: 112px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-inline: 10px;
}

.admin-decision-action .admin-action-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    color: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.admin-action-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    color: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.admin-shell .admin-icon-action.is-approve,
.admin-shell .admin-icon-action.is-sample-toggle.btn-neon {
    border-color: rgba(53, 240, 199, 0.34);
    color: #55ffd5;
    background: rgba(53, 240, 199, 0.12);
}

.admin-shell .admin-icon-action.is-reject {
    border-color: rgba(255, 81, 93, 0.34);
    color: #ff858d;
    background: rgba(255, 81, 93, 0.10);
}

.admin-shell .admin-icon-action.is-reopen,
.admin-shell .admin-icon-action.is-detail {
    border-color: rgba(148, 163, 184, 0.24);
    color: #d6dee9;
    background: rgba(148, 163, 184, 0.08);
}

.admin-shell .admin-icon-action.is-suspend,
.admin-shell .admin-icon-action.is-sample-toggle.btn-outline-warning {
    border-color: rgba(246, 188, 66, 0.34);
    color: #ffd05b;
    background: rgba(246, 188, 66, 0.10);
}

.admin-shell .admin-icon-action.is-account-toggle {
    border-color: rgba(87, 188, 255, 0.28);
    color: #9bd8ff;
    background: rgba(87, 188, 255, 0.09);
}

.admin-shell .admin-icon-action:hover {
    transform: translateY(-1px);
    filter: brightness(1.12);
}

.admin-participant-edit-modal .modal-footer {
    gap: 8px;
}

.admin-modal-decision-state {
    min-width: 180px;
    display: grid;
    gap: 2px;
    padding: 8px 10px;
    border: 1px solid rgba(53, 240, 199, 0.18);
    border-radius: 8px;
    background: rgba(53, 240, 199, 0.07);
}

.admin-modal-decision-state small,
.admin-modal-decision-state strong {
    display: block;
    line-height: 1.15;
}

.admin-modal-decision-state small {
    color: rgba(203, 213, 225, 0.68);
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-modal-decision-state strong {
    color: #f8fbff;
    font-size: 0.82rem;
    font-weight: 940;
}

.admin-modal-save-btn {
    border-color: rgba(53, 240, 199, 0.34);
}

.admin-modal-decision-btn {
    min-width: 128px;
    font-weight: 900;
}

.admin-shell .table tbody tr[data-admin-competitor-row] {
    background: rgba(6, 14, 23, 0.46);
}

.admin-shell .table tbody tr[data-admin-competitor-row] + tr[data-admin-detail-row] > td {
    border-top: 0;
}

.admin-shell .entry-sample-status-options {
    border-color: rgba(54, 214, 203, 0.14);
    background: rgba(4, 10, 17, 0.66);
}

.admin-shell .premium-table-wrap,
.admin-shell .compact-list-head,
.admin-shell .compact-row,
.admin-shell .rich-ranking-list li,
.admin-shell .qr-sample-card,
.admin-shell .comparison-chart,
.admin-shell .icon-chip,
.admin-shell .sample-qr-thumb,
.admin-shell .qr-preview-link {
    border-radius: 8px;
}

.admin-shell .compact-list-head,
.admin-shell .compact-row,
.admin-shell .rich-ranking-list li,
.admin-shell .qr-sample-card {
    border-color: rgba(54, 214, 203, 0.14);
    background: rgba(6, 14, 23, 0.72);
}

.admin-shell .rich-ranking-list li.is-leader {
    border-color: rgba(53, 240, 199, 0.34);
    background: rgba(53, 240, 199, 0.10);
}

.admin-shell .rank-avatar,
.admin-shell .icon-chip {
    color: var(--hw-green);
    background: rgba(53, 240, 199, 0.10);
}

.admin-shell .rank-score,
.admin-shell .rank-index {
    color: var(--hw-gold);
}

.public-shell {
    min-height: 100vh;
}

.public-shell main {
    min-height: 100vh;
}

.public-guest-main {
    min-height: auto;
    display: block;
    padding-top: clamp(6px, 1.5vh, 14px) !important;
    padding-bottom: clamp(30px, 7vh, 76px) !important;
}

.public-shell main.public-guest-main {
    min-height: auto;
}

body.hw-bg.public-shell {
    background:
        linear-gradient(180deg, rgba(6, 7, 8, 0.96), rgba(13, 12, 10, 0.94)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 18px),
        #080807;
}

body.hw-bg.public-shell::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.70), transparent 72%);
}

body.hw-bg.public-shell::after {
    display: none;
}

.public-app-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    width: min(100%, 460px);
    min-height: 50px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-inline: auto;
    padding: 8px 12px 6px;
    background: rgba(8, 8, 7, 0.86);
    backdrop-filter: blur(18px);
}

.public-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 49;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(3px);
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.public-menu-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    width: min(84vw, 330px);
    padding: 18px;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    border-right: 1px solid rgba(232, 220, 196, 0.16);
    background: rgba(8, 8, 7, 0.96);
    box-shadow: 22px 0 60px rgba(0, 0, 0, 0.48);
}

body.public-menu-open {
    overflow: hidden;
}

body.public-menu-open .public-menu-backdrop {
    visibility: visible;
    opacity: 1;
}

body.public-menu-open .public-menu-drawer {
    transform: translateX(0);
}

.public-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(232, 220, 196, 0.12);
}

.public-menu-head strong,
.public-menu-head small {
    display: block;
}

.public-menu-head strong {
    color: #fff8ec;
    font-size: 1rem;
}

.public-menu-head small {
    margin-top: 2px;
    color: rgba(232, 220, 196, 0.58);
    font-size: 0.78rem;
}

.public-menu-close {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(232, 220, 196, 0.16);
    border-radius: 8px;
    color: #f2eadc;
    background: rgba(255, 255, 255, 0.06);
}

.public-menu-links {
    display: grid;
    gap: 8px;
    padding-top: 16px;
}

.public-menu-links a,
.public-menu-links button {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(232, 220, 196, 0.76);
    text-decoration: none;
    font-weight: 800;
    text-align: left;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
}

.public-menu-links a span,
.public-menu-links button span {
    min-width: 0;
}

.public-menu-links a i,
.public-menu-links button i {
    width: 22px;
    color: #d6b475;
    font-size: 1.08rem;
}

.public-menu-count {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 7px;
    border-radius: 999px;
    color: #07100b;
    background: #59f082;
    font-size: 0.72rem;
    line-height: 1;
    box-shadow: 0 0 0 4px rgba(89, 240, 130, 0.12);
}

.public-menu-links a.active,
.public-menu-links button.active,
.public-menu-links a:hover,
.public-menu-links button:hover {
    border-color: rgba(214, 180, 117, 0.28);
    color: #fff8ec;
    background: rgba(255, 255, 255, 0.085);
}

.public-menu-links a[data-confirm-logout] {
    margin-top: 8px;
    color: #ffd3d3;
    background: rgba(255, 99, 99, 0.08);
}

.public-app-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.public-app-icon {
    width: auto;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    color: #e8dcc4;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
}

.public-notification-icon {
    position: relative;
    box-shadow: 0 0 0 7px rgba(55, 216, 111, 0.03);
}

.public-notification-count {
    position: absolute;
    top: -6px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid rgba(8, 8, 7, 0.94);
    border-radius: 999px;
    color: #07100b;
    background: #59f082;
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1;
}

.public-logout-icon {
    position: relative;
    color: #ffd3d3;
    background: rgba(255, 99, 99, 0.08);
}

.public-logout-icon::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(232, 220, 196, 0.18);
    pointer-events: none;
}

.public-app-brand {
    justify-self: center;
    color: #f2eadc;
    display: grid;
    justify-items: center;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.05;
}

.public-app-brand small {
    display: block;
    margin-top: 1px;
    color: rgba(232, 220, 196, 0.58);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: none;
}

.public-app-brand-logo {
    display: none;
    width: clamp(38px, 12vw, 52px);
    height: auto;
    max-height: 34px;
    margin-top: 4px;
    object-fit: contain;
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.45));
}

body.competitor-shell.device-mobile .public-app-brand-logo {
    display: block;
}

body.competitor-shell.device-mobile .public-app-bar {
    min-height: 86px;
    padding-top: 10px;
    padding-bottom: 8px;
}

body.competitor-shell.device-mobile .public-app-brand {
    overflow: visible;
    white-space: normal;
}

.public-app-main {
    width: min(100%, 460px);
    min-width: 0;
}

.public-shell .container.public-app-main {
    padding: 10px 12px 28px;
}

.competitor-mobile-required {
    display: none;
    width: min(100%, 760px);
    min-height: calc(100vh - 58px);
    margin-inline: auto;
    padding: 32px 18px;
    place-items: center;
}

.competitor-mobile-required-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    padding: 28px;
    border: 1px solid rgba(232, 220, 196, 0.18);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(31, 29, 24, 0.92), rgba(12, 12, 11, 0.88));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.competitor-mobile-required-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 180, 117, 0.32);
    border-radius: 999px;
    color: #d6b475;
    background: rgba(214, 180, 117, 0.10);
    font-size: 2rem;
}

.competitor-mobile-required h1 {
    margin: 4px 0 10px;
    color: #f2eadc;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
}

.competitor-mobile-required p {
    max-width: 52ch;
    color: rgba(232, 220, 196, 0.70);
}

body.competitor-shell.competitor-desktop-blocked .competitor-mobile-required {
    display: grid;
}

body.competitor-shell.competitor-desktop-blocked .public-app-main {
    display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
    body.competitor-shell:not(.device-mobile) .competitor-mobile-required {
        display: grid;
    }

    body.competitor-shell:not(.device-mobile) .public-app-main {
        display: none;
    }
}

.public-shell .hw-card,
.public-shell .metric-card,
.public-shell .premium-card,
.public-shell .sample-preview,
.public-shell .qr-live-panel {
    border-radius: 8px;
    border-color: rgba(232, 220, 196, 0.14);
    background: linear-gradient(145deg, rgba(31, 29, 24, 0.86), rgba(12, 12, 11, 0.80));
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.public-shell .btn {
    min-height: 38px;
    padding: 0.42rem 0.8rem;
    font-size: 0.88rem;
}

.public-shell .btn-neon {
    background: linear-gradient(135deg, #ead7ad, #b8945d);
    border-color: rgba(255, 241, 198, 0.28);
    color: #15120c;
    box-shadow: 0 0 18px rgba(210, 174, 104, 0.18);
}

.public-shell .btn-neon:hover {
    background: linear-gradient(135deg, #f4e2b9, #c39e65);
    color: #15120c;
}

.public-shell .pill,
.public-shell .badge {
    max-width: 100%;
    padding: 0.32rem 0.55rem;
    font-size: 0.74rem;
    white-space: nowrap;
}

.public-shell .text-secondary,
.public-shell .premium-meta {
    color: rgba(232, 220, 196, 0.62) !important;
}

.app-kicker {
    color: rgba(232, 220, 196, 0.68);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.app-hero {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    border: 1px solid rgba(232, 220, 196, 0.15);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(10, 10, 9, 0.22), rgba(8, 8, 7, 0.94)),
        linear-gradient(135deg, rgba(191, 151, 83, 0.28), transparent 54%),
        #14120e;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.app-hero-media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0.32;
    filter: saturate(0.92) contrast(1.08);
}

.app-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 7, 0.10), rgba(8, 8, 7, 0.92));
}

.app-hero-media img {
    width: min(74%, 250px);
    max-height: 160px;
    object-fit: contain;
}

.app-hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 14px 52px;
}

.app-hero-content h1 {
    margin: 0;
    color: #fff8ec;
    font-size: 1.05rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.app-hero-content p {
    max-width: 260px;
    margin: 4px 0 0;
    color: rgba(255, 248, 236, 0.72);
    font-size: 0.82rem;
    overflow-wrap: anywhere;
}

.app-hero-stats {
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.app-hero-stats div,
.compact-status-row div {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    background: rgba(10, 10, 9, 0.58);
    backdrop-filter: blur(12px);
}

.app-hero-stats strong,
.compact-status-row strong {
    display: block;
    color: #fff8ec;
    font-size: 0.98rem;
    line-height: 1;
}

.app-hero-stats span,
.compact-status-row span {
    display: block;
    margin-top: 4px;
    color: rgba(232, 220, 196, 0.58);
    font-size: 0.68rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.app-action-grid a,
.app-action-grid button {
    min-width: 0;
    min-height: 78px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 7px;
    padding: 10px 6px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 8px;
    color: #f4ead8;
    text-decoration: none;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), transparent 52%),
        linear-gradient(180deg, rgba(52, 48, 39, 0.92), rgba(17, 16, 14, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.app-action-grid button {
    width: 100%;
    font: inherit;
}

.app-action-grid i {
    color: #d6b475;
    font-size: 1.24rem;
}

.app-action-grid span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.app-action-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-action-grid-compact a,
.app-action-grid-compact button {
    min-height: 66px;
}

.app-section-title {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff8ec;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.app-section-title span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-section-title a {
    flex-shrink: 0;
    color: rgba(232, 220, 196, 0.68);
    font-size: 0.72rem;
    text-decoration: none;
    text-transform: none;
}

.compact-card-list {
    display: grid;
    gap: 9px;
}

.public-shell .premium-card {
    min-width: 0;
    min-height: 0;
    padding: 12px;
}

.public-shell .premium-card-title {
    min-width: 0;
    color: #fff8ec;
    font-size: 0.94rem;
    overflow-wrap: anywhere;
}

.participant-status-strip {
    display: grid;
    gap: 9px;
}

.participant-status-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(89, 240, 130, 0.12), transparent 58%),
        rgba(20, 18, 15, 0.84);
}

.participant-status-card[data-tone="paused"] {
    background:
        linear-gradient(135deg, rgba(228, 189, 88, 0.14), transparent 58%),
        rgba(20, 18, 15, 0.84);
}

.participant-status-card[data-tone="closed"] {
    background:
        linear-gradient(135deg, rgba(169, 184, 205, 0.12), transparent 58%),
        rgba(20, 18, 15, 0.84);
}

.participant-status-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #15120c;
    background: #59f082;
}

.participant-status-card[data-tone="paused"] .participant-status-icon {
    background: #e4bd58;
}

.participant-status-card[data-tone="closed"] .participant-status-icon {
    color: #f2eadc;
    background: rgba(232, 220, 196, 0.16);
}

.screen-legend {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(138, 180, 248, 0.08), transparent 58%),
        rgba(20, 18, 15, 0.78);
}

.admin-shell .screen-legend {
    border-color: rgba(53, 240, 199, 0.16);
    background:
        linear-gradient(135deg, rgba(53, 240, 199, 0.08), transparent 62%),
        rgba(7, 15, 24, 0.88);
}

.screen-legend-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f8fbff;
    font-size: 0.82rem;
    font-weight: 900;
}

.screen-legend-head i {
    color: #52ffd1;
}

.screen-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.screen-legend-grid div {
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid rgba(232, 220, 196, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-shell .screen-legend-grid div {
    border-color: rgba(148, 163, 184, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.screen-legend-grid span,
.screen-legend-grid strong {
    display: block;
    min-width: 0;
}

.screen-legend-grid span {
    margin-bottom: 3px;
    color: #52ffd1;
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.screen-legend-grid strong {
    color: rgba(248, 251, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 760;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.status-badge {
    --status-accent: #cbd5e1;
    --status-bg: rgba(148, 163, 184, 0.12);
    --status-border: rgba(148, 163, 184, 0.24);
    display: inline-grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "icon label"
        "icon value";
    align-items: center;
    column-gap: 7px;
    min-width: 0;
    max-width: 100%;
    padding: 7px 9px;
    border: 1px solid var(--status-border);
    border-radius: 8px;
    color: #fff8ec;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--status-accent) 18%, transparent), transparent 68%),
        var(--status-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.status-badge i {
    grid-area: icon;
    color: var(--status-accent);
    font-size: 1rem;
    line-height: 1;
}

.status-badge span {
    grid-area: label;
    color: rgba(232, 220, 196, 0.58);
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.status-badge strong {
    grid-area: value;
    min-width: 0;
    color: #fff8ec;
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.cup-state-badge.is-active,
.readiness-badge.is-ready {
    --status-accent: #59f082;
    --status-bg: rgba(89, 240, 130, 0.10);
    --status-border: rgba(89, 240, 130, 0.28);
}

.cup-state-badge.is-finalized {
    --status-accent: #f6c65b;
    --status-bg: rgba(246, 198, 91, 0.11);
    --status-border: rgba(246, 198, 91, 0.30);
}

.cup-state-badge.is-inactive,
.readiness-badge.is-locked {
    --status-accent: #a9b8cd;
    --status-bg: rgba(169, 184, 205, 0.10);
    --status-border: rgba(169, 184, 205, 0.22);
}

.entry-status-badge.is-approved {
    --status-accent: #52ffd1;
    --status-bg: rgba(82, 255, 209, 0.10);
    --status-border: rgba(82, 255, 209, 0.28);
}

.entry-status-badge.is-pending,
.sample-review-badge.is-pending,
.sample-review-badge.is-authorized {
    --status-accent: #f6c65b;
    --status-bg: rgba(246, 198, 91, 0.11);
    --status-border: rgba(246, 198, 91, 0.30);
}

.entry-status-badge.is-rejected,
.entry-status-badge.is-removed,
.sample-review-badge.is-rejected {
    --status-accent: #ff7676;
    --status-bg: rgba(255, 118, 118, 0.11);
    --status-border: rgba(255, 118, 118, 0.28);
}

.entry-status-badge.is-not_joined {
    --status-accent: #8ab4f8;
    --status-bg: rgba(138, 180, 248, 0.10);
    --status-border: rgba(138, 180, 248, 0.26);
}

.cup-phase-badge.is-open {
    --status-accent: #59f082;
    --status-bg: rgba(89, 240, 130, 0.11);
    --status-border: rgba(89, 240, 130, 0.30);
}

.cup-phase-badge.is-paused {
    --status-accent: #f6c65b;
    --status-bg: rgba(246, 198, 91, 0.11);
    --status-border: rgba(246, 198, 91, 0.30);
}

.cup-phase-badge.is-closed {
    --status-accent: #ff7676;
    --status-bg: rgba(255, 118, 118, 0.10);
    --status-border: rgba(255, 118, 118, 0.26);
}

.cup-phase-badge.is-not_started {
    --status-accent: #8ab4f8;
    --status-bg: rgba(138, 180, 248, 0.10);
    --status-border: rgba(138, 180, 248, 0.24);
}

.participant-status-copy {
    min-width: 0;
}

.participant-status-copy strong,
.participant-status-copy span {
    display: block;
}

.participant-status-copy strong {
    color: #fff8ec;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.participant-status-copy span {
    color: rgba(232, 220, 196, 0.64);
    font-size: 0.74rem;
}

.participant-status-countdown {
    margin-top: 6px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: rgba(232, 220, 196, 0.72);
}

.participant-status-countdown span {
    color: rgba(232, 220, 196, 0.56);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.participant-status-countdown strong {
    color: #59f082;
    font-size: 0.92rem;
}

.participant-status-mini {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 7px 9px;
    border: 1px solid rgba(89, 240, 130, 0.24);
    border-radius: 999px;
    color: #dfffe6;
    font-size: 0.74rem;
    font-weight: 800;
    background: rgba(89, 240, 130, 0.10);
}

.participant-status-mini.is-paused {
    border-color: rgba(228, 189, 88, 0.28);
    color: #fff0bd;
    background: rgba(228, 189, 88, 0.11);
}

.compact-card-list .premium-card > .d-flex {
    min-width: 0;
}

.compact-card-list .premium-card .badge,
.compact-card-list .premium-card .btn {
    flex-shrink: 0;
}

.compact-card-list .premium-meta {
    overflow-wrap: anywhere;
}

.cup-catalog-tools .input-group-text {
    border-color: rgba(232, 220, 196, 0.16);
    color: rgba(232, 220, 196, 0.72);
    background: rgba(255, 255, 255, 0.055);
}

.cup-filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.cup-filter-row::-webkit-scrollbar {
    display: none;
}

.cup-filter {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(232, 220, 196, 0.16);
    border-radius: 999px;
    color: rgba(232, 220, 196, 0.76);
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.045);
}

.cup-filter.active {
    border-color: rgba(214, 180, 117, 0.62);
    color: #15120c;
    background: linear-gradient(135deg, #ead7ad, #b8945d);
}

.cup-catalog-summary {
    min-height: 150px;
}

.cup-catalog-summary .app-hero-content {
    padding-top: 42px;
}

.cup-catalog-card {
    overflow: hidden;
    transition: transform 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
}

.cup-catalog-card:active {
    transform: scale(0.99);
}

.cup-card-cover {
    position: relative;
    height: 132px;
    display: grid;
    place-items: end start;
    margin: -18px -18px 14px;
    overflow: hidden;
    color: #fff8ec;
    text-decoration: none;
    background:
        linear-gradient(145deg, rgba(214, 180, 117, 0.16), rgba(89, 240, 130, 0.10)),
        #15120c;
}

.cup-card-cover img,
.cup-detail-cover > img,
.admin-cup-cover-hero > img {
    position: absolute;
    inset: 0;
}

.cup-card-cover img,
.cup-detail-cover > img,
.admin-cup-cover-hero > img,
.admin-cover-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cup-card-cover::after,
.cup-detail-cover::after,
.admin-cup-cover-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 7, 0.08), rgba(8, 8, 7, 0.88));
    pointer-events: none;
}

.cup-card-cover span {
    position: relative;
    z-index: 1;
    margin: 10px;
    padding: 5px 9px;
    border: 1px solid rgba(232, 220, 196, 0.22);
    border-radius: 999px;
    color: #fff8ec;
    background: rgba(8, 8, 7, 0.58);
    backdrop-filter: blur(10px);
    font-size: 0.7rem;
    font-weight: 800;
}

.cup-card-cover.is-empty i {
    position: relative;
    z-index: 1;
    align-self: center;
    justify-self: center;
    color: rgba(232, 220, 196, 0.72);
    font-size: 2.1rem;
}

.cup-catalog-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.cup-catalog-meta span {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    color: rgba(232, 220, 196, 0.68);
    font-size: 0.68rem;
    line-height: 1.15;
    background: rgba(8, 8, 7, 0.34);
}

.cup-catalog-meta i {
    color: #d6b475;
    font-size: 0.92rem;
}

.cup-countdown {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(89, 240, 130, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(89, 240, 130, 0.12), transparent 60%),
        rgba(8, 8, 7, 0.34);
}

.cup-countdown i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #15120c;
    background: #59f082;
}

.cup-countdown span,
.cup-countdown strong {
    display: block;
}

.cup-countdown span {
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cup-countdown strong {
    margin-top: 2px;
    color: #fff8ec;
    font-size: 1rem;
    line-height: 1.1;
}

.cup-live-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px;
    border: 1px solid rgba(214, 180, 117, 0.20);
    border-radius: 8px;
    color: rgba(255, 248, 236, 0.74);
    background: rgba(214, 180, 117, 0.08);
    font-size: 0.84rem;
}

.cup-live-note i {
    flex: 0 0 auto;
    color: #d6b475;
    font-size: 1rem;
}

.cup-countdown.is-expired {
    border-color: rgba(255, 81, 93, 0.30);
    background:
        linear-gradient(135deg, rgba(255, 81, 93, 0.14), transparent 60%),
        rgba(8, 8, 7, 0.34);
}

.cup-countdown.is-expired i {
    color: #fff;
    background: #ff515d;
}

.cup-countdown-large {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
}

.cup-countdown-large i {
    width: 42px;
    height: 42px;
    font-size: 1.14rem;
}

.cup-countdown-large strong {
    font-size: 1.25rem;
}

.admin-cup-countdown {
    max-width: 190px;
    padding: 7px;
    grid-template-columns: 28px minmax(0, 1fr);
}

.admin-cup-countdown i {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
}

.admin-cup-countdown strong {
    font-size: 0.86rem;
}

.admin-cup-action-form {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-cup-timer-input {
    width: 180px;
    max-width: 100%;
}

.admin-cup-page-head {
    gap: 18px;
}

.admin-cup-page-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(203, 213, 225, 0.84);
}

.admin-cup-page-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 5px 9px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 8px;
    background: rgba(8, 17, 27, 0.42);
    font-size: 0.82rem;
    font-weight: 760;
}

.admin-cup-page-meta i {
    color: #52ffd1;
}

.admin-cup-overview-hero {
    min-height: 300px;
}

.admin-cup-overview-hero .admin-cup-cover-copy {
    min-height: 300px;
    gap: 12px;
    padding: clamp(18px, 3vw, 30px);
}

.admin-cup-hero-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-state-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 8px;
    color: #e7edf7;
    background: rgba(8, 17, 27, 0.64);
    font-size: 0.76rem;
    font-weight: 840;
    line-height: 1.15;
    backdrop-filter: blur(12px);
}

.admin-state-chip.is-good {
    border-color: rgba(53, 240, 199, 0.34);
    color: #dffdf7;
    background: rgba(21, 132, 116, 0.34);
}

.admin-state-chip.is-warn {
    border-color: rgba(246, 188, 66, 0.34);
    color: #fff0bf;
    background: rgba(246, 188, 66, 0.14);
}

.admin-state-chip.is-closed,
.admin-state-chip.is-idle {
    color: #d6dee9;
    background: rgba(15, 23, 42, 0.66);
}

.admin-cup-next-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: min(100%, 660px);
    margin-top: 6px;
    padding: 12px;
    border: 1px solid rgba(53, 240, 199, 0.22);
    border-radius: 8px;
    background: rgba(8, 17, 27, 0.62);
    backdrop-filter: blur(12px);
}

.admin-cup-next-step > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #06150f;
    background: #52ffd1;
}

.admin-cup-next-step strong,
.admin-cup-next-step span {
    display: block;
}

.admin-cup-next-step strong {
    color: #f8fbff;
    font-size: 0.95rem;
}

.admin-cup-next-step span {
    margin-top: 2px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.86rem;
}

.admin-cup-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.admin-cup-metric {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 126px;
}

.admin-cup-metric > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(53, 240, 199, 0.22);
    border-radius: 8px;
    color: #52ffd1;
    background: rgba(53, 240, 199, 0.10);
    font-size: 1.15rem;
}

.admin-metric-note {
    margin-top: 4px;
    color: rgba(203, 213, 225, 0.64);
    font-size: 0.78rem;
    font-weight: 720;
}

.admin-cup-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 16px;
}

.admin-voting-panel {
    overflow: hidden;
}

.admin-voting-form {
    padding: 14px;
    border: 1px solid rgba(169, 184, 205, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-form-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.admin-form-help {
    color: rgba(203, 213, 225, 0.66);
    font-size: 0.82rem;
}

.admin-form-state {
    flex: 0 0 auto;
    padding: 5px 8px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    color: rgba(226, 232, 240, 0.82);
    background: rgba(8, 17, 27, 0.56);
    font-size: 0.72rem;
    font-weight: 820;
}

.admin-voting-timer-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-voting-timer-row .form-control {
    flex: 1 1 230px;
}

.admin-voting-timer-row .btn {
    min-height: 42px;
}

.admin-voting-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 2px;
}

.admin-voting-actions form {
    margin: 0;
}

.vote-detail-row > td {
    background: rgba(3, 10, 18, 0.62) !important;
}

.vote-detail-panel {
    padding: 14px;
    border-top: 1px solid rgba(54, 214, 203, 0.12);
}

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

.vote-detail-card {
    padding: 12px;
    border: 1px solid rgba(54, 214, 203, 0.13);
    border-radius: 8px;
    background: rgba(6, 16, 27, 0.72);
}

.vote-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.vote-detail-head strong,
.vote-detail-head span {
    display: block;
}

.vote-detail-head span {
    color: #91a4ba;
    font-size: 0.82rem;
}

.vote-detail-score {
    min-width: 76px;
    padding: 7px 9px;
    border: 1px solid rgba(53, 240, 199, 0.22);
    border-radius: 8px;
    text-align: center;
    background: rgba(53, 240, 199, 0.08);
}

.vote-detail-score span {
    color: #91a4ba;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.vote-detail-score strong {
    color: #dffff7;
    font-size: 1rem;
}

.vote-part-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.vote-part-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(99, 148, 181, 0.16);
    border-radius: 8px;
    background: rgba(2, 8, 15, 0.55);
}

.vote-part-pill span {
    color: #b8c5d3;
    font-size: 0.78rem;
    font-weight: 700;
}

.vote-part-pill strong {
    color: #f8fbff;
}

.vote-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f5f7fb;
    background: rgba(255, 255, 255, 0.08);
}

.vote-category-badge-lg {
    min-height: 38px;
    padding: 0.35rem 0.95rem;
    font-size: 0.82rem;
}

.vote-category-badge.is-hash {
    border-color: rgba(255, 196, 87, 0.45);
    background: rgba(255, 196, 87, 0.14);
    color: #ffe7b0;
}

.vote-category-badge.is-sift {
    border-color: rgba(96, 176, 255, 0.45);
    background: rgba(96, 176, 255, 0.14);
    color: #b9dcff;
}

.vote-category-badge.is-rosin {
    border-color: rgba(186, 132, 255, 0.45);
    background: rgba(186, 132, 255, 0.14);
    color: #e4cbff;
}

.vote-category-badge.is-flower {
    border-color: rgba(89, 240, 130, 0.45);
    background: rgba(89, 240, 130, 0.14);
    color: #c9ffd6;
}

.vote-category-badge.is-exotica {
    border-color: rgba(255, 120, 196, 0.45);
    background: rgba(255, 120, 196, 0.14);
    color: #ffc7ea;
}

.vote-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 28px;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(89, 240, 130, 0.14);
    border: 1px solid rgba(89, 240, 130, 0.28);
    color: #d8ffe3;
    font-weight: 800;
}

.admin-category-panel {
    border: 1px solid rgba(169, 184, 205, 0.12);
}

.admin-category-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-category-panel-toggle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 280px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.admin-category-panel-toggle:hover,
.admin-category-panel-toggle:focus-visible {
    color: #f5f7fb;
}

.admin-category-chevron {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid rgba(169, 184, 205, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #d8e2ee;
    flex: 0 0 auto;
}

.admin-category-chevron i {
    transition: transform 0.2s ease;
}

.admin-category-panel-toggle[aria-expanded="false"] .admin-category-chevron i {
    transform: rotate(-90deg);
}

.admin-category-panel-copy {
    min-width: 0;
}

.admin-category-panel-body {
    padding-top: 16px;
    border-top: 1px solid rgba(169, 184, 205, 0.1);
    margin-top: 12px;
}

.vote-monitor-competitor-name {
    margin-top: 2px;
    font-size: 0.72rem;
    line-height: 1.25;
    color: rgba(169, 184, 205, 0.78);
    font-weight: 400;
}

.admin-category-subtoggle-row > td {
    background: rgba(3, 10, 18, 0.42) !important;
    border-top: 1px dashed rgba(169, 184, 205, 0.16);
}

.admin-category-subtoggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-category-subtoggle-icon {
    transition: transform 0.2s ease;
}

.admin-category-subtoggle[aria-expanded="true"] .admin-category-subtoggle-icon {
    transform: rotate(90deg);
}

.admin-category-pending-wrap-row > td {
    background: rgba(3, 10, 18, 0.52) !important;
}

.admin-category-pending-table {
    border-top: 1px solid rgba(169, 184, 205, 0.08);
}

.admin-category-pending-table tbody tr:first-child td {
    border-top: 0;
}

.admin-category-metrics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-category-metrics > div {
    min-width: 92px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(169, 184, 205, 0.14);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.admin-category-metrics strong {
    display: block;
    font-size: 1.15rem;
    color: #f5f7fb;
}

.admin-category-metrics span {
    display: block;
    margin-top: 2px;
    color: rgba(245, 247, 251, 0.62);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.podium-votes {
    margin-top: 6px;
    color: rgba(245, 247, 251, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

.vote-detail-notes {
    margin-bottom: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #d8e2ee;
    background: rgba(148, 163, 184, 0.08);
}

.admin-category-list {
    max-height: 390px;
    overflow: auto;
    padding-right: 4px;
    scrollbar-color: rgba(169, 184, 205, 0.34) transparent;
}

.admin-category-list .premium-card {
    border-color: rgba(148, 163, 184, 0.14);
    background: rgba(8, 17, 27, 0.42);
}

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

.admin-cup-shortcuts a {
    min-height: 78px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(169, 184, 205, 0.14);
    border-radius: 8px;
    color: #eef6ff;
    text-align: left;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.045);
}

.admin-cup-shortcuts a:hover {
    border-color: rgba(89, 240, 130, 0.28);
    background: rgba(89, 240, 130, 0.08);
}

.admin-cup-shortcuts i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--hw-green);
    font-size: 1.25rem;
    background: rgba(89, 240, 130, 0.08);
}

.admin-cup-shortcuts span {
    font-size: 0.84rem;
    font-weight: 800;
}

.w-fit {
    width: fit-content;
}

.cup-catalog-empty {
    margin-top: 10px;
}

.public-shell .premium-page-head {
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background: rgba(20, 18, 15, 0.68);
}

.public-shell .premium-page-head h1,
.app-page-head h1 {
    margin: 0;
    color: #fff8ec;
    font-size: 1.08rem;
    font-weight: 900;
}

.app-page-head {
    display: grid;
    grid-template-columns: 38px 1fr 24px;
    align-items: center;
    gap: 10px;
}

.app-page-head .icon-chip:not(.icon-chip-labeled) {
    width: 34px;
    height: 34px;
}

.app-page-head .icon-chip.icon-chip-labeled {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 0.78rem;
}

.btn-copy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    white-space: nowrap;
}

.public-menu-close,
.public-app-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.admin-menu-toggle-label,
.menu-close-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cup-detail-cover,
.admin-cup-cover-hero {
    position: relative;
    min-height: 238px;
    overflow: hidden;
    border: 1px solid rgba(232, 220, 196, 0.15);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(214, 180, 117, 0.18), rgba(89, 240, 130, 0.08)),
        #15120c;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.cup-detail-cover-copy,
.admin-cup-cover-copy {
    position: relative;
    z-index: 1;
    min-height: 238px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 18px;
}

.cup-detail-cover h2,
.admin-cup-cover-hero h2 {
    margin: 0;
    color: #fff8ec;
    font-size: 1.35rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.cup-detail-cover p,
.admin-cup-cover-hero p {
    max-width: 58ch;
    margin: 0;
    color: rgba(255, 248, 236, 0.74);
    overflow-wrap: anywhere;
}

.cup-detail-cover-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cup-detail-cover-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 999px;
    color: rgba(255, 248, 236, 0.78);
    background: rgba(8, 8, 7, 0.48);
    font-size: 0.76rem;
    font-weight: 800;
}

.admin-cover-preview {
    width: min(100%, 420px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(169, 184, 205, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-cup-title-cell {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.admin-cup-thumb {
    width: 64px;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(169, 184, 205, 0.18);
    border-radius: 8px;
    color: rgba(245, 247, 251, 0.64);
    background: rgba(255, 255, 255, 0.045);
    text-decoration: none;
}

.admin-cup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-dot {
    width: 10px;
    height: 10px;
    justify-self: center;
    border-radius: 999px;
    background: rgba(232, 220, 196, 0.35);
}

.status-dot.is-on {
    background: #70e68d;
    box-shadow: 0 0 14px rgba(112, 230, 141, 0.55);
}

.notification-page-count {
    min-width: 28px;
    height: 28px;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(232, 220, 196, 0.16);
    border-radius: 999px;
    color: rgba(232, 220, 196, 0.72);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.76rem;
    font-weight: 900;
}

.notification-page-count.has-unread {
    border-color: rgba(89, 240, 130, 0.32);
    color: #07100b;
    background: #59f082;
    box-shadow: 0 0 0 6px rgba(89, 240, 130, 0.10);
}

.notification-premium-modal .modal-dialog {
    max-width: min(440px, calc(100vw - 24px));
}

.notification-premium-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(232, 220, 196, 0.18);
    border-radius: 8px;
    color: #f2eadc;
    background:
        linear-gradient(155deg, rgba(89, 240, 130, 0.10), transparent 38%),
        linear-gradient(145deg, rgba(31, 29, 24, 0.98), rgba(12, 12, 11, 0.98));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.notification-premium-modal .modal-header,
.notification-premium-modal .modal-footer {
    border: 0;
}

.notification-premium-modal .modal-header {
    align-items: flex-start;
    padding: 20px 20px 8px;
}

.notification-premium-modal .modal-title {
    margin: 2px 0 0;
    color: #fff8ec;
    font-size: 1.18rem;
    font-weight: 900;
}

.notification-premium-modal .modal-body {
    padding: 8px 20px 14px;
}

.notification-premium-modal .modal-footer {
    justify-content: space-between;
    padding: 8px 20px 20px;
}

.notification-premium-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-bottom: 12px;
}

.notification-premium-summary > div,
.notification-premium-summary > a {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.notification-premium-summary > a {
    align-items: center;
    min-width: 92px;
    color: rgba(232, 220, 196, 0.82);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 900;
}

.notification-premium-summary > a i {
    color: #d6b475;
    font-size: 1.1rem;
}

.notification-premium-summary span {
    color: rgba(232, 220, 196, 0.58);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.notification-premium-summary strong {
    color: #fff8ec;
    font-size: 1.36rem;
    line-height: 1;
}

.notification-premium-list {
    display: grid;
    gap: 10px;
    max-height: min(52vh, 420px);
    overflow-y: auto;
    padding-right: 2px;
}

.notification-premium-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    background: rgba(20, 18, 15, 0.72);
}

.notification-premium-item.is-unread {
    border-color: rgba(89, 240, 130, 0.32);
    background:
        linear-gradient(135deg, rgba(89, 240, 130, 0.12), transparent 62%),
        rgba(20, 18, 15, 0.84);
}

.notification-premium-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #d6b475;
    background: rgba(214, 180, 117, 0.12);
}

.notification-premium-item.is-unread .notification-premium-icon {
    color: #07100b;
    background: #59f082;
}

.notification-premium-copy {
    min-width: 0;
}

.notification-premium-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: rgba(232, 220, 196, 0.54);
    font-size: 0.68rem;
    font-weight: 800;
}

.notification-premium-meta strong {
    padding: 2px 7px;
    border-radius: 999px;
    color: #07100b;
    background: #59f082;
    font-size: 0.62rem;
    text-transform: uppercase;
}

.notification-premium-copy h3 {
    margin: 0 0 5px;
    color: #fff8ec;
    font-size: 0.96rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.notification-premium-copy p {
    margin: 0 0 10px;
    color: rgba(232, 220, 196, 0.68);
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.notification-premium-empty {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    color: rgba(232, 220, 196, 0.62);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.notification-premium-empty i {
    color: #d6b475;
    font-size: 1.8rem;
}

.notification-report-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.notification-report-summary > div,
.notification-report-summary form {
    min-height: 66px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 8px;
    background: rgba(20, 18, 15, 0.72);
}

.notification-report-summary span {
    color: rgba(232, 220, 196, 0.58);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.notification-report-summary strong {
    color: #fff8ec;
    font-size: 1.18rem;
    line-height: 1;
}

.notification-report-summary form {
    grid-column: 1 / -1;
}

.notification-report-list {
    display: grid;
    gap: 10px;
}

.notification-report-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    background: rgba(20, 18, 15, 0.72);
}

.notification-report-item.is-unread {
    border-color: rgba(89, 240, 130, 0.28);
    background:
        linear-gradient(135deg, rgba(89, 240, 130, 0.12), transparent 58%),
        rgba(20, 18, 15, 0.82);
}

.notification-report-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #d6b475;
    background: rgba(214, 180, 117, 0.12);
}

.notification-report-item.is-unread .notification-report-icon {
    color: #07100b;
    background: #59f082;
}

.notification-report-copy {
    min-width: 0;
}

.notification-report-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    color: rgba(232, 220, 196, 0.54);
    font-size: 0.68rem;
    font-weight: 800;
}

.notification-report-meta strong {
    padding: 2px 7px;
    border-radius: 999px;
    color: #07100b;
    background: #59f082;
    font-size: 0.62rem;
    text-transform: uppercase;
}

.notification-report-copy h2 {
    margin: 0 0 5px;
    color: #fff8ec;
    font-size: 0.96rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.notification-report-copy p {
    margin: 0 0 10px;
    color: rgba(232, 220, 196, 0.68);
    font-size: 0.82rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.compact-status-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.public-shell .alert {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.86rem;
}

.sample-state-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 0.34rem 0.58rem;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 999px;
    color: rgba(232, 220, 196, 0.74);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.sample-state-badge.is-released {
    border-color: rgba(89, 240, 130, 0.42);
    color: #07100b;
    background: linear-gradient(135deg, #7dff99, #42e871);
    box-shadow: 0 0 0 4px rgba(89, 240, 130, 0.10);
}

.sample-state-badge.is-competing {
    border-color: rgba(57, 167, 255, 0.42);
    color: #e8f7ff;
    background: rgba(57, 167, 255, 0.18);
}

.sample-state-badge.is-suspended {
    border-color: rgba(255, 193, 7, 0.46);
    color: #ffd760;
    background: rgba(255, 193, 7, 0.12);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.07);
}

.sample-state-badge.is-not-competing {
    border-color: rgba(255, 81, 93, 0.36);
    color: #ff9da4;
    background: rgba(255, 81, 93, 0.12);
}

.sample-state-badge.is-hidden-code {
    border-color: rgba(169, 184, 205, 0.18);
    color: rgba(232, 220, 196, 0.62);
    background: rgba(255, 255, 255, 0.045);
}

.public-shell .table {
    font-size: 0.84rem;
}

.public-shell .table thead th,
.public-shell .table tbody td {
    padding: 10px 8px;
}

.public-shell .scan-card {
    min-height: 0;
}

.public-shell .scan-card::before {
    display: none;
}

.public-shell .scan-card h2,
.public-shell .vote-panel h2 {
    font-size: 0.98rem;
}

.public-shell .qr-symbol-trigger {
    gap: 6px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    border-color: rgba(214, 180, 117, 0.26);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), transparent 52%),
        rgba(22, 20, 17, 0.82);
}

.public-shell .qr-symbol-trigger .scan-frame {
    width: 92px;
}

.public-shell .scan-frame {
    width: min(150px, 42vw);
}

.public-shell .scan-frame::before,
.public-shell .scan-frame::after,
.public-shell .scan-frame .scan-inner::before,
.public-shell .scan-frame .scan-inner::after {
    width: 34px;
    height: 34px;
    border-color: rgba(232, 220, 196, 0.72);
}

.public-shell .scan-inner {
    width: 62px;
    height: 62px;
    background: linear-gradient(to bottom, rgba(214, 180, 117, 0.16), rgba(214, 180, 117, 0.04));
    box-shadow: inset 0 -2px 0 rgba(214, 180, 117, 0.28);
}

.public-shell .qr-step-list {
    gap: 7px;
    font-size: 0.82rem;
}

.public-shell .qr-step-list span {
    width: 22px;
    height: 22px;
    background: #d6b475;
}

.public-shell .scanner-status {
    min-height: 0;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.84rem;
}

.landing-panel {
    position: relative;
    isolation: isolate;
    max-width: 880px;
    margin-inline: auto;
    padding-block: clamp(36px, 8vh, 92px);
}

.public-guest-main .landing-panel {
    padding-block: clamp(12px, 3vh, 28px) clamp(54px, 8vh, 88px);
}

.landing-panel > .hw-card {
    z-index: 2;
    transition: filter 220ms ease;
}

.login-card-shell {
    max-width: 520px;
}

.landing-seal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(0);
    transition: opacity 220ms ease, visibility 220ms ease, backdrop-filter 220ms ease;
}

.landing-seals {
    position: absolute;
    right: clamp(-34px, -3vw, -20px);
    bottom: clamp(-28px, -2.4vh, -16px);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: clamp(4px, 0.8vw, 10px);
    pointer-events: auto;
    animation: seal-layer 4200ms step-end both;
}

.landing-seal {
    --seal-y: 0px;
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    line-height: 0;
    cursor: zoom-in;
    opacity: 0.38;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.48));
    transform-origin: 50% 72%;
    animation: seal-stick 3800ms cubic-bezier(0.2, 0.9, 0.22, 1) both;
    transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.landing-seal img {
    display: block;
    width: clamp(74px, 8vw, 118px);
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.landing-seal:nth-child(2) {
    --seal-y: -8px;
    transform: translateY(var(--seal-y));
    animation-name: seal-stick-raised;
    animation-delay: 320ms;
}

.landing-seal:nth-child(2) img {
    width: clamp(68px, 7.5vw, 110px);
}

.landing-seal:hover,
.landing-seal:focus-visible {
    opacity: 0.7;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.62));
    outline: 0;
}

.landing-panel.is-seal-zoomed .landing-seal-backdrop {
    visibility: visible;
    opacity: 1;
    backdrop-filter: blur(9px);
}

.landing-panel.is-seal-zoomed > .hw-card {
    filter: blur(3px);
}

.landing-panel.is-seal-zoomed .landing-seals {
    z-index: 70;
    animation: none;
}

.landing-panel.is-seal-zoomed .landing-seal {
    pointer-events: none;
}

.landing-panel.is-seal-zoomed .landing-seal.is-active {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 71;
    visibility: visible;
    opacity: 1;
    filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.72));
    animation: none;
    transform: translate(-50%, -50%) scale(2.18);
    cursor: zoom-out;
    pointer-events: auto;
}

.landing-panel.is-seal-zoomed .landing-seal.is-active img {
    width: min(38vw, 250px);
    max-width: 72vw;
}

@keyframes seal-layer {
    0%,
    86% {
        z-index: 3;
    }

    87%,
    100% {
        z-index: 1;
    }
}

@keyframes seal-stick {
    0% {
        opacity: 0;
        transform: translate(138px, calc(var(--seal-y) + 104px)) rotate(18deg) scale(1.26);
    }

    52% {
        opacity: 1;
        transform: translateY(var(--seal-y)) rotate(-7deg) scale(1.04);
    }

    66% {
        opacity: 0.92;
        transform: translateY(var(--seal-y)) rotate(3deg) scale(0.96);
    }

    82% {
        opacity: 0.72;
        transform: translateY(var(--seal-y)) rotate(0deg) scale(1);
    }

    88% {
        opacity: 0.58;
        transform: translateY(var(--seal-y)) rotate(0deg) scale(1);
    }

    100% {
        opacity: 0.38;
        transform: translateY(var(--seal-y)) rotate(0deg) scale(1);
    }
}

@keyframes seal-stick-raised {
    0% {
        opacity: 0;
        transform: translate(154px, calc(var(--seal-y) + 98px)) rotate(-16deg) scale(1.24);
    }

    52% {
        opacity: 1;
        transform: translateY(var(--seal-y)) rotate(6deg) scale(1.04);
    }

    66% {
        opacity: 0.92;
        transform: translateY(var(--seal-y)) rotate(-3deg) scale(0.96);
    }

    82% {
        opacity: 0.72;
        transform: translateY(var(--seal-y)) rotate(0deg) scale(1);
    }

    88% {
        opacity: 0.58;
        transform: translateY(var(--seal-y)) rotate(0deg) scale(1);
    }

    100% {
        opacity: 0.38;
        transform: translateY(var(--seal-y)) rotate(0deg) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-seals,
    .landing-seal {
        animation: none;
    }
}

.registration-flow {
    max-width: 920px;
}

.registration-flow-head h1 {
    margin: 0;
    color: #f5f0e7;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 900;
}

.registration-form {
    display: grid;
    gap: 18px;
}

.registration-step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.026);
}

.registration-step-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #15120c;
    background: #d6b475;
    font-weight: 900;
}

.registration-step h2 {
    margin: 0 0 12px;
    color: #f2eadc;
    font-size: 1rem;
    font-weight: 850;
}

.guest-registration {
    max-width: 760px;
}

.guest-registration h1 {
    margin: 0;
    color: #f5f0e7;
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 900;
}

.guest-success {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 18px 10px;
    text-align: center;
}

.guest-success-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #52ffd1;
    background: rgba(53, 240, 199, 0.12);
    font-size: 1.9rem;
}

.guest-success h2 {
    margin: 0;
    color: #f8fbff;
    font-size: 1.45rem;
    font-weight: 900;
}

.guest-success p {
    margin: 0;
    color: rgba(203, 213, 225, 0.84);
}

.guest-confirmation {
    display: grid;
    gap: 2px;
    min-width: min(100%, 320px);
    margin-top: 8px;
    padding: 12px;
    border: 1px solid rgba(53, 240, 199, 0.18);
    border-radius: 8px;
    background: rgba(53, 240, 199, 0.06);
}

.guest-confirmation span {
    color: rgba(203, 213, 225, 0.78);
    font-size: 0.92rem;
}

.guest-qr-card {
    display: grid;
    gap: 8px;
    justify-items: center;
    width: min(100%, 280px);
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(53, 240, 199, 0.22);
    border-radius: 8px;
    background: rgba(8, 16, 28, 0.72);
}

.guest-qr-card img {
    width: min(100%, 220px);
    height: auto;
    border-radius: 8px;
    background: #fff;
}

.guest-qr-card strong {
    color: #f8fbff;
    font-size: 1rem;
    letter-spacing: 0.06em;
}

.guest-qr-card span {
    color: rgba(203, 213, 225, 0.78);
    font-size: 0.86rem;
    text-align: center;
}

.admin-guest-qr-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 72px;
}

.admin-guest-qr-code {
    font-size: 0.68rem;
    color: #9fb0c7;
    letter-spacing: 0.02em;
    text-align: center;
    word-break: break-all;
}

.admin-guests-board .sample-qr-thumb {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 2px;
}

.admin-guest-scan-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(250, 204, 21, 0.24);
    border-radius: 8px;
    background: rgba(250, 204, 21, 0.08);
}

.admin-guest-scan-warning.is-mobile-hint {
    border-color: rgba(53, 240, 199, 0.22);
    background: rgba(53, 240, 199, 0.08);
}

.admin-guest-scan-warning i {
    color: #facc15;
    font-size: 1.5rem;
    line-height: 1;
}

.admin-guest-scan-warning.is-mobile-hint i {
    color: #52ffd1;
}

.admin-guest-scan-warning strong {
    display: block;
    color: #f8fbff;
    font-size: 1rem;
}

.admin-guest-scan-warning p {
    margin: 4px 0 0;
    color: rgba(203, 213, 225, 0.82);
    font-size: 0.9rem;
}

.admin-guest-scan-reader-wrap {
    position: relative;
    min-height: 0;
}

.admin-guest-scan-page .qr-live-panel {
    min-height: 0;
}

.admin-guest-scan-page .qr-reader-box {
    min-height: 0;
}

.admin-guest-scan-page .admin-guest-scan-reader-wrap .qr-live-panel,
.admin-guest-scan-page .admin-guest-scan-reader-wrap .qr-reader-box {
    height: clamp(210px, 42vw, 260px);
}

.admin-guest-scan-mobile-top {
    display: none;
}

.admin-guest-scan-result.is-success {
    padding: 12px;
    border: 1px solid rgba(53, 240, 199, 0.24);
    border-radius: 8px;
    background: rgba(53, 240, 199, 0.08);
    color: #f8fbff;
}

.admin-guest-scan-result.is-warning,
.admin-guest-scan-result.is-danger {
    padding: 12px;
    border-radius: 8px;
    color: #f8fbff;
}

.admin-guest-scan-result.is-warning {
    border: 1px solid rgba(250, 204, 21, 0.24);
    background: rgba(250, 204, 21, 0.08);
}

.admin-guest-scan-result.is-danger {
    border: 1px solid rgba(248, 113, 113, 0.24);
    background: rgba(248, 113, 113, 0.08);
}

.admin-guest-scan-result-card {
    display: grid;
    gap: 2px;
    margin-top: 8px;
    color: rgba(203, 213, 225, 0.84);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .admin-guest-scan-page .admin-global-search,
    .admin-guest-scan-page .admin-topnav,
    .admin-guest-scan-page .admin-profile-chip,
    .admin-guest-scan-page .language-switcher {
        display: none !important;
    }

    .admin-guest-scan-page .admin-topbar {
        padding: 10px 12px;
        gap: 8px;
    }

    .admin-guest-scan-page .admin-topbar-actions {
        width: auto;
        margin-left: auto;
    }

    .admin-guest-scan-page main.container-fluid {
        padding: 10px 12px !important;
    }

    .admin-guest-scan-page .admin-guest-scan-head {
        display: none;
    }

    .admin-guest-scan-page .admin-guest-scan-mobile-top {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .admin-guest-scan-page .admin-guest-scan-mobile-panel.hw-card {
        padding: 12px !important;
    }

    .admin-guest-scan-page .admin-guest-scan-warning {
        padding: 10px 12px;
    }

    .admin-guest-scan-page .admin-guest-scan-warning.is-mobile-hint {
        margin-bottom: 10px !important;
    }

    .admin-guest-scan-page .admin-guest-scan-warning p {
        font-size: 0.82rem;
    }

    .admin-guest-scan-page .qr-live-panel,
    .admin-guest-scan-page .qr-reader-box,
    .admin-guest-scan-page .admin-guest-scan-reader-wrap .qr-live-panel,
    .admin-guest-scan-page .admin-guest-scan-reader-wrap .qr-reader-box {
        min-height: 0 !important;
        height: clamp(200px, 52vw, 240px) !important;
    }

    .admin-guest-scan-page .qr-marker-overlay .scan-frame,
    .admin-guest-scan-page .qr-empty-state .scan-frame {
        width: min(46vw, 150px);
    }

    .admin-guest-scan-page .qr-marker-overlay {
        background:
            linear-gradient(rgba(5, 8, 12, 0.54), rgba(5, 8, 12, 0.54)),
            radial-gradient(circle at center, transparent 0 72px, rgba(0, 0, 0, 0.30) 73px);
    }

    .admin-guest-scan-page .admin-guest-scan-controls .input-group {
        display: flex;
        flex-wrap: nowrap;
    }
}

.admin-private-link {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
}

.admin-private-link > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #52ffd1;
    background: rgba(53, 240, 199, 0.12);
}

.guest-date-kpi {
    font-size: 0.92rem !important;
    line-height: 1.25 !important;
}

.entry-sample-list,
.entry-sample-admin-list {
    display: grid;
    gap: 10px;
}

.entry-sample-row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 0.9fr 132px 42px;
    gap: 8px;
    align-items: center;
}

.entry-sample-quantity .input-group-text {
    padding-inline: 0.6rem;
    font-size: 0.78rem;
}

.entry-sample-admin-panel {
    padding: 12px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.026);
}

.entry-sample-admin-item {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 86px 120px 128px 96px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(232, 220, 196, 0.10);
    border-radius: 8px;
    background: rgba(8, 8, 7, 0.42);
}

.entry-sample-admin-item-registered {
    grid-template-columns: minmax(180px, 1fr) 92px 92px minmax(130px, 0.75fr) 210px;
}

.entry-sample-admin-item-registered.admin-sample-form {
    grid-template-columns: minmax(300px, 1.25fr) 96px 96px minmax(132px, 0.72fr) 188px;
    align-items: end;
}

.admin-sample-form-main {
    display: grid;
    grid-template-columns: minmax(140px, 1.1fr) minmax(105px, 0.72fr) minmax(120px, 0.9fr) minmax(92px, 0.65fr);
    gap: 8px;
}

.admin-sample-form label,
.admin-sample-form-main label {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.admin-sample-form .form-control,
.admin-sample-form .form-select {
    min-height: 34px;
}

.admin-competitor-picker {
    position: relative;
}

.admin-competitor-picker-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 10px 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(8, 12, 18, 0.72);
}

.admin-competitor-picker-control:focus-within {
    border-color: rgba(55, 216, 111, 0.55);
    box-shadow: 0 0 0 0.15rem rgba(55, 216, 111, 0.12);
}

.admin-competitor-picker-control > .bi-search {
    color: rgba(232, 220, 196, 0.55);
    font-size: 0.95rem;
}

.admin-competitor-picker-control .form-control {
    min-height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.admin-competitor-picker-control .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.admin-competitor-picker-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    color: rgba(232, 220, 196, 0.82);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.admin-competitor-picker-toggle:hover,
.admin-competitor-picker-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.admin-competitor-picker.is-open .admin-competitor-picker-toggle .bi-chevron-down {
    transform: rotate(180deg);
}

.admin-competitor-picker-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 4px;
    max-height: 280px;
    overflow: auto;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: #121821;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.admin-competitor-picker-option {
    display: grid;
    gap: 2px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    text-align: left;
    color: #f4f7fb;
    background: transparent;
    cursor: pointer;
}

.admin-competitor-picker-option strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.admin-competitor-picker-option small {
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.78rem;
}

.admin-competitor-picker-option:hover,
.admin-competitor-picker-option:focus-visible,
.admin-competitor-picker-option.is-selected {
    background: rgba(55, 216, 111, 0.12);
}

.admin-competitor-picker-empty {
    padding: 12px;
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.86rem;
    text-align: center;
}

.admin-sample-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.admin-sample-category-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(232, 220, 196, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(232, 220, 196, 0.88);
    font-size: 0.82rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.admin-sample-category-filter:hover,
.admin-sample-category-filter:focus-visible {
    border-color: rgba(55, 216, 111, 0.45);
    background: rgba(55, 216, 111, 0.08);
}

.admin-sample-category-filter.is-active {
    border-color: rgba(55, 216, 111, 0.65);
    background: rgba(55, 216, 111, 0.14);
    box-shadow: 0 0 0 0.12rem rgba(55, 216, 111, 0.08);
}

.admin-sample-category-filter .vote-category-badge {
    margin: 0;
}

.admin-category-voting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.admin-category-voting-card {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(232, 220, 196, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.admin-category-voting-card.is-open {
    border-color: rgba(55, 216, 111, 0.45);
    background: rgba(55, 216, 111, 0.08);
}

.admin-category-voting-inline-status.is-open {
    color: #37d86f;
}

.admin-category-voting-gate {
    display: grid;
    gap: 6px;
    min-width: 140px;
}

.admin-category-voting-gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hw-confirm-modal .modal-footer {
    gap: 10px;
}

.entry-sample-admin-item strong,
.entry-sample-admin-item span {
    display: block;
}

.entry-sample-admin-item span,
.entry-sample-admin-item label span,
.entry-sample-status-toggle > span,
.entry-sample-admin-qty small {
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.72rem;
}

.entry-sample-status-toggle {
    display: grid;
    gap: 6px;
}

.entry-sample-status-options {
    display: inline-grid;
    grid-template-columns: repeat(3, 34px);
    gap: 5px;
    width: max-content;
    padding: 4px;
    border: 1px solid rgba(232, 220, 196, 0.10);
    border-radius: 8px;
    background: rgba(8, 8, 7, 0.34);
}

.entry-sample-status-options button {
    width: 34px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 7px;
    color: rgba(232, 220, 196, 0.64);
    background: transparent;
}

.entry-sample-status-options button:hover,
.entry-sample-status-options button.active {
    color: #fff8ec;
    background: rgba(255, 255, 255, 0.075);
}

.entry-sample-status-options button[data-entry-sample-status-option="pending"].active {
    border-color: rgba(246, 188, 66, 0.36);
    color: #ffd35d;
    background: rgba(246, 188, 66, 0.14);
}

.entry-sample-status-options button[data-entry-sample-status-option="authorized"].active {
    border-color: rgba(53, 240, 199, 0.36);
    color: #52ffd1;
    background: rgba(53, 240, 199, 0.14);
}

.entry-sample-status-options button[data-entry-sample-status-option="rejected"].active {
    border-color: rgba(255, 81, 93, 0.36);
    color: #ff7676;
    background: rgba(255, 81, 93, 0.14);
}

.entry-sample-admin-qty {
    display: grid;
    gap: 2px;
    justify-items: center;
    text-align: center;
}

.entry-sample-admin-qty strong {
    font-size: 1rem;
}

.entry-sample-admin-code {
    min-width: 0;
}

.entry-sample-admin-code small,
.entry-sample-admin-code strong {
    display: block;
}

.entry-sample-admin-code small {
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.72rem;
}

.entry-sample-admin-code strong {
    overflow: hidden;
    color: #f2eadc;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-total-list {
    display: grid;
    gap: 8px;
}

.admin-total-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(232, 220, 196, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.admin-total-list span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scan-card {
    min-height: 270px;
    overflow: hidden;
}

.scan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 10%, rgba(89, 240, 130, 0.18), transparent 19rem);
    pointer-events: none;
}

.scan-frame {
    width: min(190px, 48vw);
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center;
    margin-inline: auto;
    color: #cdd5df;
}

.scan-frame::before,
.scan-frame::after,
.scan-frame .scan-inner::before,
.scan-frame .scan-inner::after {
    content: "";
    position: absolute;
    width: 44px;
    height: 44px;
    border-color: rgba(232, 240, 247, 0.72);
}

.scan-frame::before {
    left: 0;
    top: 0;
    border-top: 3px solid;
    border-left: 3px solid;
    border-radius: 14px 0 0 0;
}

.scan-frame::after {
    right: 0;
    top: 0;
    border-top: 3px solid;
    border-right: 3px solid;
    border-radius: 0 14px 0 0;
}

.scan-frame .scan-inner::before {
    left: 0;
    bottom: 0;
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-radius: 0 0 0 14px;
}

.scan-frame .scan-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 3px solid;
    border-right: 3px solid;
    border-radius: 0 0 14px 0;
}

.scan-inner {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    background: linear-gradient(to bottom, rgba(225, 244, 233, 0.16), rgba(225, 244, 233, 0.04));
    box-shadow: inset 0 -2px 0 rgba(89, 240, 130, 0.28);
}

.sample-preview {
    border: 1px solid rgba(169, 184, 205, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.sample-preview img {
    width: 138px;
    height: 138px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
}

.qr-live-panel {
    position: relative;
    min-height: 318px;
    border: 1px solid rgba(169, 184, 205, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(89, 240, 130, 0.10), transparent 11rem),
        rgba(0, 0, 0, 0.23);
}

.qr-reader-box {
    min-height: 318px;
}

.qr-reader-box video {
    border-radius: 14px;
    object-fit: cover;
}

.qr-reader-box img {
    display: none;
}

.qr-reader-box > div {
    border: 0 !important;
}

.qr-empty-state {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(15, 20, 29, 0.78), rgba(15, 20, 29, 0.42));
}

.qr-marker-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    background:
        linear-gradient(rgba(5, 8, 12, 0.54), rgba(5, 8, 12, 0.54)),
        radial-gradient(circle at center, transparent 0 118px, rgba(0, 0, 0, 0.30) 119px);
}

.scanner-status {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(169, 184, 205, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #cfd7e2;
}

.scanner-status[data-tone="active"] {
    border-color: rgba(57, 167, 255, 0.38);
    color: #d7ecff;
}

.scanner-status[data-tone="success"] {
    border-color: rgba(89, 240, 130, 0.45);
    color: #dcffe4;
}

.scanner-status[data-tone="warning"] {
    border-color: rgba(228, 189, 88, 0.46);
    color: #fff1c2;
}

.scanner-status[data-tone="danger"] {
    border-color: rgba(255, 81, 93, 0.46);
    color: #ffd3d7;
}

.sample-detail-card {
    border: 1px solid rgba(89, 240, 130, 0.20);
    border-radius: 14px;
    padding: 14px;
    background: rgba(89, 240, 130, 0.07);
}

.vote-panel {
    scroll-margin-top: 18px;
}

.score-card {
    padding: 12px;
    border: 1px solid rgba(169, 184, 205, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.score-total {
    min-width: 76px;
    padding: 8px 10px;
    border: 1px solid rgba(89, 240, 130, 0.24);
    border-radius: 8px;
    text-align: center;
    background: rgba(89, 240, 130, 0.08);
}

.score-total span {
    display: block;
    color: rgba(245, 247, 251, 0.68);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.score-total strong {
    display: block;
    color: #dcffe4;
    font-size: 1.1rem;
    line-height: 1.1;
}

.score-grid {
    display: grid;
    gap: 8px;
}

.score-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 86px;
    align-items: center;
    gap: 8px;
}

.score-row label {
    margin: 0;
    color: rgba(245, 247, 251, 0.86);
    font-size: 0.9rem;
    font-weight: 700;
}

.score-part-input {
    min-height: 38px;
    text-align: center;
}

.score-card-sheet .score-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.score-card-kicker {
    color: rgba(245, 247, 251, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.score-card-category {
    color: #f5f7fb;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.score-table-wrap {
    display: grid;
    gap: 8px;
}

.score-table-head,
.score-table-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 8px;
    align-items: center;
}

.score-table-head {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(169, 184, 205, 0.18);
    color: rgba(245, 247, 251, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.score-table-row label {
    margin: 0;
    color: rgba(245, 247, 251, 0.9);
    font-size: 0.88rem;
    font-weight: 800;
}

.score-final-box {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(169, 184, 205, 0.2);
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
}

.score-final-box span {
    display: block;
    color: rgba(245, 247, 251, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.score-final-box strong {
    display: block;
    margin-top: 6px;
    color: #dcffe4;
    font-size: 1.5rem;
    line-height: 1.1;
}

@media (max-width: 575.98px) {
    .score-table-head {
        display: none;
    }

    .score-table-row {
        grid-template-columns: 1fr;
        padding: 10px;
        border: 1px solid rgba(169, 184, 205, 0.14);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
    }
}

.scan-success-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(89, 240, 130, 0.42);
    border-radius: 12px;
    color: #eaffef;
    background: rgba(89, 240, 130, 0.12);
    box-shadow: 0 0 24px rgba(89, 240, 130, 0.12);
}

.scan-success-callout small {
    color: #cfeeda;
}

.scan-success-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #051109;
    background: var(--hw-green);
    box-shadow: 0 0 18px rgba(89, 240, 130, 0.34);
}

.scan-warning-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 193, 7, 0.42);
    border-radius: 12px;
    color: #fff3cd;
    background: rgba(255, 193, 7, 0.12);
    box-shadow: 0 0 24px rgba(255, 193, 7, 0.10);
}

.scan-warning-callout small {
    color: #ffe8a3;
}

.scan-warning-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #1a1400;
    background: #ffc107;
    box-shadow: 0 0 18px rgba(255, 193, 7, 0.28);
}

.sample-details-empty {
    min-height: 132px;
    display: grid;
    align-items: center;
}

.place-items-center {
    place-items: center;
}

body.qr-sheet-open {
    overflow: hidden;
}

.qr-sheet {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: grid;
    align-items: end;
    pointer-events: none;
}

.qr-sheet.is-open {
    pointer-events: auto;
}

.qr-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    transition: opacity .22s ease;
}

.qr-sheet.is-open .qr-sheet-backdrop {
    opacity: 1;
}

.qr-sheet-panel {
    position: relative;
    width: min(1160px, calc(100vw - 24px));
    max-height: min(88vh, 820px);
    overflow: auto;
    margin: 0 auto 12px;
    padding: 18px;
    border: 1px solid rgba(169, 184, 205, 0.18);
    border-radius: 22px 22px 16px 16px;
    background:
        radial-gradient(circle at 20% 10%, rgba(89, 240, 130, 0.13), transparent 18rem),
        linear-gradient(145deg, rgba(17, 23, 34, 0.98), rgba(8, 11, 17, 0.98));
    box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.52);
    transform: translateY(calc(100% + 24px));
    transition: transform .28s ease;
}

.qr-sheet.is-open .qr-sheet-panel {
    transform: translateY(0);
}

.qr-sheet-handle {
    width: 48px;
    height: 5px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.qr-live-panel-sheet {
    min-height: min(62vh, 520px);
}

.qr-live-panel-sheet .qr-reader-box {
    min-height: min(62vh, 520px);
}

.qr-step-list {
    display: grid;
    gap: 9px;
    color: #d7dee9;
}

.qr-symbol-trigger {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 18px;
    border: 1px solid rgba(89, 240, 130, 0.30);
    border-radius: 16px;
    color: #eaffef;
    background:
        radial-gradient(circle at center, rgba(89, 240, 130, 0.14), transparent 9rem),
        rgba(255, 255, 255, 0.04);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.qr-symbol-trigger:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(89, 240, 130, 0.62);
    background:
        radial-gradient(circle at center, rgba(89, 240, 130, 0.22), transparent 9rem),
        rgba(255, 255, 255, 0.06);
}

.qr-symbol-trigger:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.qr-symbol-trigger .scan-frame {
    width: 128px;
}

.qr-symbol-title {
    font-weight: 800;
}

.qr-symbol-subtitle {
    color: var(--hw-muted);
    font-size: 0.9rem;
}

.qr-step-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-step-list span {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #051109;
    font-weight: 800;
    background: var(--hw-green);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #eaf0f7;
    font-size: 0.84rem;
}

.ranking-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.ranking-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px 38px;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    color: #dce4ec;
}

.rank-code {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.rank-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7dff99, #48e977);
}

.premium-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(169, 184, 205, 0.12);
    border-radius: 16px;
    background:
        radial-gradient(circle at 12% 0%, rgba(89, 240, 130, 0.11), transparent 18rem),
        rgba(255, 255, 255, 0.035);
}

.premium-empty-state {
    min-height: 340px;
    display: grid;
    place-items: center;
    align-content: center;
}

.premium-empty-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    border: 1px solid rgba(89, 240, 130, 0.32);
    color: var(--hw-green);
    font-size: 2rem;
    background: var(--hw-green-soft);
}

.ranking-podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.podium-card {
    position: relative;
    min-height: 220px;
    padding: 18px;
    border: 1px solid rgba(169, 184, 205, 0.14);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
}

.podium-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -50px;
    top: -46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 66%);
}

.podium-rank-1 {
    border-color: rgba(228, 189, 88, 0.48);
    background: linear-gradient(145deg, rgba(228, 189, 88, 0.14), rgba(255, 255, 255, 0.04));
}

.podium-rank-2 {
    border-color: rgba(169, 184, 205, 0.36);
}

.podium-rank-3 {
    border-color: rgba(207, 132, 67, 0.40);
}

.podium-medal,
.rank-number {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
}

.podium-medal {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    color: #101010;
    background: linear-gradient(135deg, #ffe28a, #e4bd58);
}

.rank-number {
    width: 34px;
    height: 34px;
    color: #06110a;
    background: var(--hw-green);
}

.podium-score {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
}

.premium-table-wrap {
    border: 1px solid rgba(169, 184, 205, 0.10);
    border-radius: 14px;
}

.premium-table tbody tr td {
    padding-top: 14px;
    padding-bottom: 14px;
}

.premium-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.premium-card {
    min-height: 170px;
    border: 1px solid rgba(169, 184, 205, 0.14);
    border-radius: 16px;
    padding: 18px;
    background:
        radial-gradient(circle at 84% 12%, rgba(89, 240, 130, 0.10), transparent 8rem),
        rgba(255, 255, 255, 0.045);
}

.premium-card-title {
    font-weight: 800;
    font-size: 1.05rem;
}

.premium-meta {
    color: var(--hw-muted);
    font-size: 0.92rem;
}

.sample-qr-thumb {
    width: 76px;
    height: 76px;
    padding: 6px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.admin-sample-qr-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.admin-sample-qr-actions {
    display: grid;
    gap: 6px;
}

.admin-sample-qr-actions .btn {
    white-space: nowrap;
}

.admin-qr-label-test-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.admin-qr-label-test-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-qr-label-test-meta small {
    display: block;
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.72rem;
    margin-bottom: 2px;
}

.admin-qr-label-test-reader-wrap {
    min-height: 320px;
}

.admin-qr-label-test-result {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.admin-qr-label-test-result.is-success {
    border-color: rgba(55, 216, 111, 0.35);
}

.admin-qr-label-test-result.is-warning {
    border-color: rgba(255, 193, 7, 0.35);
}

.admin-qr-label-test-result.is-danger {
    border-color: rgba(255, 107, 107, 0.35);
}

.admin-qr-label-test-result-grid {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.admin-qr-label-test-result-grid small {
    display: block;
    color: rgba(232, 220, 196, 0.62);
    font-size: 0.72rem;
    margin-bottom: 2px;
}

.premium-dashboard {
    max-width: 1180px;
    margin-inline: auto;
}

.dashboard-hero,
.dashboard-actions,
.dashboard-search {
    display: flex;
    align-items: center;
}

.dashboard-hero {
    justify-content: space-between;
    gap: 16px;
}

.dashboard-actions {
    gap: 10px;
}

.icon-chip {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(169, 184, 205, 0.14);
    border-radius: 50%;
    color: #d8e2ee;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.icon-chip.icon-chip-labeled {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.icon-chip.icon-chip-labeled span {
    line-height: 1;
}

.icon-chip:hover {
    border-color: rgba(89, 240, 130, 0.42);
    color: #eaffef;
}

.dashboard-search {
    width: min(100%, 360px);
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(169, 184, 205, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    color: var(--hw-muted);
}

.dashboard-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--hw-text);
    background: transparent;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
    gap: 16px;
}

.metric-soft {
    min-height: 120px;
    padding: 16px;
}

.status-chip {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    border: 1px solid currentColor;
}

.status-green {
    color: #63f28a;
    background: rgba(89, 240, 130, 0.12);
}

.status-blue {
    color: #57bcff;
    background: rgba(57, 167, 255, 0.12);
}

.status-gold {
    color: #f0c85c;
    background: rgba(228, 189, 88, 0.12);
}

.compact-list {
    display: grid;
    gap: 8px;
}

.compact-list-head,
.compact-row {
    display: grid;
    grid-template-columns: 1.35fr .8fr .75fr;
    gap: 8px;
    align-items: center;
}

.compact-list-head {
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--hw-muted);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.045);
}

.compact-row {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid rgba(169, 184, 205, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.compact-row i {
    color: var(--hw-blue);
}

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

.qr-sample-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(169, 184, 205, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.qr-sample-card img {
    width: 96px;
    height: 96px;
    padding: 6px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
}

.qr-preview-link {
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.qr-preview-link:hover,
.qr-preview-link:focus-visible {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 16px rgba(89, 240, 130, 0.28));
}

.phone-scanner {
    width: min(230px, 100%);
    margin-inline: auto;
    padding: 12px 12px 14px;
    border-radius: 34px;
    border: 1px solid rgba(169, 184, 205, 0.20);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), transparent 18%),
        linear-gradient(145deg, #07090d, #1a212c);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.04), 0 20px 45px rgba(0, 0, 0, 0.35);
}

.phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 11px 6px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
}

.phone-bar {
    width: 58px;
    height: 4px;
    margin: 0 auto 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
}

.phone-screen {
    position: relative;
    min-height: 278px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 42%, rgba(89, 240, 130, 0.20), transparent 8rem),
        linear-gradient(180deg, rgba(216, 234, 216, 0.18), rgba(15, 17, 18, 0.96));
}

.phone-screen-link {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.phone-screen-link:hover,
.phone-screen-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(89, 240, 130, 0.36), 0 0 28px rgba(89, 240, 130, 0.16);
}

.phone-camera-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.10), transparent 38%),
        radial-gradient(circle at center, transparent 0 70px, rgba(0, 0, 0, 0.16) 72px);
    pointer-events: none;
}

.scan-frame-live {
    width: 168px;
    z-index: 1;
}

.phone-qr-image {
    width: 112px;
    height: 112px;
    object-fit: contain;
    padding: 6px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.07), 0 16px 30px rgba(0, 0, 0, 0.34);
}

.qr-mini {
    background:
        linear-gradient(90deg, #111 12px, transparent 12px) 0 0 / 24px 24px,
        linear-gradient(#111 12px, transparent 12px) 0 0 / 24px 24px,
        #fff;
}

.rich-ranking-list {
    list-style: none;
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
}

.rich-ranking-list li {
    display: grid;
    grid-template-columns: 28px 32px minmax(0, 1fr) 44px;
    gap: 9px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(169, 184, 205, 0.10);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.052);
}

.rich-ranking-list li.is-leader {
    border-color: rgba(89, 240, 130, 0.42);
    background: rgba(89, 240, 130, 0.12);
}

.rank-index {
    font-weight: 900;
    color: var(--hw-gold);
}

.rank-avatar {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hw-green);
    background: rgba(89, 240, 130, 0.10);
}

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

.rank-main strong,
.rank-main small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-main small {
    color: var(--hw-muted);
}

.rank-score {
    color: var(--hw-green);
    text-align: right;
}

.comparison-chart {
    min-height: 220px;
    overflow: hidden;
    border: 1px solid rgba(169, 184, 205, 0.10);
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.chart-legend {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    color: var(--hw-muted);
    font-size: 0.86rem;
}

.legend-dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-right: 6px;
    border-radius: 999px;
}

.legend-blue {
    background: var(--hw-blue);
    box-shadow: 0 0 12px rgba(57, 167, 255, 0.75);
}

.legend-green {
    background: var(--hw-green);
    box-shadow: 0 0 12px rgba(89, 240, 130, 0.75);
}

.comparison-chart svg {
    width: 100%;
    height: 230px;
    display: block;
}

.chart-empty-state {
    min-height: 230px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 28px;
    text-align: center;
    color: var(--hw-muted);
    background:
        radial-gradient(circle at center, rgba(89, 240, 130, 0.12), transparent 12rem),
        repeating-linear-gradient(0deg, transparent 0 48px, rgba(169, 184, 205, 0.08) 49px 50px);
}

.chart-empty-state i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--hw-green);
    background: rgba(89, 240, 130, 0.10);
    box-shadow: 0 0 24px rgba(89, 240, 130, 0.18);
}

.chart-empty-state strong {
    color: var(--hw-text);
}

.chart-empty-state span {
    max-width: 360px;
    font-size: 0.92rem;
}

.chart-grid {
    stroke: rgba(169, 184, 205, 0.13);
    stroke-width: 1;
    stroke-dasharray: 7 8;
}

.chart-fill-blue {
    fill: url(#chartBlue);
}

.chart-line-blue {
    fill: none;
    stroke: var(--hw-blue);
    stroke-width: 4;
    filter: drop-shadow(0 0 7px rgba(57, 167, 255, 0.34));
}

.chart-fill-green {
    fill: url(#chartGreen);
}

.chart-line-green {
    fill: none;
    stroke: var(--hw-green);
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(89, 240, 130, 0.42));
}

.chart-points-green circle {
    fill: var(--hw-green);
    stroke: rgba(255, 255, 255, 0.42);
    stroke-width: 2;
}

.chart-points-blue circle {
    fill: var(--hw-blue);
    stroke: rgba(255, 255, 255, 0.34);
    stroke-width: 2;
}

.chart-x-labels,
.chart-y-labels {
    fill: rgba(216, 226, 238, 0.52);
    font-size: 17px;
    font-family: inherit;
}

@media (max-width: 1100px) {
    .admin-topnav {
        display: none;
    }

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

    .ranking-podium {
        grid-template-columns: 1fr;
    }

    .premium-page-head {
        flex-direction: column;
    }

    .admin-kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-report-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-report-metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-report-grid {
        grid-template-columns: 1fr;
    }

    .admin-cup-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-shell .admin-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    body.admin-menu-open {
        overflow: hidden;
    }

    .admin-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 59;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(0, 0, 0, 0.52);
        backdrop-filter: blur(3px);
        transition: opacity 0.18s ease, visibility 0.18s ease;
    }

    body.admin-menu-open .admin-sidebar-backdrop {
        visibility: visible;
        opacity: 1;
    }

    .admin-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 60;
        width: min(82vw, 310px);
        height: 100dvh;
        overflow-y: auto;
        padding-top: 58px;
        transform: translateX(-105%);
        transition: transform 0.22s ease;
        box-shadow: 22px 0 60px rgba(0, 0, 0, 0.42);
    }

    .admin-shell .admin-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(82vw, 310px);
        height: 100dvh;
        border-radius: 0 8px 8px 0;
        padding-top: 58px;
        transform: translateX(-105%);
    }

    body.admin-menu-open .admin-sidebar {
        transform: translateX(0);
    }

    body.admin-menu-open .admin-shell .admin-sidebar,
    body.admin-menu-open.admin-shell .admin-sidebar {
        transform: translateX(0);
    }

    .admin-shell .admin-content {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    .admin-sidebar-close,
    .admin-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: auto;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border: 1px solid rgba(169, 184, 205, 0.18);
        border-radius: 8px;
        color: #f5f7fb;
        background: rgba(255, 255, 255, 0.07);
    }

    .public-app-icon {
        width: auto;
        min-width: 34px;
        height: 34px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .admin-sidebar-close {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .admin-menu-toggle {
        flex-shrink: 0;
    }

    .admin-brand {
        justify-items: start;
        grid-template-columns: auto 1fr;
        text-align: left;
    }

    .admin-brand-logo {
        width: 92px;
    }

    .hw-mark {
        width: 88px;
        height: 70px;
        transform: scale(0.72);
        transform-origin: left top;
    }

    .admin-menu {
        display: flex;
        flex-direction: column;
    }

    .admin-cup-detail-grid {
        grid-template-columns: 1fr;
    }

    .admin-cup-overview-hero,
    .admin-cup-overview-hero .admin-cup-cover-copy {
        min-height: 260px;
    }

    .admin-kpi-grid,
    .admin-detail-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-competitors-head,
    .admin-detail-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-page-spark {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .landing-panel {
        padding-block: 28px;
    }

    .public-guest-main .landing-panel {
        padding-block: 12px 48px;
    }

    .landing-seals {
        position: absolute;
        right: -4px;
        bottom: 12px;
        justify-content: flex-end;
        gap: 2px;
        margin-top: 0;
        padding-right: 0;
    }

    .landing-seal img {
        width: clamp(58px, 20vw, 78px);
    }

    .landing-seal:nth-child(2) {
        --seal-y: -5px;
        transform: translateY(var(--seal-y));
    }

    .landing-seal:nth-child(2) img {
        width: clamp(54px, 18vw, 72px);
    }

    .landing-panel.is-seal-zoomed .landing-seal.is-active img {
        width: min(48vw, 190px);
    }

    @supports (height: 100dvh) {
        .landing-seals {
            bottom: max(10px, env(safe-area-inset-bottom));
        }
    }

    .admin-shell .dashboard-hero {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .admin-shell .dashboard-actions {
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
    }

    .admin-shell .dashboard-search {
        display: none;
    }

    .compact-list-head {
        display: none;
    }

    .compact-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .qr-sample-card {
        grid-template-columns: 1fr;
    }

    .qr-sample-card img {
        width: 112px;
        height: 112px;
    }

    .phone-scanner {
        width: min(230px, 100%);
    }

    .rich-ranking-list li {
        grid-template-columns: 24px 30px minmax(0, 1fr) 42px;
        padding: 9px;
    }

    .admin-profile-chip {
        max-width: 100%;
    }

    .admin-kpi-grid,
    .admin-detail-summary {
        grid-template-columns: 1fr;
    }

    .admin-report-filter,
    .admin-report-metric-grid,
    .admin-report-email-grid,
    .admin-report-log,
    .admin-report-help-steps,
    .admin-report-review-row,
    .admin-participant-summary,
    .admin-participant-card-grid,
    .admin-participant-edit-context,
    .admin-participant-intention-card {
        grid-template-columns: 1fr;
    }

    .admin-participant-edit-section-head {
        flex-direction: column;
    }

    .admin-modal-sample-form .admin-sample-form-main,
    .admin-modal-sample-form-weights {
        grid-template-columns: 1fr;
    }

    .admin-report-filter .btn {
        width: 100%;
    }

    .admin-report-focus,
    .admin-report-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-report-category-row,
    .admin-report-day,
    .admin-report-cup-row {
        grid-template-columns: 1fr;
    }

    .admin-report-category-total,
    .admin-report-cup-stats {
        justify-self: start;
        justify-content: flex-start;
    }

    .admin-kpi-card {
        min-height: 82px;
    }

    .admin-detail-actions {
        justify-content: flex-start;
    }

    .admin-competitor-person {
        min-width: 180px;
    }

    .admin-title {
        font-size: 1.35rem;
    }

    .admin-menu {
        grid-template-columns: 1fr;
    }

    .admin-voting-timer-row {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-voting-timer-row .form-control,
    .admin-voting-timer-row .btn,
    .admin-voting-actions .btn,
    .admin-voting-actions form {
        width: 100%;
    }

    .admin-voting-timer-row .form-control {
        flex: 0 1 auto;
    }

    .admin-cup-shortcuts {
        grid-template-columns: 1fr;
    }

    .admin-cup-metric-grid {
        grid-template-columns: 1fr;
    }

    .admin-cup-metric {
        min-height: 104px;
    }

    .admin-form-head,
    .admin-section-head {
        flex-direction: column;
    }

    .admin-form-state {
        align-self: flex-start;
    }

    .sample-preview img {
        width: 110px;
        height: 110px;
    }

    .premium-page-head {
        padding: 14px;
    }

    .premium-card {
        min-height: 140px;
        padding: 14px;
    }

    .podium-card {
        min-height: 170px;
        padding: 14px;
    }

    .podium-score {
        font-size: 1.8rem;
    }

    .premium-table tbody tr td {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hw-card {
        border-radius: 14px;
    }

    .competitor-mobile-required {
        min-height: calc(100vh - 54px);
        padding: 18px 12px;
    }

    .competitor-mobile-required-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .registration-step {
        grid-template-columns: 1fr;
    }

    .entry-sample-row,
    .entry-sample-admin-item {
        grid-template-columns: 1fr;
    }

    .hw-alert-modal .modal-body {
        grid-template-columns: 1fr;
        padding: 22px 20px 8px;
    }

    .hw-alert-modal .modal-footer {
        padding: 8px 20px 20px;
    }

    .language-switcher {
        font-size: 0.64rem;
    }

    .language-switcher.is-guest {
        margin-top: 8px;
    }

    .language-switcher span {
        padding-inline: 5px;
    }

    .language-switcher a {
        min-width: 28px;
        min-height: 26px;
        padding-inline: 6px;
    }

    .public-shell .container.public-app-main {
        padding: 10px 10px 24px;
    }

    .public-app-bar {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 6px;
        min-height: 48px;
        padding-inline: 10px;
    }

    .public-app-brand {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .public-app-brand small {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .app-hero {
        min-height: 184px;
    }

    .app-hero-media img {
        width: min(66%, 220px);
        max-height: 142px;
    }

    .app-hero-content {
        padding: 68px 14px 68px;
    }

    .app-hero-content p {
        max-width: 100%;
        padding-right: 8px;
    }

    .app-hero-stats {
        left: 8px;
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .app-hero-stats div,
    .compact-status-row div {
        padding: 8px 7px;
    }

    .app-action-grid {
        gap: 7px;
    }

    .app-action-grid a,
    .app-action-grid button {
        min-height: 74px;
        padding: 9px 5px;
    }

    .app-action-grid i {
        font-size: 1.14rem;
    }

    .app-action-grid span {
        font-size: 0.68rem;
    }

    .public-shell .premium-card {
        padding: 11px;
    }

    .cup-card-cover {
        height: 118px;
        margin: -11px -11px 12px;
    }

    .cup-detail-cover,
    .admin-cup-cover-hero,
    .cup-detail-cover-copy,
    .admin-cup-cover-copy {
        min-height: 212px;
    }

    .scan-card {
        padding: 14px !important;
    }

    .sample-preview {
        padding: 14px !important;
    }

    .qr-symbol-trigger {
        padding: 14px 12px;
    }

    .qr-symbol-trigger .scan-frame {
        width: 104px;
    }

    .qr-step-list {
        gap: 8px;
        font-size: 0.92rem;
    }

    .qr-step-list div {
        align-items: flex-start;
    }

    .qr-sheet {
        align-items: stretch;
    }

    .qr-sheet-panel {
        width: 100%;
        max-height: 100dvh;
        min-height: 100dvh;
        margin: 0;
        padding: 14px;
        border-radius: 0;
        overflow-y: auto;
    }

    .qr-live-panel,
    .qr-reader-box {
        min-height: 54dvh;
    }

    .qr-live-panel-sheet,
    .qr-live-panel-sheet .qr-reader-box {
        min-height: 54dvh;
    }

    .qr-marker-overlay .scan-frame,
    .qr-empty-state .scan-frame {
        width: min(64vw, 210px);
    }

    .scanner-status {
        font-size: 0.92rem;
    }

    .input-group {
        display: grid;
        gap: 8px;
    }

    .input-group > .form-control,
    .input-group > .btn {
        width: 100%;
        border-radius: 12px !important;
    }

    #voteForm textarea {
        min-height: 96px;
    }
}

@media (max-width: 360px) {
    .language-switcher.is-app {
        width: calc(100% - 20px);
    }

    .app-hero {
        min-height: 200px;
    }

    .app-action-grid,
    .app-action-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* UX polish layer: global refinements for consistency, accessibility, and small screens. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid color-mix(in srgb, var(--hw-green) 74%, #ffffff 26%);
    outline-offset: 3px;
}

:where(.btn, .icon-chip, .admin-menu a, .public-menu-links a, .public-menu-links button, .app-action-grid a, .app-action-grid button, .cup-filter) {
    transition:
        transform 0.16s ease,
        border-color 0.16s ease,
        background-color 0.16s ease,
        color 0.16s ease,
        box-shadow 0.16s ease;
}

@media (hover: hover) and (pointer: fine) {
    :where(.btn, .icon-chip, .admin-menu a, .public-menu-links a, .public-menu-links button, .app-action-grid a, .app-action-grid button, .cup-filter):hover {
        transform: translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

.btn:disabled,
.btn.disabled,
button:disabled,
[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.58;
    transform: none !important;
    box-shadow: none !important;
}

.form-control,
.form-select,
.input-group-text {
    min-height: 42px;
}

textarea.form-control {
    min-height: 112px;
    resize: vertical;
}

.form-control[readonly],
.form-control:disabled,
.form-select:disabled {
    color: rgba(245, 247, 251, 0.72);
    background-color: rgba(148, 163, 184, 0.10);
    border-color: rgba(169, 184, 205, 0.18);
}

.form-control::placeholder {
    color: rgba(203, 213, 225, 0.52);
}

.form-label {
    line-height: 1.25;
}

.alert {
    border-width: 1px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.table-responsive {
    scrollbar-color: rgba(169, 184, 205, 0.34) transparent;
}

.table-responsive::-webkit-scrollbar {
    height: 9px;
}

.table-responsive::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(169, 184, 205, 0.28);
}

.table th,
.table td {
    vertical-align: middle;
}

.table td,
.table th,
.premium-card,
.hw-card,
.metric-card {
    overflow-wrap: anywhere;
}

.premium-card p,
.hw-card p {
    line-height: 1.5;
}

.app-hero-content h2 {
    margin: 0;
    color: #fff8ec;
    font-size: 1.05rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.app-action-grid span {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.participant-status-card .btn,
.premium-page-head .btn,
.dashboard-actions .icon-chip {
    flex-shrink: 0;
}

.cup-filter {
    min-height: 36px;
}

.cup-filter.active {
    box-shadow: 0 0 0 3px rgba(214, 180, 117, 0.10);
}

.admin-shell .admin-global-search input:focus,
.dashboard-search input:focus {
    outline: 0;
}

.admin-shell .admin-global-search:focus-within,
.dashboard-search:focus-within {
    border-color: rgba(53, 240, 199, 0.48);
    box-shadow: 0 0 0 4px rgba(53, 240, 199, 0.10);
}

.admin-shell .admin-topbar {
    gap: 14px;
}

.admin-shell .admin-kpi-card,
.metric-card {
    isolation: isolate;
}

.admin-shell .admin-kpi-card > div,
.metric-card > * {
    position: relative;
    z-index: 1;
}

.admin-shell main > h1,
.admin-shell .hw-card > h1:first-child,
.admin-shell .hw-card > h2:first-child,
.public-guest-main .hw-card h1,
.public-guest-main .hw-card h2 {
    color: var(--hw-text);
    line-height: 1.15;
}

.admin-shell main > h1 {
    margin-bottom: 14px !important;
    padding: 16px 18px;
    border: 1px solid rgba(54, 214, 203, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(14, 25, 38, 0.82), rgba(7, 14, 23, 0.84));
}

.admin-shell .hw-card > h1:first-child,
.admin-shell .hw-card > h2:first-child {
    margin-bottom: 14px;
}

.admin-shell .hw-card form:last-child,
.public-guest-main .hw-card form:last-child {
    margin-bottom: 0;
}

.public-guest-main .login-card-shell .hw-card,
.public-guest-main .registration-flow > .hw-card,
.public-guest-main .landing-panel > .hw-card {
    border-color: rgba(232, 220, 196, 0.18);
}

.public-guest-main .login-card-shell .hw-card {
    box-shadow:
        0 22px 64px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.premium-empty-state,
.chart-empty-state,
.notification-premium-empty {
    border-style: dashed;
}

.premium-empty-state p,
.chart-empty-state span,
.notification-premium-empty strong {
    max-width: 48ch;
    margin-inline: auto;
}

.public-shell .sample-state-badge,
.public-shell .pill,
.public-shell .badge,
.admin-shell .badge,
.admin-shell .pill {
    line-height: 1.18;
}

@media (max-width: 992px) {
    .admin-shell .admin-topbar-actions {
        row-gap: 8px;
    }

    .premium-page-head {
        align-items: stretch;
    }

    .premium-page-head .btn {
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .btn {
        min-height: 42px;
    }

    .public-shell .btn {
        min-height: 42px;
    }

    .input-group > .input-group-text {
        width: 100%;
        justify-content: center;
        border-radius: 12px !important;
    }

    .input-group > .form-select {
        width: 100%;
        border-radius: 12px !important;
    }

    .participant-status-card {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .participant-status-card .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .premium-page-head .btn {
        width: 100%;
    }

    .admin-shell .dashboard-actions,
    .admin-shell .dashboard-actions .icon-chip {
        width: auto;
        max-width: none;
    }

    .table-responsive {
        margin-inline: -2px;
        padding-bottom: 2px;
    }

    .public-shell .table {
        min-width: 560px;
    }

    .admin-shell .table {
        min-width: 760px;
    }

    .app-section-title {
        align-items: flex-start;
    }

    .app-section-title span {
        white-space: normal;
    }
}

/* Admin competitors visual refresh */
body.hw-bg.admin-shell {
    background:
        radial-gradient(circle at 74% 12%, rgba(44, 169, 255, 0.12), transparent 24rem),
        radial-gradient(circle at 18% 92%, rgba(53, 240, 199, 0.08), transparent 26rem),
        linear-gradient(180deg, #030812 0%, #07111b 46%, #040914 100%);
}

.admin-shell .admin-layout {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 16px;
}

.admin-shell .admin-sidebar,
.admin-shell .admin-content,
.admin-shell .hw-card,
.admin-shell .premium-page-head,
.admin-shell .screen-legend,
.admin-shell .admin-kpi-card {
    border-color: rgba(99, 148, 181, 0.22);
    background:
        linear-gradient(145deg, rgba(11, 27, 43, 0.86), rgba(5, 14, 25, 0.92));
}

.admin-shell .admin-sidebar {
    padding: 18px 14px 22px;
    box-shadow: inset -1px 0 0 rgba(53, 240, 199, 0.08), 0 24px 78px rgba(0, 0, 0, 0.38);
}

.admin-shell .admin-brand {
    padding: 6px 0 34px;
}

.admin-shell .admin-brand-logo {
    width: 126px;
}

.admin-shell .admin-menu {
    gap: 9px;
}

.admin-shell .admin-menu a {
    min-height: 52px;
    padding: 12px 14px;
    border-color: transparent;
    color: #b9c7d8;
    font-size: 0.96rem;
}

.admin-shell .admin-menu a i {
    width: 24px;
    color: #b5c6da;
    font-size: 1.22rem;
}

.admin-shell .admin-menu a:hover,
.admin-shell .admin-menu a.active {
    border-color: rgba(53, 240, 199, 0.42);
    color: #f8fffd;
    background:
        linear-gradient(90deg, rgba(53, 240, 199, 0.23), rgba(53, 240, 199, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 28px rgba(53, 240, 199, 0.08);
}

.admin-shell .admin-topbar {
    min-height: 70px;
    padding: 10px 24px;
    background: rgba(4, 12, 22, 0.74);
}

.admin-shell .admin-topbar-title-group {
    display: none;
}

.admin-shell .admin-global-search {
    flex: 1 1 520px;
    max-width: 820px;
    min-height: 54px;
    margin-left: clamp(80px, 18vw, 260px);
    border-color: rgba(148, 163, 184, 0.22);
    background:
        linear-gradient(180deg, rgba(16, 31, 49, 0.88), rgba(8, 19, 33, 0.90));
}

.admin-profile-chip {
    min-width: 188px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(17, 38, 58, 0.82), rgba(8, 20, 35, 0.92));
}

.admin-shell main.container-fluid {
    padding: 24px !important;
}

.admin-shell .premium-page-head {
    min-height: 112px;
    align-items: end;
    padding: 28px 28px 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(53, 240, 199, 0.12), transparent 22rem),
        linear-gradient(145deg, rgba(11, 28, 45, 0.90), rgba(5, 14, 25, 0.94));
}

.admin-shell .premium-page-head h1 {
    margin: 0;
    font-size: clamp(2rem, 2.4vw, 2.55rem);
}

.admin-page-spark {
    min-height: 44px;
    border-color: rgba(53, 240, 199, 0.22);
    color: #dcfffa;
    background: rgba(53, 240, 199, 0.10);
}

.admin-shell form.admin-competitor-toolbar {
    padding: 18px !important;
    background:
        linear-gradient(145deg, rgba(10, 27, 44, 0.86), rgba(5, 14, 25, 0.92));
}

.admin-competitor-toolbar .row {
    --bs-gutter-x: 16px;
}

.admin-shell .form-label {
    color: #c0ccda;
    font-size: 0.82rem;
    font-weight: 820;
    text-transform: none;
}

.admin-shell .form-control,
.admin-shell .form-select {
    min-height: 44px;
    border-color: rgba(99, 148, 181, 0.24);
    background-color: rgba(3, 10, 19, 0.78);
}

.admin-filter-submit,
.admin-filter-reset {
    min-width: 94px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-inline: 13px;
    white-space: nowrap;
}

.admin-filter-reset {
    min-width: 92px;
}

.admin-filter-actions {
    flex: 0 0 auto;
    align-self: end;
}

.admin-shell .screen-legend {
    padding: 18px;
    gap: 16px;
    background:
        linear-gradient(135deg, rgba(66, 133, 244, 0.08), transparent 60%),
        rgba(5, 14, 25, 0.90);
}

.admin-screen-legend .screen-legend-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 0;
}

.admin-screen-legend .screen-legend-grid div {
    position: relative;
    min-height: 78px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-areas:
        "icon label"
        "icon copy";
    column-gap: 12px;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.admin-screen-legend .screen-legend-grid div + div {
    border-left: 1px solid rgba(148, 163, 184, 0.14);
}

.admin-screen-legend .screen-legend-grid div > i {
    grid-area: icon;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 1.16rem;
    background: rgba(148, 163, 184, 0.12);
}

.admin-screen-legend .screen-legend-grid .is-blue > i { color: #59b5ff; background: rgba(44, 169, 255, 0.14); }
.admin-screen-legend .screen-legend-grid .is-green > i { color: #52ffd1; background: rgba(53, 240, 199, 0.14); }
.admin-screen-legend .screen-legend-grid .is-purple > i { color: #c8a2ff; background: rgba(155, 104, 255, 0.16); }
.admin-screen-legend .screen-legend-grid .is-indigo > i { color: #b8afff; background: rgba(98, 91, 255, 0.16); }
.admin-screen-legend .screen-legend-grid .is-yellow > i { color: #ffd35d; background: rgba(246, 188, 66, 0.16); }

.admin-screen-legend .screen-legend-grid span {
    grid-area: label;
    color: #f4f8fb;
    font-size: 0.78rem;
    text-transform: none;
}

.admin-screen-legend .screen-legend-grid strong {
    grid-area: copy;
    font-size: 0.77rem;
}

.admin-kpi-grid {
    gap: 12px;
}

.admin-kpi-card {
    min-height: 106px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 16px;
}

.admin-kpi-card > span {
    width: 54px;
    height: 54px;
    font-size: 1.42rem;
}

.admin-kpi-card strong {
    font-size: 1.56rem;
    line-height: 1;
}

.admin-competitor-board {
    padding: 0 !important;
    overflow: hidden;
}

.admin-competitor-board > .d-flex {
    margin: 0 !important;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(99, 148, 181, 0.16);
}

.admin-participant-search {
    width: min(100%, 440px);
    min-height: 44px;
    border-color: rgba(99, 148, 181, 0.24);
    background:
        linear-gradient(180deg, rgba(12, 28, 45, 0.86), rgba(5, 14, 25, 0.90));
}

.admin-competitor-board .premium-table-wrap {
    border-width: 0;
    border-radius: 0;
}

.admin-competitor-board .premium-table {
    min-width: 1120px;
}

.admin-competitor-board .premium-table thead th {
    padding: 14px 18px;
    background: rgba(14, 30, 47, 0.82);
}

.admin-competitor-board .premium-table tbody td {
    padding: 16px 18px;
}

.admin-shell .table tbody tr[data-admin-competitor-row] {
    background: rgba(5, 15, 27, 0.62);
}

.admin-competitor-person > span,
.admin-detail-avatar,
.admin-profile-chip > span {
    background: linear-gradient(135deg, rgba(53, 240, 199, 0.72), rgba(44, 169, 255, 0.56));
}

.admin-readable-status {
    width: min(210px, 100%);
    min-height: 31px;
    border-radius: 6px;
}

.admin-account-status.is-active::before,
.admin-account-status.is-suspended::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 6px;
    border-radius: 999px;
    background: currentColor;
}

.admin-actions-cell .admin-action-group {
    max-width: 162px;
    grid-template-columns: repeat(4, 34px);
}

.admin-decision-action {
    grid-column: auto;
    width: 34px;
    min-width: 34px;
    padding-inline: 0;
}

.admin-decision-action .admin-action-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.admin-icon-action {
    border-radius: 6px;
}

.admin-shell .admin-icon-action.is-edit-user {
    border-color: rgba(44, 169, 255, 0.34);
    color: #75c7ff;
    background: rgba(44, 169, 255, 0.10);
}

.admin-shell .admin-icon-action.is-resend-access {
    border-color: rgba(148, 163, 184, 0.24);
    color: #d6dee9;
    background: rgba(148, 163, 184, 0.08);
}

@media (max-width: 1300px) {
    .admin-screen-legend .screen-legend-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .admin-screen-legend .screen-legend-grid div {
        border: 1px solid rgba(148, 163, 184, 0.12);
        border-radius: 8px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.025);
    }

    .admin-screen-legend .screen-legend-grid div + div {
        border-left: 1px solid rgba(148, 163, 184, 0.12);
    }

    .admin-shell .admin-global-search {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .admin-shell .admin-layout {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .admin-shell .admin-topbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "title actions"
            "search search";
        align-items: center;
        gap: 10px 12px;
        padding: 10px 12px;
        min-height: 0;
    }

    .admin-shell .admin-topbar-title-group {
        display: flex;
        grid-area: title;
        min-width: 0;
    }

    .admin-shell .admin-topbar-title-group > div {
        min-width: 0;
    }

    .admin-shell .admin-title {
        font-size: 1.05rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .admin-shell .admin-kicker {
        font-size: 0.78rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .admin-shell .admin-global-search {
        grid-area: search;
        width: 100%;
        max-width: none;
        min-height: 42px;
        margin-left: 0;
        padding: 0 14px;
        border-radius: 10px;
        flex: none;
    }

    .admin-shell .admin-topbar-actions {
        grid-area: actions;
        width: auto;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 8px;
    }

    .admin-shell .admin-profile-chip,
    .admin-shell .language-switcher {
        display: none !important;
    }

    .admin-shell .admin-logout-btn span {
        display: none;
    }

    .admin-shell .admin-logout-btn {
        min-width: 42px;
        padding-inline: 12px;
    }

    .admin-shell .dashboard-search {
        display: none;
    }

    .admin-shell .dashboard-actions a[aria-label="Logout"] {
        display: none;
    }

    .admin-shell .dashboard-hero {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .admin-shell .dashboard-actions {
        width: auto;
        margin-left: auto;
    }

    .admin-shell main.container-fluid {
        padding: 12px !important;
    }
}

@media (max-width: 576px) {
    .admin-screen-legend .screen-legend-grid {
        grid-template-columns: 1fr;
    }

    .admin-filter-submit,
    .admin-filter-reset {
        width: 100%;
    }

    .admin-competitor-board > .d-flex {
        align-items: stretch !important;
    }
}

.admin-competitor-vote-categories {
    display: grid;
    gap: 10px;
}

.admin-competitor-vote-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-align: left;
    transition: border-color .18s ease, background .18s ease;
}

.admin-competitor-vote-category.is-active {
    border-color: rgba(89, 240, 130, 0.42);
    background: rgba(89, 240, 130, 0.08);
}

.admin-competitor-vote-category-meta {
    display: grid;
    justify-items: end;
    gap: 2px;
    font-size: 0.82rem;
    color: var(--hw-muted);
}

.admin-competitor-vote-category-meta em {
    font-style: normal;
    color: rgba(232, 220, 196, 0.72);
}

.admin-competitor-vote-voters {
    display: grid;
    gap: 8px;
    max-height: 420px;
    overflow: auto;
}

.admin-competitor-vote-voter {
    display: grid;
    gap: 2px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-align: left;
}

.admin-competitor-vote-voter.is-selected {
    border-color: rgba(89, 240, 130, 0.48);
    background: rgba(89, 240, 130, 0.10);
}

.admin-competitor-vote-voter small {
    color: var(--hw-muted);
}

.admin-competitor-vote-log {
    display: grid;
    gap: 8px;
}

.admin-competitor-vote-log-item {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.92rem;
}

.admin-competitor-vote-log-item.is-success {
    border-color: rgba(89, 240, 130, 0.34);
    background: rgba(89, 240, 130, 0.08);
}

.admin-competitor-vote-log-item.is-danger {
    border-color: rgba(255, 107, 107, 0.34);
    background: rgba(255, 107, 107, 0.08);
}

.admin-competitor-vote-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.65rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.admin-competitor-vote-search i {
    color: rgba(255, 255, 255, 0.55);
}

.admin-competitor-vote-search .form-control {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding-left: 0;
}

.admin-competitor-vote-search .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.admin-sample-code-group .sample-code-prefix {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.admin-sample-code-group #adminVoteSampleCode {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vote-sample-queue-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vote-sample-queue-stat.is-voted {
    color: #59f082;
}

.vote-sample-queue-stat.is-pending {
    color: #ffc857;
}

.vote-sample-queue-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 767.98px) {
    .vote-sample-queue-grid {
        grid-template-columns: 1fr;
    }
}

.vote-sample-queue-heading {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vote-sample-queue-heading.is-pending {
    color: #ffc857;
}

.vote-sample-queue-heading.is-voted {
    color: #59f082;
}

.vote-sample-queue-list {
    display: grid;
    gap: 8px;
    max-height: 320px;
    overflow: auto;
    padding-right: 2px;
}

.vote-sample-queue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-align: left;
}

.vote-sample-queue-item.is-pending {
    cursor: pointer;
}

.vote-sample-queue-item.is-pending:hover,
.vote-sample-queue-item.is-pending.is-selected {
    border-color: rgba(89, 240, 130, 0.48);
    background: rgba(89, 240, 130, 0.08);
}

.vote-sample-queue-item.is-voted {
    opacity: 0.82;
    cursor: default;
}

.vote-sample-queue-item-main {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.vote-sample-queue-item-code {
    font-size: 0.92rem;
    word-break: break-all;
}

.vote-sample-queue-item-owner {
    color: var(--hw-muted);
    font-size: 0.72rem;
    line-height: 1.25;
}

.vote-sample-queue-item-badge {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.vote-sample-queue-item-badge.is-pending {
    color: #ffc857;
}

.vote-sample-queue-item-badge.is-voted {
    color: #59f082;
}

.vote-sample-queue-empty {
    color: var(--hw-muted);
    font-size: 0.82rem;
    padding: 8px 2px;
}

.vote-panel-inline-loading {
    color: var(--hw-muted);
    font-size: 0.85rem;
    padding: 12px 4px;
}

.admin-competitor-vote-voters.is-loading {
    min-height: 48px;
}

.vote-panel-flow-tabs {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.vote-panel-flow-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-width: 9rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-align: left;
}

.vote-panel-flow-tab.is-active {
    border-color: rgba(89, 240, 130, 0.45);
    background: rgba(89, 240, 130, 0.08);
}

.vote-panel-flow-tab small {
    color: rgba(255, 255, 255, 0.62);
}

.vote-panel-flow-stepper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
    gap: 0.65rem;
}

.vote-panel-flow-step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    opacity: 0.55;
}

.vote-panel-flow-step.is-done {
    opacity: 0.85;
    border-color: rgba(89, 240, 130, 0.25);
}

.vote-panel-flow-step.is-current {
    opacity: 1;
    border-color: rgba(89, 240, 130, 0.45);
    background: rgba(89, 240, 130, 0.08);
}

.vote-panel-flow-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 0.85rem;
}

.vote-panel-flow-step.is-done .vote-panel-flow-step-index {
    background: rgba(89, 240, 130, 0.18);
}

.vote-panel-flow-step-label {
    font-size: 0.82rem;
    line-height: 1.25;
}

.admin-competitor-vote-category.is-voting-complete,
.vote-panel-flow-tab.is-voting-complete {
    border-color: rgba(89, 240, 130, 0.55);
    box-shadow: inset 0 0 0 1px rgba(89, 240, 130, 0.18);
}

.vote-progress-complete {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #59f082;
    font-style: normal;
    font-weight: 600;
}

.vote-progress-count {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.vote-progress-remaining {
    color: #ffc857;
    font-style: normal;
    font-weight: 600;
}

.vote-panel-flow-tab .vote-progress-complete,
.vote-panel-flow-tab .vote-progress-count,
.vote-panel-flow-tab .vote-progress-remaining {
    font-size: 0.78rem;
}

.vote-entry-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.vote-entry-step {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 600;
}

.vote-entry-step.is-current {
    border-color: rgba(89, 240, 130, 0.55);
    color: #59f082;
    background: rgba(89, 240, 130, 0.08);
}

.vote-entry-step.is-done {
    border-color: rgba(89, 240, 130, 0.35);
    color: rgba(255, 255, 255, 0.82);
}
