:root {
    --bg: #f3f5f9;
    --bg-accent: radial-gradient(circle at top left, #f2e3ec 0, #edf1f8 32%, #f6f8fc 100%);
    --panel: rgba(255, 255, 255, 0.9);
    --panel-strong: #ffffff;
    --text: #111827;
    --muted: #667085;
    --line: rgba(100, 116, 139, 0.16);
    --line-strong: rgba(100, 116, 139, 0.28);
    --brand: #2d2a43;
    --brand-2: #6d5f7f;
    --accent: #d16d8f;
    --danger: #dc2626;
    --success: #8d4f86;
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow: 0 24px 80px rgba(17, 24, 39, 0.08);
    --shadow-soft: 0 18px 44px rgba(17, 24, 39, 0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "SUIT", sans-serif;
    background: var(--bg-accent);
    color: var(--text);
}

body.menu-open {
    overflow: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea {
    font: inherit;
}

.app-shell {
    display: block;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
    backdrop-filter: blur(24px);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.mobile-nav,
.mobile-menu,
.mobile-nav-toggle {
    display: none !important;
}

.mobile-menu-backdrop {
    display: none !important;
}

.brand {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-copy, .eyebrow, .muted {
    color: var(--muted);
}

.brand-copy {
    font-size: 14px;
    letter-spacing: -0.02em;
}

.nav {
    display: grid;
    gap: 10px;
    margin-top: 36px;
}

.nav a {
    padding: 14px 16px;
    border-radius: 16px;
    color: #334155;
    transition: 0.2s ease;
    font-weight: 600;
}

.nav a.active,
.nav a:hover {
    background: linear-gradient(135deg, rgba(45, 42, 67, 0.12), rgba(209, 109, 143, 0.12));
    color: var(--text);
}

.sidebar-footer {
    display: grid;
    gap: 16px;
}

.user-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.main {
    display: block;
    padding: 32px;
    margin-left: 280px;
    width: auto;
    min-width: 0;
}

.page-head {
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.page-head h1,
.login-panel h1,
.verify-top h1,
.ticket-head h1 {
    margin: 8px 0 10px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-head p,
.login-panel p {
    margin: 0;
    color: var(--muted);
}

.page-head .eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-transform: uppercase;
}

.page-head p {
    font-size: 14px;
    max-width: 680px;
}

.page-head-action {
    flex: 0 0 auto;
}

.stats-grid,
.panel-grid,
.event-summary {
    display: grid;
    gap: 18px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.event-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wallet-grid {
    align-items: start;
}

.event-grid {
    align-items: start;
}

.stat-card,
.summary-card,
.panel,
.verify-card,
.result-card {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
}

.stat-card,
.summary-card {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.stat-card strong,
.summary-card strong {
    font-size: 30px;
    letter-spacing: -0.04em;
}

.stat-card.accent {
    background: linear-gradient(135deg, #2d2a43, #6d5f7f);
    color: #fff;
}

.panel {
    padding: 24px;
    overflow: hidden;
}

.panel-grid + .panel {
    margin-top: 18px;
}

.section-gap {
    margin-top: 18px;
}

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

.panel-head a {
    color: #4f46e5;
    font-size: 14px;
    font-weight: 700;
}

.panel-head h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.stack-form {
    display: grid;
    gap: 14px;
}

.event-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.span-2 {
    grid-column: 1 / -1;
}

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.button-row > * {
    flex: 1 1 220px;
}

.hint-box {
    padding: 13px 14px;
    border-radius: 12px;
    background: rgba(45, 50, 90, 0.06);
    border: 1px solid rgba(45, 50, 90, 0.1);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.status-card {
    display: grid;
    gap: 6px;
    padding: 15px 16px;
    border-radius: 14px;
    background: rgba(45, 42, 67, 0.05);
    border: 1px solid rgba(109, 95, 127, 0.12);
}

.status-card strong {
    font-size: 15px;
}

.status-card span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.stack-form label {
    display: grid;
    gap: 8px;
    color: #334155;
}

.stack-form input,
.stack-form textarea,
.stack-form button,
.ghost-btn,
.mini-btn,
.link-btn {
    border-radius: 16px;
    border: 1px solid var(--line-strong);
}

.stack-form input,
.stack-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.86);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.stack-form input:focus,
.stack-form textarea:focus {
    outline: none;
    border-color: rgba(109, 95, 127, 0.45);
    box-shadow: 0 0 0 4px rgba(109, 95, 127, 0.08);
    background: #fff;
}

.stack-form button,
.mini-btn,
.link-btn,
button {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 14px 28px rgba(45, 42, 67, 0.18);
}

.stack-form button:hover,
.mini-btn:hover,
.link-btn:hover,
button:hover {
    transform: translateY(-1px);
}

.ghost-btn {
    padding: 12px 16px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}

.ghost-btn.full {
    width: 100%;
}

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

.list-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.list-row:hover {
    transform: translateY(-1px);
    border-color: rgba(109, 95, 127, 0.2);
    box-shadow: var(--shadow-soft);
}

.list-row-actions {
    align-items: stretch;
}

.row-main {
    flex: 1 1 auto;
}

.row-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.2;
    box-shadow: none;
}

.danger-btn {
    background: linear-gradient(135deg, #8b1e3f, #b42318);
    box-shadow: none;
}

.event-delete-btn {
    padding: 7px 10px;
    border-radius: 9px;
    font-size: 12px;
    line-height: 1.1;
}

.approve-btn {
    padding: 7px 10px;
    border-radius: 9px;
    font-size: 12px;
    line-height: 1.1;
    box-shadow: none;
}

.list-row strong,
.card-row strong,
.prize-item strong {
    display: block;
    margin-bottom: 4px;
}

.list-row span,
.prize-item span,
.ticket-meta,
.verify-summary,
.draw-meta,
.print-note,
table,
.winning-inline {
    color: var(--muted);
}

.flash {
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
}

.flash.success {
    background: rgba(141, 79, 134, 0.12);
    color: #7a436f;
}

.flash.error {
    background: rgba(220, 38, 38, 0.12);
    color: #991b1b;
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    text-transform: uppercase;
}

.status.pending {
    background: rgba(209, 109, 143, 0.14);
    color: #a74f73;
}

.status.approved {
    background: rgba(141, 79, 134, 0.14);
    color: #7a436f;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}

th {
    color: #475569;
    font-size: 14px;
}

.plus { color: var(--success); }
.minus { color: var(--danger); }

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.tabs a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    color: #475569;
    font-weight: 700;
}

.tabs a.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

.issue-box {
    display: grid;
    gap: 14px;
}

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

.prize-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

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

.ball,
.bonus-tag {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e2e8f0;
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
}

.ball.matched {
    background: linear-gradient(135deg, #2d2a43, #6d5f7f);
    color: #fff;
}

.ball.bonus,
.bonus-tag {
    background: linear-gradient(135deg, #d16d8f, #e090ae);
    color: #fff;
}

.bonus-plus {
    font-size: 24px;
    font-weight: 800;
    color: #7a7a7a;
    margin: 0 2px 0 4px;
}

.compact .ball {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.rank-badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.rank-first { background: rgba(220, 38, 38, 0.14); color: #991b1b; }
.rank-second { background: rgba(245, 158, 11, 0.16); color: #92400e; }
.rank-third { background: rgba(45, 42, 67, 0.14); color: #2d2a43; }
.rank-fourth { background: rgba(109, 95, 127, 0.14); color: #5c4f6b; }
.rank-fifth { background: rgba(209, 109, 143, 0.14); color: #a74f73; }
.rank-none { background: rgba(148, 163, 184, 0.16); color: #475569; }

.winning-balls,
.winning-inline,
.verify-card-top,
.result-top,
.result-line {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.winning-balls {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.results-list,
.verify-lines {
    display: grid;
    gap: 14px;
}

.result-card,
.verify-card {
    padding: 18px;
}

.result-line {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
}

.line-label {
    min-width: 42px;
    color: var(--muted);
}

.login-wrap,
.verify-shell,
.print-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
}

.login-panel,
.ticket-sheet,
.verify-top,
.winning-chip {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
}

.login-panel {
    width: min(100%, 520px);
    padding: 32px;
    border-radius: 20px;
}

.login-help {
    margin-top: 16px;
    color: var(--muted);
}

.ticket-sheet {
    width: min(100%, 920px);
    padding: 28px;
    border-radius: 18px;
    background: #fff;
}

.ticket-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
}

.ticket-title {
    color: var(--brand);
    font-weight: 800;
    letter-spacing: 0.14em;
}

.qr-wrap {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.qr-wrap img {
    width: 140px;
    height: 140px;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.draw-meta {
    display: flex;
    gap: 18px;
    margin: 18px 0;
}

.ticket-grid {
    display: grid;
    gap: 12px;
}

.ticket-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px dashed var(--line-strong);
}

.verify-shell {
    align-content: start;
    gap: 18px;
    background: #fff;
}

.verify-top {
    width: min(100%, 1080px);
    padding: 0;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.winning-chip {
    min-width: 280px;
    display: grid;
    gap: 8px;
    padding: 0;
    border-radius: 18px;
}

.winning-chip-balls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.verify-lines {
    width: min(100%, 1080px);
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.verify-line-item {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
}

.verify-line-item:first-child {
    border-top: none;
}

.verify-top,
.winning-chip {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.empty,
.empty-cell {
    color: var(--muted);
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 1080px) {
    .app-shell {
        display: block;
    }

    .sidebar {
        display: none !important;
    }

    .mobile-nav {
        display: flex !important;
        align-items: flex-start;
        margin-bottom: 16px;
        padding: 14px 16px 10px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 20px;
        box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
        position: sticky;
        top: 12px;
        z-index: 20;
        min-height: 84px;
    }

    .mobile-nav-brand {
        max-width: calc(100% - 120px);
    }

    .mobile-nav .brand {
        font-size: 22px;
    }

    .mobile-nav-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin: 0;
        min-width: 72px;
        padding: 11px 14px;
        border-radius: 999px;
        background: linear-gradient(135deg, #2d2a43, #584f72);
        color: #fff;
        border: none;
        box-shadow: 0 12px 28px rgba(45, 42, 67, 0.26);
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 55;
        transform: none;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .mobile-nav-toggle:hover {
        transform: none;
    }

    .mobile-menu.is-open {
        display: grid !important;
        gap: 14px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.72);
        border-radius: 22px;
        box-shadow: 0 26px 60px rgba(17, 24, 39, 0.18);
        position: fixed;
        top: 78px;
        right: 16px;
        left: 16px;
        z-index: 52;
        max-height: calc(100vh - 108px);
        overflow-y: auto;
    }

    .mobile-menu-backdrop.is-open {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 50;
        background: linear-gradient(180deg, rgba(18, 24, 38, 0.14), rgba(18, 24, 38, 0.28));
        backdrop-filter: blur(6px);
        border: none;
        margin: 0;
        padding: 0;
        appearance: none;
    }

    .mobile-menu-nav {
        display: grid;
        gap: 10px;
    }

    .mobile-menu-nav a {
        padding: 15px 16px;
        border-radius: 16px;
        background: rgba(248, 249, 252, 0.95);
        border: 1px solid rgba(109, 95, 127, 0.08);
        color: #334155;
        font-weight: 700;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .mobile-menu-nav a.active {
        background: linear-gradient(135deg, rgba(45, 42, 67, 0.12), rgba(209, 109, 143, 0.12));
        color: var(--text);
        border-color: rgba(109, 95, 127, 0.16);
    }

    .mobile-menu-footer {
        display: grid;
        gap: 12px;
    }

    .stats-grid,
    .panel-grid,
    .event-summary,
    .verify-lines {
        grid-template-columns: 1fr;
    }

    .event-form-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .main {
        padding: 18px 16px 28px;
        margin-left: 0;
    }

    .page-head {
        display: block;
    }

    .page-head-action {
        margin-top: 10px;
    }

    .page-head h1 {
        font-size: 32px;
    }

    .stat-card strong,
    .summary-card strong {
        font-size: 26px;
    }

    .ticket-head,
    .verify-top,
    .winning-inline,
    .draw-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-head {
        align-items: flex-start;
    }
}

@media print {
    body {
        background: #fff;
    }

    .ticket-sheet {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

.ticket-sheet {
    width: min(100%, 82mm);
    min-height: 150mm;
    padding: 6mm 6mm 5mm;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(248, 248, 250, 1), rgba(255, 255, 255, 1) 22%),
        repeating-linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.018) 0,
            rgba(0, 0, 0, 0.018) 1px,
            transparent 1px,
            transparent 14px
        );
    color: #111;
    position: relative;
}

.ticket-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3mm;
}

.ticket-brand-name {
    font-size: 6.1mm;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
}

.ticket-round-badge {
    padding: 2.4mm 3mm;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(45, 42, 67, 0.06);
    font-size: 11px;
    font-weight: 800;
}

.ticket-head {
    display: grid;
    grid-template-columns: 1fr 25mm;
    gap: 4mm;
    align-items: start;
}

.ticket-head-main h1 {
    margin: 0 0 2.5mm;
    font-size: 4.1mm;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.ticket-title {
    color: #575757;
    font-weight: 800;
    letter-spacing: 0.22em;
    font-size: 10px;
}

.ticket-meta-grid {
    display: grid;
    grid-template-columns: 14mm 1fr;
    gap: 1mm 2mm;
    font-size: 10px;
    color: #5f6368;
}

.ticket-meta-grid strong {
    color: #111;
    font-weight: 800;
}

.qr-wrap {
    display: grid;
    justify-items: center;
    gap: 2mm;
    padding: 2mm;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
}

.qr-wrap span {
    font-size: 9px;
    line-height: 1;
}

.qr-wrap img {
    width: 21mm;
    height: 21mm;
    border-radius: 3px;
}

.ticket-divider {
    height: 1px;
    margin: 3mm 0 0;
    background: rgba(0, 0, 0, 0.14);
}

.ticket-draw-meta {
    margin: 2.5mm 0 3mm;
    gap: 2.5mm;
    flex-wrap: wrap;
    font-size: 10px;
    color: #5f6368;
}

.ticket-grid {
    gap: 1.2mm;
}

.ticket-row {
    grid-template-columns: 9mm 1fr;
    gap: 2mm;
    padding: 1.2mm 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.16);
}

.ticket-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.ticket-row-index {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.2mm;
    min-height: 6.7mm;
}

.ticket-row-index span {
    font-size: 8px;
    letter-spacing: 0.14em;
    color: #7a7a7a;
    line-height: 1;
}

.ticket-row-index strong {
    font-size: 14px;
    line-height: 1;
}

.ticket-balls {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2mm;
    justify-content: space-between;
    min-width: 0;
}

.ticket-ball {
    width: 6.7mm;
    height: 6.7mm;
    min-width: 6.7mm;
    min-height: 6.7mm;
    font-size: 9px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #f1f2f6, #e6e8ee);
    color: #111;
}

.ticket-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3mm;
    margin-top: 3.5mm;
    padding-top: 3mm;
    border-top: 1px dashed rgba(0, 0, 0, 0.18);
}

.ticket-footer-block {
    display: grid;
    gap: 1mm;
    padding: 2.5mm;
    border-radius: 4px;
    background: #f4f4f6;
}

.ticket-footer-block span {
    font-size: 10px;
    color: #6b7280;
}

.ticket-footer-block strong {
    font-size: 11px;
}

.ticket-paper-cut {
    position: absolute;
    left: 6mm;
    right: 6mm;
    top: 16.5mm;
    height: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.ticket-paper-cut.bottom {
    top: auto;
    bottom: 7mm;
}

.print-note {
    color: #7a7a7a;
    font-size: 9px;
    line-height: 1.45;
    margin-top: 3mm;
}

@media print {
    @page {
        size: 82mm 150mm;
        margin: 0;
    }

    html,
    body {
        width: 82mm;
        height: 150mm;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .print-shell {
        min-height: auto;
        padding: 0;
        place-items: start;
    }

    .ticket-sheet {
        box-shadow: none;
        border: none;
        width: 82mm;
        min-height: 150mm;
        border-radius: 0;
        margin: 0;
        background: #fff;
        color: #111;
    }

    .ticket-divider {
        background: #d1d5db;
    }

    .ticket-paper-cut {
        display: none;
    }

    .ticket-footer-block {
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
    }

    .ticket-ball {
        background: #f3f4f6;
        border: 1px solid #d1d5db;
        color: #111;
    }

    .qr-wrap {
        background: #fff;
        border: 1px solid #d1d5db;
    }

    .ticket-round-badge {
        background: #f3f4f6;
        border: 1px solid #d1d5db;
    }
}
