  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
  }

  body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden
  }

  .font-outfit {
      font-family: 'Outfit', sans-serif
  }

  ::-webkit-scrollbar {
      width: 5px;
      height: 5px
  }

  ::-webkit-scrollbar-track {
      background: transparent
  }

  ::-webkit-scrollbar-thumb {
      background: rgba(99, 102, 241, 0.3);
      border-radius: 3px
  }

  .glass {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2)
  }

  .dark .glass {
      background: rgba(30, 41, 59, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.08)
  }

  .glass-strong {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.3)
  }

  .dark .glass-strong {
      background: rgba(30, 41, 59, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.08)
  }

  .gradient-primary {
      background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef)
  }

  .gradient-accent {
      background: linear-gradient(135deg, #f43f5e, #ec4899, #d946ef)
  }

  .gradient-success {
      background: linear-gradient(135deg, #10b981, #34d399)
  }

  .gradient-warning {
      background: linear-gradient(135deg, #f59e0b, #fbbf24)
  }

  .gradient-info {
      background: linear-gradient(135deg, #3b82f6, #60a5fa)
  }

  .gradient-cinema {
      background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81)
  }

  .card-hover {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1)
  }

  .dark .card-hover:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3)
  }

  .ripple-btn {
      position: relative;
      overflow: hidden
  }

  .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transform: scale(0);
      animation: rippleAnim 0.6s linear;
      pointer-events: none
  }

  @keyframes rippleAnim {
      to {
          transform: scale(4);
          opacity: 0
      }
  }

  .sidebar-link {
      transition: all 0.3s ease;
      position: relative
  }

  .sidebar-link::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(180deg, #6366f1, #d946ef);
      border-radius: 0 4px 4px 0;
      transform: scaleY(0);
      transition: transform 0.3s ease
  }

  .sidebar-link:hover::before,
  .sidebar-link.active::before {
      transform: scaleY(1)
  }

  .sidebar-link.active {
      background: rgba(99, 102, 241, 0.1)
  }

  .dark .sidebar-link.active {
      background: rgba(99, 102, 241, 0.2)
  }

  .notif-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      min-width: 18px;
      height: 18px;
      background: linear-gradient(135deg, #f43f5e, #ec4899);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff
  }

  .dark .notif-badge {
      border-color: #1e293b
  }

  .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block
  }

  .badge-dot.online {
      background: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2)
  }

  .badge-dot.offline {
      background: #ef4444
  }

  .badge-dot.away {
      background: #f59e0b
  }

  .tooltip-container {
      position: relative
  }

  .tooltip-container .tooltip {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: #1e293b;
      color: #fff;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 11px;
      white-space: nowrap;
      transition: all 0.2s;
      z-index: 100;
      pointer-events: none
  }

  .tooltip-container .tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: #1e293b
  }

  .tooltip-container:hover .tooltip {
      visibility: visible;
      opacity: 1
  }

  .dark .tooltip-container .tooltip {
      background: #f8fafc;
      color: #1e293b
  }

  .dark .tooltip-container .tooltip::after {
      border-top-color: #f8fafc
  }

  .tab-content {
      display: none;
      animation: fadeIn 0.4s ease-out
  }

  .tab-content.active {
      display: block
  }

  .toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 10px;
      pointer-events: none
  }

  .toast {
      pointer-events: auto;
      padding: 14px 20px;
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 280px;
      max-width: 420px;
      animation: slideDown 0.4s ease-out;
      transition: all 0.3s ease
  }

  .toast.removing {
      opacity: 0;
      transform: translateX(100%)
  }

  .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 60;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px
  }

  .modal-backdrop.active {
      display: flex
  }

  .modal-content {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      animation: scaleIn 0.3s ease-out;
      position: relative
  }

  .dark .modal-content {
      background: #1e293b
  }

  .popup-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 6px);
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
      border: 1px solid #e2e8f0;
      min-width: 180px;
      z-index: 50;
      display: none;
      animation: scaleIn 0.2s ease-out;
      overflow: hidden
  }

  .popup-menu.show {
      display: block
  }

  .dark .popup-menu {
      background: #1e293b;
      border-color: #334155
  }

  .music-progress {
      -webkit-appearance: none;
      appearance: none;
      height: 4px;
      border-radius: 2px;
      background: #e2e8f0;
      outline: none
  }

  .music-progress::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #6366f1;
      cursor: pointer;
      box-shadow: 0 0 6px rgba(99, 102, 241, 0.4)
  }

  .seat {
      width: 30px;
      height: 30px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 600
  }

  .seat-available {
      background: #e0e7ff;
      color: #4f46e5;
      border: 1px solid #c7d2fe
  }

  .seat-available:hover {
      background: #6366f1;
      color: #fff;
      transform: scale(1.15)
  }

  .seat-selected {
      background: #6366f1;
      color: #fff;
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.5)
  }

  .seat-booked {
      background: #fecdd3;
      color: #e11d48;
      cursor: not-allowed;
      border: 1px solid #fda4af
  }

  .seat-vip {
      background: #fae8ff;
      color: #c026d3;
      border: 1px solid #f5d0fe
  }

  .seat-vip:hover {
      background: #d946ef;
      color: #fff;
      transform: scale(1.15)
  }

  html.theme-transition,
  html.theme-transition * {
      transition: background-color 0.4s ease, color 0.3s ease, border-color 0.3s ease !important
  }

  select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center
  }

  @media(max-width:640px) {
      .seat {
          width: 24px;
          height: 24px;
          font-size: 7px
      }

      .toast {
          min-width: 260px;
          max-width: calc(100vw - 40px)
      }
  }

  @media(max-width:360px) {
      .seat {
          width: 20px;
          height: 20px;
          font-size: 6px
      }
  }

  @media print {

      .sidebar,
      .top-header,
      .fab,
      .toast-container,
      .music-player-bar {
          display: none !important
      }

      .main-wrap {
          margin-left: 0 !important
      }
  }