/* Rent Day — comedic Norwegian roguelite, warm flat-illustration style */

:root {
    --rd-cream: #fff7ec;
    --rd-cream-2: #fdebd2;
    --rd-paper: #fffaf0;
    --rd-ink: #1a1a2e;
    --rd-ink-soft: #3a3a4e;
    --rd-ink-light: #5e5e72;
    --rd-line: rgba(26, 26, 46, 0.12);
    --rd-line-strong: rgba(26, 26, 46, 0.25);
    --rd-shadow: 0 4px 14px rgba(26, 26, 46, 0.08);
    --rd-shadow-lg: 0 8px 28px rgba(26, 26, 46, 0.14);
    --rd-coral: #ef4444;       /* primary action */
    --rd-coral-dim: #c2362e;
    --rd-blue: #2563eb;        /* secondary */
    --rd-mustard: #f59e0b;     /* tertiary */
    --rd-mint: #10b981;        /* success / kroner gain */
    --rd-violet: #8b5cf6;      /* social */
    --rd-pink: #ec4899;        /* dignity */
    --rd-amber: #f59e0b;       /* energi */
    --rd-bg-grad: linear-gradient(135deg, #fff7ec 0%, #fdebd2 50%, #fde2c2 100%);
    --rd-font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --rd-font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

[data-theme="dark"] {
    --rd-cream: #1a1611;
    --rd-cream-2: #221d16;
    --rd-paper: #25201a;
    --rd-ink: #fdf3e4;
    --rd-ink-soft: #d8d0c0;
    --rd-ink-light: #a89e8c;
    --rd-line: rgba(253, 243, 228, 0.1);
    --rd-line-strong: rgba(253, 243, 228, 0.2);
    --rd-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    --rd-shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.55);
    --rd-bg-grad: linear-gradient(135deg, #1a1611 0%, #221d16 50%, #2a2418 100%);
}

body.rentday {
    background: var(--rd-bg-grad);
    color: var(--rd-ink);
    font-family: var(--rd-font-display);
    font-size: 16px;
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

/* Screens */
.screen {
    display: none;
    min-height: 100vh;
}
.screen.active {
    display: flex;
    flex-direction: column;
}

/* ========== TITLE ========== */
#title-screen {
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    text-align: center;
}
.title-inner {
    max-width: 540px;
    width: 100%;
}
.title-illustration {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 1rem;
    aspect-ratio: 4/3;
}
.title-illustration svg { width: 100%; height: 100%; display: block; }

.game-title {
    font-family: var(--rd-font-display);
    font-weight: 800;
    font-size: clamp(3rem, 11vw, 5.5rem);
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin: 0.5rem 0 0.75rem;
}
.t-rent { color: var(--rd-coral); display: inline-block; transform: rotate(-3deg); }
.t-day { color: var(--rd-blue); display: inline-block; transform: rotate(2deg) translateX(-4px); }

.game-tagline {
    color: var(--rd-ink-soft);
    font-size: 1.1rem;
    margin: 1rem 0 2.5rem;
    font-style: italic;
}
.title-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto 2rem;
}
.title-credits {
    color: var(--rd-ink-light);
    font-family: var(--rd-font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ========== BUTTONS ========== */
.btn-menu {
    background: var(--rd-paper);
    color: var(--rd-ink);
    border: 2px solid var(--rd-ink);
    border-radius: 14px;
    padding: 12px 22px;
    font-family: var(--rd-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 3px 0 var(--rd-ink);
}
.btn-menu:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 0 var(--rd-ink);
}
.btn-menu:active:not(:disabled) {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--rd-ink);
}
.btn-menu:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: 0 3px 0 var(--rd-ink);
}
.btn-menu.primary {
    background: var(--rd-coral);
    color: white;
    border-color: var(--rd-coral-dim);
    box-shadow: 0 3px 0 var(--rd-coral-dim);
}
.btn-menu.primary:hover:not(:disabled) {
    box-shadow: 0 4px 0 var(--rd-coral-dim);
}
.btn-menu.primary:active {
    box-shadow: 0 1px 0 var(--rd-coral-dim);
}
.btn-menu.danger {
    color: var(--rd-coral);
    border-color: var(--rd-coral);
    box-shadow: 0 3px 0 var(--rd-coral);
}
.btn-menu.link {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: var(--rd-ink-light);
    font-weight: 600;
}
.btn-menu.link:hover {
    color: var(--rd-blue);
    transform: none;
    box-shadow: none;
}

/* ========== INTRO ========== */
#intro-screen {
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}
.intro-inner {
    max-width: 640px;
    margin: auto 0;
}
.intro-inner h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-align: center;
}
.intro-body p {
    margin-bottom: 1rem;
    color: var(--rd-ink-soft);
    line-height: 1.7;
}
.intro-body strong {
    color: var(--rd-coral);
    display: inline-block;
    margin-right: 4px;
}
.s-kr { color: var(--rd-mint); font-weight: 600; }
.s-en { color: var(--rd-amber); font-weight: 600; }
.s-so { color: var(--rd-violet); font-weight: 600; }
.s-ve { color: var(--rd-pink); font-weight: 600; }
.intro-warn {
    color: var(--rd-ink-light);
    font-style: italic;
    border-top: 1px solid var(--rd-line);
    padding-top: 1rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}
#intro-screen #btn-intro-back {
    display: block;
    margin: 2rem auto 0;
}

/* ========== GAME LAYOUT ========== */
#game-screen {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--rd-line);
    background: rgba(255, 247, 236, 0.85);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
}
[data-theme="dark"] .game-header {
    background: rgba(26, 22, 17, 0.85);
}
.back-link {
    color: var(--rd-ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.back-link:hover { color: var(--rd-coral); }
.game-header-title {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    color: var(--rd-coral);
}
.game-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.clock {
    font-family: var(--rd-font-mono);
    font-size: 0.85rem;
    color: var(--rd-ink-soft);
    font-weight: 600;
}
.game-header .dark-toggle {
    position: static;
    width: 32px;
    height: 32px;
    background: var(--rd-paper);
    border: 1px solid var(--rd-line);
    box-shadow: var(--rd-shadow);
    font-size: 0.9rem;
}

.game-main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
    padding: 16px;
}

.panel-label {
    font-family: var(--rd-font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rd-ink-light);
    margin-bottom: 10px;
    font-weight: 700;
}

/* ----- Calendar ----- */
.calendar-panel,
.stats-panel {
    background: var(--rd-paper);
    border: 1px solid var(--rd-line);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--rd-shadow);
}

.calendar-panel { margin-bottom: 14px; }
.stats-panel { margin-bottom: 14px; }

.calendar-grid {
    display: grid;
    grid-template-columns: 32px repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 14px;
}
.cal-corner { }
.cal-day-h {
    font-family: var(--rd-font-mono);
    font-size: 0.7rem;
    color: var(--rd-ink-light);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 0;
}
.cal-slot-label {
    font-family: var(--rd-font-mono);
    font-size: 0.62rem;
    color: var(--rd-ink-light);
    text-align: right;
    padding-right: 4px;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cal-cell {
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s;
    position: relative;
}
[data-theme="dark"] .cal-cell {
    background: rgba(255, 255, 255, 0.05);
}
.cal-cell.future {
    background: rgba(0, 0, 0, 0.04);
}
.cal-cell.current {
    background: var(--rd-coral);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 0 2px var(--rd-coral), 0 4px 12px rgba(239,68,68,0.4);
}
.cal-cell.done {
    background: var(--rd-mint);
    color: white;
}
.cal-cell.done.bad { background: var(--rd-coral); }
.cal-cell.done.meh { background: var(--rd-mustard); }
.cal-cell.done.sleep { background: var(--rd-violet); }

/* Rent progress */
.rent-bar {
    margin-top: 10px;
}
.rent-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.78rem;
    color: var(--rd-ink-soft);
}
.rent-label > span:last-child {
    font-family: var(--rd-font-mono);
    font-weight: 700;
    color: var(--rd-coral);
}
.rent-progress {
    position: relative;
    height: 18px;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.rent-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rd-mint), var(--rd-mustard));
    width: 0%;
    transition: width 0.5s cubic-bezier(.4,0,.2,1);
    border-radius: 9px;
}
.rent-progress > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--rd-font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rd-ink);
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

/* ----- Stats ----- */
.stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.stat-row:last-child { margin-bottom: 0; }
.stat-icon {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}
.stat-name {
    font-weight: 600;
    color: var(--rd-ink-soft);
    width: 78px;
    flex-shrink: 0;
}
.stat-val {
    font-family: var(--rd-font-mono);
    font-weight: 700;
    color: var(--rd-ink);
    margin-left: auto;
}
.stat-val.small { font-size: 0.78rem; min-width: 36px; text-align: right; }
.meter {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}
[data-theme="dark"] .meter {
    background: rgba(255, 255, 255, 0.08);
}
.meter-fill {
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.meter-fill.en { background: var(--rd-amber); }
.meter-fill.so { background: var(--rd-violet); }
.meter-fill.ve { background: var(--rd-pink); }

/* Stats panel: stat name colors */
.stat-row:nth-child(1) .stat-name { color: var(--rd-mint); }
.stat-row:nth-child(2) .stat-name { color: var(--rd-amber); }
.stat-row:nth-child(3) .stat-name { color: var(--rd-violet); }
.stat-row:nth-child(4) .stat-name { color: var(--rd-pink); }

/* ----- Action panel (left bottom) ----- */
.actions-panel {
    display: flex;
    gap: 8px;
}
.action-btn {
    flex: 1;
    background: var(--rd-paper);
    color: var(--rd-ink);
    border: 1px solid var(--rd-line-strong);
    border-radius: 12px;
    padding: 10px 14px;
    font-family: var(--rd-font-display);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 2px 0 var(--rd-line-strong);
}
.action-btn:hover {
    transform: translateY(-1px);
    border-color: var(--rd-blue);
    color: var(--rd-blue);
    box-shadow: 0 3px 0 var(--rd-blue);
}
.action-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 var(--rd-line-strong);
}

/* ----- Scene panel ----- */
.scene-panel {
    background: var(--rd-paper);
    border: 1px solid var(--rd-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--rd-shadow);
    display: flex;
    flex-direction: column;
}
.scene-illustration {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--rd-cream-2);
    overflow: hidden;
    border-bottom: 1px solid var(--rd-line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scene-illustration svg {
    width: 100%;
    height: 100%;
    display: block;
}
.scene-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.scene-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--rd-line);
    padding-bottom: 10px;
}
.slot-tag {
    background: var(--rd-coral);
    color: white;
    font-family: var(--rd-font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 6px;
}
.slot-prompt {
    color: var(--rd-ink-light);
    font-style: italic;
    font-size: 0.9rem;
}
.scene-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--rd-ink);
    white-space: pre-wrap;
}
.scene-text em, .scene-text i {
    color: var(--rd-coral);
    font-style: italic;
}
.scene-text strong {
    color: var(--rd-blue);
}
.scene-text .delta {
    display: inline-block;
    padding: 2px 8px;
    margin: 0 2px;
    border-radius: 6px;
    font-family: var(--rd-font-mono);
    font-size: 0.78rem;
    font-weight: 700;
}
.scene-text .delta.kr { background: rgba(16, 185, 129, 0.18); color: var(--rd-mint); }
.scene-text .delta.kr.neg { background: rgba(239, 68, 68, 0.18); color: var(--rd-coral); }
.scene-text .delta.en { background: rgba(245, 158, 11, 0.18); color: #b46808; }
.scene-text .delta.so { background: rgba(139, 92, 246, 0.18); color: var(--rd-violet); }
.scene-text .delta.ve { background: rgba(236, 72, 153, 0.18); color: var(--rd-pink); }

.scene-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: auto;
}
.scene-choices.solo {
    grid-template-columns: 1fr;
}

.choice-card {
    background: var(--rd-cream);
    border: 2px solid var(--rd-line);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    font-family: var(--rd-font-display);
    transition: all 0.18s cubic-bezier(.4,0,.2,1);
    color: var(--rd-ink);
    position: relative;
    box-shadow: 0 2px 0 var(--rd-line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.choice-card:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: var(--rd-blue);
    box-shadow: 0 4px 0 var(--rd-blue);
}
.choice-card:active:not(:disabled) {
    transform: translateY(0px);
    box-shadow: 0 2px 0 var(--rd-blue);
}
.choice-card:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.choice-icon {
    font-size: 1.4rem;
    line-height: 1;
}
.choice-title {
    font-weight: 700;
    font-size: 0.95rem;
}
.choice-blurb {
    color: var(--rd-ink-light);
    font-size: 0.82rem;
    line-height: 1.4;
}
.choice-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.choice-tag {
    font-family: var(--rd-font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    letter-spacing: 0.04em;
}
.choice-tag.cost-en { background: rgba(245, 158, 11, 0.15); color: #b46808; }
.choice-tag.cost-so { background: rgba(139, 92, 246, 0.15); color: var(--rd-violet); }
.choice-tag.cost-ve { background: rgba(236, 72, 153, 0.15); color: var(--rd-pink); }
.choice-tag.cost-kr { background: rgba(239, 68, 68, 0.15); color: var(--rd-coral); }
.choice-tag.gain-kr { background: rgba(16, 185, 129, 0.15); color: var(--rd-mint); }
.choice-tag.check { background: var(--rd-ink); color: var(--rd-paper); }

.continue-btn {
    background: var(--rd-blue);
    color: white;
    border: 2px solid #1d4fc7;
    box-shadow: 0 3px 0 #1d4fc7;
    align-self: stretch;
    grid-column: 1 / -1;
}
.continue-btn:hover { box-shadow: 0 4px 0 #1d4fc7; transform: translateY(-1px); }

/* ===== OVERLAYS ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 17, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}
.overlay[hidden] { display: none; }

.dice-box, .journal-box, .menu-box, .ending-box {
    background: var(--rd-paper);
    border: 2px solid var(--rd-ink);
    border-radius: 18px;
    padding: 24px;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--rd-shadow-lg);
}

/* Dice */
.dice-box {
    text-align: center;
    max-width: 340px;
    padding: 22px;
}
.dice-label {
    font-family: var(--rd-font-mono);
    letter-spacing: 0.08em;
    color: var(--rd-ink-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}
.dice-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}
#dice-canvas { width: 180px; height: 180px; }
.dice-result {
    font-family: var(--rd-font-mono);
    font-size: 1rem;
    margin-top: 14px;
    min-height: 1.5em;
    color: var(--rd-ink);
    font-weight: 700;
    letter-spacing: 0.04em;
}
.dice-result.crit { color: #d97706; }
.dice-result.pass { color: var(--rd-mint); }
.dice-result.fail { color: var(--rd-ink-light); }
.dice-result.fumble { color: var(--rd-coral); }

/* Journal */
.journal-box {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}
.journal-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.journal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 4px 12px;
    line-height: 1.65;
    min-height: 240px;
    max-height: 60vh;
}
.diary-entry {
    border-left: 3px solid var(--rd-coral);
    padding: 8px 12px;
    margin-bottom: 12px;
    background: var(--rd-cream-2);
    border-radius: 0 8px 8px 0;
}
.diary-when {
    font-family: var(--rd-font-mono);
    font-size: 0.72rem;
    color: var(--rd-ink-light);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.diary-text {
    color: var(--rd-ink-soft);
    margin-top: 4px;
    font-size: 0.95rem;
}
.diary-empty {
    color: var(--rd-ink-light);
    font-style: italic;
    text-align: center;
    padding: 40px 0;
}
#btn-journal-close {
    margin-top: 14px;
    align-self: center;
}

/* Menu */
.menu-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    text-align: center;
}
.menu-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

/* Ending */
.ending-box {
    text-align: center;
    max-width: 600px;
}
.ending-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
}
.ending-illustration svg { width: 100%; height: 100%; }
.ending-box h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.ending-tag {
    font-family: var(--rd-font-mono);
    font-size: 0.78rem;
    color: var(--rd-ink-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 16px;
}
.ending-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--rd-ink-soft);
    margin-bottom: 1.5rem;
    white-space: pre-wrap;
}
.ending-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1.5rem;
    padding: 14px;
    background: var(--rd-cream-2);
    border-radius: 10px;
    font-family: var(--rd-font-mono);
    font-size: 0.82rem;
}
.es-cell {
    text-align: center;
}
.es-cell .es-name {
    color: var(--rd-ink-light);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.es-cell .es-val {
    font-weight: 700;
    color: var(--rd-ink);
    font-size: 1rem;
    margin-top: 2px;
}
.ending-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Toast skin */
body.rentday .toast {
    background: var(--rd-paper) !important;
    border: 2px solid var(--rd-ink) !important;
    color: var(--rd-ink) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 0 var(--rd-ink) !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 880px) {
    .game-main {
        grid-template-columns: 1fr;
    }
    .calendar-panel { margin-bottom: 12px; }
    .stats-panel { margin-bottom: 12px; }
}

@media (max-width: 560px) {
    .game-header-title { display: none; }
    .scene-choices {
        grid-template-columns: 1fr;
    }
    .ending-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .scene-body { padding: 16px 18px 18px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
