/* ===== Janus 新手引导教程 ===== */

#tutorialRoot {
  --tut-z: 100006;
  --tut-z-tooltip: 100008;
  --tut-z-ring: 100007;
  --tut-z-spotlight: 100006;
  --tut-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --tut-spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --tut-glass: rgba(255, 255, 255, 0.72);
  --tut-glass-border: rgba(255, 255, 255, 0.6);
}

/* ===== 动画关键帧 ===== */
@keyframes tutFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes tutFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes tutSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes tutTooltipIn {
  from { transform: scale(0.9) translateY(8px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes tutRingPulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(var(--accent-rgb), 0.25),
      0 0 0 6px rgba(var(--accent-rgb), 0.1),
      0 0 24px rgba(var(--accent-rgb), 0.15);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(var(--accent-rgb), 0.35),
      0 0 0 8px rgba(var(--accent-rgb), 0.15),
      0 0 32px rgba(var(--accent-rgb), 0.2);
  }
}

/* ===== Phase 1 & 2: 明信片 + 主题选择 ===== */
.tut-welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--tut-z);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  animation: tutFadeIn 0.4s var(--tut-spring);
  padding: 24px;
}

.tut-welcome-overlay.exiting {
  animation: tutFadeOut 0.3s ease forwards;
}

.tut-welcome-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* 品牌标识 */
.tut-brand {
  text-align: center;
  margin-bottom: 24px;
}

.tut-brand-name {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--text);
  position: relative;
  padding-bottom: 8px;
}

.tut-brand-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--accent-solid);
  border-radius: 2px;
}

.tut-brand-tagline {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-top: 10px;
}

/* 火车票本体 */
.tut-ticket-track {
  position: relative;
  min-height: 360px;
}

.tut-ticket {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: all 0.5s var(--tut-spring-bounce);
  pointer-events: none;
}

.tut-ticket.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

/* 票面上半（主题色） */
.tut-ticket-top {
  background: linear-gradient(135deg, rgb(var(--accent-rgb)) 0%, var(--accent-dark) 100%);
  padding: 22px 24px 18px;
  color: #fff;
  position: relative;
}

.tut-ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: var(--fs-xs);
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.tut-ticket-train {
  font-weight: 600;
}

.tut-ticket-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.tut-ticket-station {
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: 1px;
}

.tut-ticket-arrow {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tut-ticket-arrow svg {
  width: 100%;
  height: 100%;
}

.tut-ticket-seat {
  text-align: center;
  font-size: var(--fs-xs);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* 锯齿穿孔 */
.tut-ticket-perforation {
  position: relative;
  height: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tut-ticket-perforation::before {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  border-top: 2px dashed rgba(0, 0, 0, 0.15);
}

.tut-ticket-scissors {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 8px;
  width: 18px;
  height: 18px;
  color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tut-ticket-scissors svg {
  width: 100%;
  height: 100%;
}

/* 票面下半（白色） */
.tut-ticket-bottom {
  padding: 18px 24px 22px;
  background: #fff;
  transition: transform 0.3s var(--tut-spring), opacity 0.3s ease;
  transform-origin: top center;
  cursor: default;
}

.tut-ticket-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.tut-ticket-desc {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* 撕开提示（最后一张票） */
.tut-ticket-tear-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 0 10px;
  font-size: var(--fs-xs);
  color: var(--accent-solid);
  font-weight: 600;
}

/* ===== 签名画布 ===== */
.tut-sign-area {
  padding: 4px 0;
}

.tut-sign-label {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.tut-sign-canvas-wrap {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
}

.tut-sign-canvas {
  display: block;
  width: 100%;
  height: 100px;
  cursor: crosshair;
  touch-action: none;
}

.tut-sign-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tut-sign-btn {
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  border: none;
}

.tut-sign-clear-btn {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
}

.tut-sign-clear-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.tut-sign-confirm-btn {
  background: #c0392b;
  color: #fff;
  box-shadow: 0 3px 10px rgba(192, 57, 43, 0.3);
}

.tut-sign-confirm-btn:hover {
  background: #a93226;
  transform: translateY(-1px);
}

/* ===== 签名印章 ===== */
.tut-tear-area {
  position: relative;
}

.tut-ticket-stamp {
  position: absolute;
  top: 2px;
  right: 12px;
  width: 72px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  filter: blur(0.4px) contrast(1.1);
  z-index: 2;
}

.tut-ticket-stamp.stamped {
  animation: tutStampDrop 0.7s var(--tut-spring-bounce) forwards;
}

@keyframes tutStampDrop {
  0% {
    transform: translateY(-100px) scale(1.6) rotate(-20deg);
    opacity: 0;
  }
  50% {
    transform: translateY(4px) scale(0.92) rotate(-8deg);
    opacity: 1;
  }
  65% {
    transform: translateY(-2px) scale(1.04) rotate(-8deg);
    opacity: 0.9;
  }
  80% {
    transform: translateY(1px) scale(0.98) rotate(-8deg);
    opacity: 0.88;
  }
  100% {
    transform: translateY(0) scale(1) rotate(-8deg);
    opacity: 0.82;
  }
}

.tut-ticket-tear-hint svg {
  width: 14px;
  height: 14px;
  animation: tutTearHintBounce 1.5s ease-in-out infinite;
}

@keyframes tutTearHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.tut-ticket-bottom-tearable {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.tut-ticket-bottom-tearable:active {
  cursor: grabbing;
}

.tut-ticket-bottom-tearable.dragging {
  transition: none !important;
}

.tut-ticket-bottom-tearable.torn {
  animation: tutTearFall 0.5s var(--tut-spring) forwards;
}

/* 撕开动画 */
.tut-ticket.tearing {
  pointer-events: none;
  overflow: visible;
}

/* 拖拽模式 — 移除 overflow 让下半部分可见 */
.tut-ticket.dragging-mode {
  overflow: visible;
}
.tut-ticket.dragging-mode .tut-ticket-top {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.12s ease-out;
}
.tut-ticket.dragging-mode .tut-ticket-bottom {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.tut-ticket.tearing .tut-ticket-top {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: tutTearTop 0.75s var(--tut-spring) forwards;
  transform-origin: bottom center;
}

.tut-ticket.tearing .tut-ticket-bottom {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
  animation: tutTearBottom 0.75s var(--tut-spring) forwards;
  transform-origin: top center;
}

.tut-ticket.tearing .tut-ticket-perforation {
  animation: tutPerforationSnap 0.3s ease forwards;
}

@keyframes tutPerforationSnap {
  0%   { opacity: 1; transform: scaleY(1); }
  60%  { opacity: 0.4; transform: scaleY(0.3); }
  100% { opacity: 0; transform: scaleY(0); }
}

@keyframes tutTearTop {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  15%  { transform: translate(-2px, -10px) rotate(-0.5deg); opacity: 1; }
  40%  { transform: translate(-5px, -28px) rotate(-1.5deg); opacity: 0.92; }
  70%  { transform: translate(-8px, -52px) rotate(-2.5deg); opacity: 0.45; }
  100% { transform: translate(-12px, -75px) rotate(-3.5deg); opacity: 0; }
}

@keyframes tutTearBottom {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  15%  { transform: translate(2px, 10px) rotate(0.8deg); opacity: 1; }
  40%  { transform: translate(5px, 28px) rotate(3deg); opacity: 0.92; }
  70%  { transform: translate(9px, 55px) rotate(7deg); opacity: 0.45; }
  100% { transform: translate(14px, 90px) rotate(12deg); opacity: 0; }
}

@keyframes tutTearFall {
  0%   { transform: translate(0, var(--tear-delta, 80px)) rotate(var(--tear-rot, 8deg)); opacity: 0.5; }
  50%  { transform: translate(4px, calc(var(--tear-delta, 80px) + 35px)) rotate(calc(var(--tear-rot, 8deg) + 5deg)); opacity: 0.22; }
  100% { transform: translate(9px, calc(var(--tear-delta, 80px) + 75px)) rotate(calc(var(--tear-rot, 8deg) + 9deg)); opacity: 0; }
}

/* 手动撕开完成 — 上半部分回弹 */
.tut-ticket-top.recoil {
  animation: tutTearRecoil 0.5s var(--tut-spring-bounce) forwards;
}

@keyframes tutTearRecoil {
  0%   { transform: translate(0, 0) rotate(0deg); }
  30%  { transform: translate(0, 5px) rotate(0.8deg); }
  60%  { transform: translate(0, -2px) rotate(-0.3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* 拖拽时穿孔线"即将断裂"效果 */
.tut-ticket-perforation.stretching::before {
  border-top-color: rgba(192, 57, 43, 0.55);
  border-top-width: 2.5px;
  transform: scaleX(1.015);
  transition: all 0.15s ease;
}

.tut-ticket-perforation.stretching .tut-ticket-scissors {
  color: rgba(192, 57, 43, 0.6);
  transition: color 0.15s ease;
}

/* 车票导航 */
.tut-ticket-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 4px;
}

.tut-ticket-dots {
  display: flex;
  gap: 8px;
}

.tut-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.3s var(--tut-spring);
}

.tut-dot.active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--accent-solid);
}

/* ===== 按钮 ===== */
.tut-skip-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-family: inherit;
}

.tut-skip-btn:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.tut-next-btn {
  background: var(--accent-solid);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.25);
  font-family: inherit;
}

.tut-next-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.3);
}

.tut-next-btn:active {
  transform: translateY(0);
}

/* ===== 主题选择面板 ===== */
.tut-theme-picker {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
  animation: tutSlideUp 0.5s var(--tut-spring-bounce);
}

.tut-theme-picker-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: var(--text);
}

.tut-theme-picker-sub {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}

.tut-theme-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.tut-theme-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--tut-spring);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.tut-theme-swatch:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tut-theme-swatch.selected {
  border-color: #fff;
  box-shadow:
    0 0 0 2px var(--accent-solid),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.tut-theme-swatch.selected::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tut-start-btn {
  width: 100%;
  background: var(--accent-solid);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-mdlg);
  font-size: var(--fs-mdlg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.3);
  font-family: inherit;
}

.tut-start-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ===== Phase 3: 操作引导 ===== */
.tut-guide-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--tut-z);
  pointer-events: none;
}

.tut-guide-overlay.exiting {
  animation: tutFadeOut 0.3s ease forwards;
}

/* 4 块遮罩 — 聚光灯镂空 */
.tut-spotlight {
  position: fixed;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
  pointer-events: auto;
  transition: all 0.35s var(--tut-spring);
  z-index: var(--tut-z-spotlight);
}

/* 高亮环 */
.tut-highlight-ring {
  position: fixed;
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: var(--tut-z-ring);
  transition: all 0.35s var(--tut-spring);
  animation: tutRingPulse 2s ease-in-out infinite;
}

/* 透明点击拦截层 — 仅用于"只看不点"的介绍步骤 */
.tut-highlight-cover {
  position: fixed;
  background: transparent;
  pointer-events: none;
  z-index: 1000065;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--tut-spring);
  display: none;
}
.tut-highlight-cover.visible {
  display: block;
  pointer-events: auto;
  cursor: not-allowed;
}

/* ===== 毛玻璃工具提示 ===== */
.tut-tooltip {
  position: fixed;
  z-index: var(--tut-z-tooltip);
  width: calc(100% - 48px);
  max-width: 340px;
  background: var(--tut-glass);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid var(--tut-glass-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  pointer-events: auto;
  transition: all 0.35s var(--tut-spring-bounce);
  overflow: visible;
  animation: tutTooltipIn 0.4s var(--tut-spring-bounce);
}

.tut-tooltip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0;
}

.tut-step-badge {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-solid);
  background: var(--accent-bg);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.tut-skip-btn-sm {
  font-size: var(--fs-xs);
  padding: 4px 8px;
}

.tut-tooltip-body {
  padding: 12px 16px 16px;
}

.tut-tooltip-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.tut-tooltip-desc {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

.tut-tooltip-hint {
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--accent-solid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tut-tooltip-hint-wait {
  background: var(--accent-solid);
  color: #fff;
  animation: tutHintPulse 2s ease-in-out infinite;
}
.tut-wait-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: tutDotPulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tutHintPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
@keyframes tutDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.tut-tooltip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 14px;
  gap: 8px;
}

.tut-prev-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.tut-prev-btn:hover {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.tut-prev-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.tut-progress-dots {
  display: flex;
  gap: 6px;
}

.tut-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.3s var(--tut-spring);
}

.tut-progress-dot.active {
  width: 18px;
  border-radius: var(--radius-pill);
  background: var(--accent-solid);
}

.tut-progress-dot.done {
  background: rgba(var(--accent-rgb), 0.3);
}

/* 提示箭头 */
.tut-tooltip::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--tut-glass);
  border: 1px solid var(--tut-glass-border);
  transform: rotate(45deg);
  z-index: -1;
}

.tut-tooltip[data-pos="bottom"]::before {
  top: -8px;
  left: 50%;
  margin-left: -7px;
  border-right: none;
  border-bottom: none;
}

.tut-tooltip[data-pos="top"]::before {
  bottom: -8px;
  left: 50%;
  margin-left: -7px;
  border-left: none;
  border-top: none;
}

.tut-tooltip[data-pos="left"]::before {
  right: -8px;
  top: 50%;
  margin-top: -7px;
  border-left: none;
  border-bottom: none;
}

.tut-tooltip[data-pos="right"]::before {
  left: -8px;
  top: 50%;
  margin-top: -7px;
  border-right: none;
  border-top: none;
}

.tut-tooltip[data-pos="center"]::before {
  display: none;
}

/* ===== 移动端适配 ===== */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .tut-welcome-overlay,
  .tut-spotlight,
  .tut-tooltip {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .tut-welcome-overlay {
    background: rgba(255, 255, 255, 0.92);
  }
  .tut-spotlight {
    background: rgba(255, 255, 255, 0.78);
  }
  .tut-tooltip {
    background: rgba(255, 255, 255, 0.96);
  }
  .tut-tooltip::before {
    background: rgba(255, 255, 255, 0.96);
  }
  .tut-theme-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .tut-welcome-stage {
    max-width: 100%;
  }
  .tut-ticket-station {
    font-size: var(--fs-xl);
  }
  .tut-ticket-title {
    font-size: var(--fs-lg);
  }
  .tut-theme-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
