*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --brand: #0091d8;
    --brand-dark: #0f3057;
    --night: #f7f9fc;
    --card: rgba(255, 255, 255, 0.9);
    --glow: rgba(255, 255, 255, 0.6);
    --accent: #ff4f6f;
    --accent-2: #ffb703;
    --text: #0f172a;
    --muted: #445;
    --item-height: 120px;
    color-scheme: light;
}

body {
    margin: 0;
    font-family: 'Vazirmatn', 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
            radial-gradient(circle at 12% 16%, rgba(255, 191, 0, 0.12), transparent 30%),
            radial-gradient(circle at 82% 12%, rgba(0, 145, 216, 0.12), transparent 28%),
            radial-gradient(circle at 70% 76%, rgba(255, 79, 111, 0.1), transparent 32%),
            #f7f9fc;
    color: var(--text);
    min-height: 100vh;
    padding-bottom: 56px;
}

button, input, select, textarea {
    font-family: inherit;
}

h1, h2, h3, h4 {
    margin: 0;
    color: #0f172a;
}

p {
    margin: 0 0 8px;
    line-height: 1.7;
    color: #0f172a;
}

img {
    max-width: 100%;
    display: block;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 6vw;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(90deg, rgba(255, 183, 3, 0.12), rgba(0, 145, 216, 0.12)), rgba(255, 255, 255, 0.85);
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
}

.brand .logo {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 184, 255, 0.3));
}

.eyebrow {
    color: #1d4ed8;
    font-size: 12px;
    margin: 0;
}

.top-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
}

.ghost-btn {
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 600;
}

.ghost-btn:hover {
    border-color: rgba(15, 23, 42, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 6vw 40px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -6% auto auto 60%;
    width: 320px;
    height: 320px;
    background: url('https://images.unsplash.com/photo-1545243424-0ce743321e11?auto=format&fit=crop&w=640&q=70') center/cover no-repeat;
    opacity: 0.26;
    filter: saturate(1.1) drop-shadow(0 12px 30px rgba(0,0,0,0.25));
    transform: rotate(-8deg);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 70% 40%, rgba(255, 201, 60, 0.18), transparent 22%),
            radial-gradient(circle at 25% 60%, rgba(255, 59, 92, 0.22), transparent 24%),
            url('https://images.unsplash.com/photo-1516747773445-5060f6bd6cc0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.32;
    filter: saturate(1.4);
    pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.hero-bg::before {
    width: 140px;
    height: 140px;
    top: 8%;
    left: 6%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'><circle cx='60' cy='60' r='56' fill='%23ff4f6f'/><circle cx='60' cy='60' r='44' fill='%23ffb3c1'/><path d='M60 20c-16 0-28 12-28 28s12 28 28 28 28-12 28-28S76 20 60 20Z' fill='%23ff002b'/><g fill='%230a0a0a'><circle cx='48' cy='52' r='2'/><circle cx='60' cy='48' r='2'/><circle cx='70' cy='54' r='2'/><circle cx='56' cy='64' r='2'/><circle cx='66' cy='64' r='2'/></g></svg>");
}

.hero-bg::after {
    width: 160px;
    height: 160px;
    bottom: 6%;
    right: 10%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140'><path d='M70 6c35 0 64 21 64 60s-29 68-64 68S6 109 6 70 35 6 70 6Z' fill='%23ffb703'/><path d='M70 18c28 0 50 18 50 46s-22 50-50 50S20 92 20 64 42 18 70 18Z' fill='%23d90429'/><g fill='%23fff'><circle cx='52' cy='62' r='3'/><circle cx='66' cy='54' r='3'/><circle cx='78' cy='62' r='3'/><circle cx='88' cy='72' r='3'/><circle cx='60' cy='74' r='3'/></g></svg>");
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
    align-items: center;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-copy {
    max-width: 640px;
    color: #111827;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 183, 3, 0.12);
    border: 1px solid rgba(255, 183, 3, 0.35);
    color: #b45309;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 14px;
    line-height: 1.3;
}

.hero h1 span {
    color: var(--accent);
}

.lede {
    color: #374151;
    margin-bottom: 16px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.hero-points div {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.hero-points span {
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.ticker {
    height: 46px;
    min-width: 240px;
    flex: 1;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: linear-gradient(120deg, rgba(255, 183, 3, 0.2), rgba(0, 145, 216, 0.15));
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.hero-prize-btn {
    margin-top: 0;
}

.slot-panel {
    width: 100%;
    display: flex;
    justify-content: center;
}

.slot-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    max-width: 640px;
}

.slot-card::after {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.28), transparent 50%);
    pointer-events: none;
}

.slot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 6px 16px;
    position: relative;
    z-index: 2;
    color: #0f172a;
}

.slot-title p {
    margin: 0;
    color: #1d4ed8;
    font-size: 13px;
}

.slot-title strong {
    font-size: 20px;
    color: #0f172a;
}

.head-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill {
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    font-size: 12px;
    color: #0f172a;
}

.pill-live {
    background: rgba(255, 79, 125, 0.12);
    border-color: rgba(255, 79, 125, 0.45);
    color: #b91c1c;
    position: relative;
}

.pill-live::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4f7d;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 79, 125, 0.8);
}

.slot-machine {
    position: relative;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 50;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
}

.modal-card {
    position: relative;
    width: min(520px, 90vw);
    max-height: 70vh;
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.prize-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.prize-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.92);
    font-weight: 600;
}

.prize-icon {
    font-size: 20px;
}

.ticker-track {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    transition: opacity 0.35s ease;
    color: #0f172a;
    font-weight: 700;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.ticker-item small {
    color: #334155;
    font-weight: 600;
}

.ticker-track.fade {
    opacity: 0;
}

.slot-window {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 252, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 16px 40px rgba(0, 0, 0, 0.12);
    min-height: calc(var(--item-height) * 3 + 32px);
    color: #0f172a;
    padding: 18px;
}

.slot-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 184, 255, 0.2), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255, 79, 125, 0.2), transparent 35%);
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.reels {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.slot-window::before,
.slot-window::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 4;
    pointer-events: none;
}

.slot-window::before {
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.slot-window::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.slot-window.locked .reels {
    filter: blur(3.5px);
    opacity: 0.85;
}

.slot-machine {
    color: #0f172a;
}

.outer-col {
    overflow: hidden;
    width: 140px;
    height: calc(var(--item-height) * 3);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 246, 255, 0.9));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 18%, rgba(0, 0, 0, 0.85) 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.85) 18%, rgba(0, 0, 0, 0.85) 82%, transparent 100%);
}

.outer-col::after,
.outer-col::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 26px;
    pointer-events: none;
    z-index: 4;
}

.outer-col::before {
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), transparent);
}

.outer-col::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95), transparent);
}

.col {
    padding: 0 12px;
    will-change: transform;
    transform: translateY(calc(-100% + var(--item-height) * 3));
}

.symbol {
    height: var(--item-height);
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 16px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    padding: 6px;
}

.symbol::after {
    content: "";
    position: absolute;
    inset: -30% 30% 40%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
    transform: rotate(-10deg);
    opacity: 0.7;
}

.symbol-icon {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(255, 57, 95, 0.12));
    border: 1px solid rgba(15, 23, 42, 0.12);
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12), inset 0 1px 3px rgba(255,255,255,0.9);
    font-size: 64px;
}

.symbol-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slot-window.spinning .col {
    animation-name: scroll;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.65, .97, .72, 1);
}

@keyframes scroll {
    to {
        transform: translateY(0);
    }
}

.form-layer {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    gap: 10px;
    z-index: 5;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.form-layer.away {
    transform: translateX(-140%);
    opacity: 0;
    pointer-events: none;
}

.auth-card {
    width: min(520px, 92%);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    color: #0f172a;
}

.auth-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 12px;
    align-items: stretch;
}

.input-row.single-btn {
    grid-template-columns: 1fr;
}

.input-row.single-btn button {
    width: 100%;
}

.auth-card input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
}

.auth-card input::placeholder {
    color: #6b7280;
}

.auth-card button {
    background: linear-gradient(120deg, var(--accent), #ff7b9b);
    border: none;
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(255, 79, 111, 0.35);
    font-size: 15px;
    height: 48px;
    padding: 0 18px;
}

.auth-card button:hover {
    transform: translateY(-1px);
}

.auth-card small {
    color: #475569;
}

.code-hint {
    display: none;
}

.hidden {
    display: none !important;
}

.repeat-card {
    text-align: center;
    color: #ffd7e3;
}

.repeat-prize span {
    color: #fff;
    font-weight: 700;
}

.prize-banner {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%) translateY(12px);
    width: 78%;
    max-width: 360px;
    background: linear-gradient(135deg, rgba(255, 79, 125, 0.92), rgba(0, 194, 255, 0.9));
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 14px 16px;
    z-index: 6;
    color: #0a0c18;
    overflow: hidden;
}

.prize-banner p {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.win-highlight {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - var(--item-height) / 2);
    height: var(--item-height);
    border: 2px solid rgba(0, 184, 255, 0.7);
    border-radius: 14px;
    box-shadow: 0 0 16px rgba(0, 184, 255, 0.6), 0 0 32px rgba(255, 79, 125, 0.4);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.win-highlight.visible {
    opacity: 1;
    animation: pulse 1.2s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { box-shadow: 0 0 12px rgba(0,184,255,0.5), 0 0 24px rgba(255,79,125,0.35); }
    to { box-shadow: 0 0 20px rgba(0,184,255,0.9), 0 0 36px rgba(255,79,125,0.6); }
}

.prize-heading {
    margin: 0 0 4px;
    font-size: 16px;
    color: #0a0c18;
    letter-spacing: 0.3px;
}

.fireworks, .fireworks::before, .fireworks::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7) 0, transparent 35%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.5) 0, transparent 35%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.6) 0, transparent 35%);
    opacity: 0.6;
    mix-blend-mode: screen;
    animation: burst 1.8s ease-out infinite;
}

.fireworks::before {
    content: "";
    animation-delay: 0.4s;
}

.fireworks::after {
    content: "";
    animation-delay: 0.8s;
}

@keyframes burst {
    0% {transform: scale(0.8); opacity: 0.8;}
    60% {transform: scale(1.1); opacity: 0.5;}
    100% {transform: scale(1.25); opacity: 0;}
}

.cta-btn {
    width: 100%;
    max-width: 360px;
    margin: 20px auto 0;
    background: linear-gradient(120deg, #ff395f, #ffd166);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 16px 40px rgba(255, 79, 125, 0.35);
}

.cta-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.cta-btn:not(:disabled):hover {
    transform: translateY(-1px);
}

.hint {
    color: #334155;
    font-size: 13px;
    text-align: center;
    margin-top: 6px;
}

.config {
    padding: 32px 6vw 20px;
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 20px;
    color: #0f172a;
}

.config-card, .log-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    color: #0f172a;
}

.config-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 6px 0 12px;
}

.config-table {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.prize-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 140px;
    gap: 10px;
    align-items: center;
}

.prize-row input {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.2);
    color: #0f172a;
    padding: 12px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.prize-row input::placeholder {
    color: #6b7280;
}

.prize-row select {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.2);
    color: #0f172a;
    padding: 12px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.prize-row label {
    font-size: 12px;
    color: #475569;
}

.log-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.log-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    max-height: 320px;
    overflow: auto;
    display: grid;
    gap: 8px;
}

.log-list li {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #0f172a;
}

.delete-entry {
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 8px;
    border-radius: 8px;
    background: rgba(255, 79, 111, 0.12);
    border: 1px solid rgba(255, 79, 111, 0.35);
    color: #b91c1c;
}

.seo {
    padding: 20px 6vw 10px;
    color: #0f172a;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.seo-grid div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.footer {
    text-align: center;
    padding: 16px 6vw 30px;
    color: #aeb7df;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
}

.footer-meta {
    margin-top: 6px;
    color: #7f8bb8;
}

.admin-main {
    padding: 40px 6vw;
    display: grid;
    gap: 20px;
}

.admin-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: start;
}

.admin-card {
    background: rgba(21, 16, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.admin-panel {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 20px;
}

@media (max-width: 980px) {
    .config {
        grid-template-columns: 1fr;
    }
    .admin-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .config {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 32px;
    }
    .hero::before {
        display: none;
    }

    .slot-window {
        min-height: calc(var(--item-height) * 3 + 26px);
    }

    .outer-col {
        width: 120px;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .prize-row {
        grid-template-columns: 1fr 1fr;
    }
}
