 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      background: linear-gradient(135deg, #050508 0%, #0a0a12 100%);
      color: #f0f0f5;
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      overflow-x: hidden;
      min-height: 100vh;
    }

    .top-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 24px;
      background: rgba(12, 12, 18, 0.7);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(220, 220, 245, 0.15);
      position: relative;
      z-index: 50;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
    
    .logo-img {
      height: 36px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    
    .logo-text {
      font-weight: 700;
      font-size: 18px;
      background: linear-gradient(135deg, #e8e8f0, #b8b8d0);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 0.5px;
    }

    .app-download-btn {
      background: rgba(220, 220, 240, 0.1);
      backdrop-filter: blur(8px);
      padding: 6px 18px;
      border-radius: 32px;
      font-size: 12px;
      font-weight: 500;
      border: 1px solid rgba(255,255,245,0.25);
      color: #e0e0e8;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .app-download-btn:hover {
      background: rgba(255,255,255,0.18);
      transform: scale(1.02);
    }

    .player-wrapper {
      position: relative;
      width: 100%;
      background: #000000;
      overflow: hidden;
    }
    
    .player-wrapper:not(.fullscreen-mode) {
      aspect-ratio: 16/9;
    }
    
    @media (orientation: landscape) {
      .top-header, .stats-bar, .footer {
        display: none;
      }
      .player-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        aspect-ratio: auto;
        z-index: 1000;
      }
      .compact-slider {
        z-index: 1001;
      }
      body {
        overflow: hidden;
      }
    }
    
    .player-wrapper:fullscreen {
      width: 100vw;
      height: 100vh;
      aspect-ratio: auto;
      background: #000;
    }
    
    .player-wrapper:fullscreen .compact-slider {
      z-index: 1002;
    }

    video {
      width: 100%;
      height: 100%;
      display: block;
      background: #000;
      object-fit: fill;
    }

    .loading-reflect {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(105deg, 
        rgba(0,0,0,0.4) 0%, 
        rgba(200,200,220,0.1) 30%,
        rgba(255,255,255,0.2) 50%,
        rgba(200,200,220,0.1) 70%,
        rgba(0,0,0,0.4) 100%);
      background-size: 220% 100%;
      animation: silverFlow 2s ease-in-out infinite;
      z-index: 10;
      pointer-events: none;
    }
    
    @keyframes silverFlow {
      0% { background-position: -150% 0; }
      100% { background-position: 150% 0; }
    }
    
    .loading-corner {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, rgba(210,210,245,0.2) 0%, transparent 70%);
      animation: cornerPulse 1.5s infinite alternate;
      z-index: 10;
      pointer-events: none;
      border-radius: 50%;
    }
    
    @keyframes cornerPulse {
      0% { opacity: 0.2; transform: scale(0.8); }
      100% { opacity: 0.5; transform: scale(1.2); }
    }

    .compact-slider {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.27);
      backdrop-filter: blur(2px);
      padding: 16px 18px 12px;
      transform: translateY(0);
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
      z-index: 102;
      border-top: 1px solid rgba(220, 220, 245, 0.2);
    }

    .compact-slider.hide {
      transform: translateY(100%);
    }

    .slider-top-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4px 12px 4px;
      border-bottom: 1px solid rgba(220, 220, 245, 0.15);
      margin-bottom: 12px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .marquee-container {
      flex: 2;
      overflow: hidden;
      white-space: nowrap;
      margin-right: 12px;
      background: rgba(0,0,0,0.27);
      border-radius: 30px;
      padding: 6px 12px;
      border: 1px solid rgba(255,255,255,0.1);
      min-width: 0;
    }
    
    .marquee-text {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.6px;
      background: linear-gradient(90deg, #c8c8e8, #ffffff, #c8c8e8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      white-space: nowrap;
      padding-right: 60px;
      animation: marqueeFlow 30s linear infinite;
    }
    
    @keyframes marqueeFlow {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-100%); }
    }

    .icon-group {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .icon-group .action-icon {
      font-size: 20px;
      color: #e5e5f2;
      cursor: pointer;
      transition: all 0.2s ease;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }

    .icon-group .action-icon:hover {
      color: #ffffff;
      transform: scale(1.1);
    }

    .icon-group .action-icon:active { 
      transform: scale(0.94); 
    }
    
    .icon-group .action-icon.hidden-pip {
      display: none;
    }

    .channel-slider-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .channel-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      padding: 8px 0 12px;
      flex: 1;
      scroll-behavior: smooth;
    }
    
    .channel-scroll::-webkit-scrollbar {
      display: none;
    }

    .mini-card {
      min-width: 100px;
      width: 100px;
      background: rgba(0,0,0,0.27);
      backdrop-filter: blur(2px);
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      border: 1.5px solid rgba(210, 210, 235, 0.25);
      padding: 10px 5px;
      flex-shrink: 0;
      transition: all 0.25s;
      position: relative;
    }

    .mini-card:hover {
      background: rgba(0,0,0,0.27);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .mini-card.active {
      border: 2px solid #ffffff;
      background: rgba(0,0,0,0.27);
      box-shadow: 0 0 7px rgba(255,255,240,0.4);
      transform: scale(1.00);
    }

    .mini-card .logo-wrapper {
      position: relative;
      width: 75px;
      height: 42px;
    }

    .mini-card .logo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      border-radius: 8px;
      background: rgba(0,0,0,0.5);
    }

    .mini-card .logo-refresh-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #ffffff;
      font-size: 14px;
      z-index: 5;
      transition: all 0.2s;
    }

    .mini-card .logo-refresh-btn:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .mini-card span {
      font-size: 10px;
      font-weight: 500;
      color: #efeff8;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 90px;
    }

    /* Category slider - only in side menu */
    .category-slider-wrapper {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      background: rgba(0,0,0,0.27);
      -webkit-overflow-scrolling: touch;
      padding: 4px 4px 8px 4px;
      margin-bottom: 4px;
      flex-shrink: 0;
    }

    .category-slider-wrapper::-webkit-scrollbar {
      display: none;
    }

    .category-chip {
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 500;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.2s;
      background: rgba(0,0,0,0.27);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ccc;
      flex-shrink: 0;
      user-select: none;
    }

    .category-chip.active {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff;
      font-weight: 600;
    }

    .category-chip:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .stats-bar {
      background: rgba(10, 10, 18, 0.65);
      backdrop-filter: blur(10px);
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(220, 220, 245, 0.2);
    }

    .viewers {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .viewers i {
      color: #bbbce0;
      font-size: 20px;
    }
    
    .live-badge {
      background: linear-gradient(135deg, transparent, #b4b4b42a);
      backdrop-filter: blur(1px);
      padding: 8px 28px;
      border-radius: 50px;
      border: 1px solid silver;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    
    .live-badge::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }
    
    .live-badge:hover::before {
      left: 100%;
    }
    
    .live-badge:hover {
      transform: scale(1.05);
      background: linear-gradient(135deg, #00000075, #aeaeae5f);
    }
    
    .live-badge span {
      color: #ff8a9e;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
    }
    
    .live-badge i {
      color: #ff5a7a;
      font-size: 12px;
      margin-right: 8px;
      animation: livePulse 1s infinite;
    }
    
    @keyframes livePulse {
      0% { opacity: 0.6; transform: scale(0.9); }
      100% { opacity: 1; transform: scale(1.2); }
    }

    .footer {
      background: rgba(6, 6, 12, 0.75);
      backdrop-filter: blur(8px);
      text-align: center;
      padding: 14px;
      border-top: 1px solid rgba(220,220,245,0.25);
    }
    .credit {
      color: #aaaac8;
      font-size: 12px;
      cursor: pointer;
      transition: 0.2s;
    }
    .credit b {
      color: #e0e0f5;
      font-weight: 600;
    }
    .credit:hover {
      color: #ffffff;
    }

    .watermark-logo-nurmd2006 {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 85px;
      height: auto;
      opacity: 0.25;
      z-index: 999;
      pointer-events: none;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    }

    .search-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      z-index: 200;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.2s, opacity 0.2s ease;
      padding-top: 30px;
      overflow-y: auto;
    }
    .search-overlay.active {
      visibility: visible;
      opacity: 1;
    }
    .search-widget {
      background: rgba(15, 15, 25, 0.98);
      backdrop-filter: blur(2px);
      border-radius: 20px;
      width: 90%;
      max-width: 500px;
      padding: 16px;
      border: 1px solid rgba(255,255,245,0.3);
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }
    .search-header-compact {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(0,0,0,0.27);
      border-radius: 40px;
      padding: 4px 8px 4px 18px;
      border: 1px solid rgba(255,255,245,0.3);
      margin-bottom: 16px;
    }
    .search-header-compact i {
      color: #c0c0e8;
      font-size: 16px;
    }
    .search-header-compact input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 10px 0;
      color: #ffffff;
      font-size: 15px;
      font-weight: 500;
      outline: none;
    }
    .search-header-compact input::placeholder {
      color: #8a8aaa;
    }
    .close-search-btn {
      background: rgba(255,80,100,0.3);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #ffa0b0;
      flex-shrink: 0;
    }
    .close-search-btn:hover {
      background: rgba(255,80,100,0.6);
    }
    .search-results-grid {
      max-height: 60vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 12px;
      padding: 8px 4px;
    }
    .search-results-grid::-webkit-scrollbar {
      width: 4px;
      background: #00000044;
      border-radius: 10px;
    }
    .search-results-grid::-webkit-scrollbar-thumb {
      background: rgba(0,0,0,0.27);
      border-radius: 10px;
    }
    .search-channel-card {
      background: rgba(30, 30, 45, 0.8);
      backdrop-filter: blur(4px);
      border-radius: 14px;
      padding: 10px 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.2s;
      border: 1px solid rgba(210,210,235,0.25);
      position: relative;
    }
    .search-channel-card:hover {
      background: rgba(255,255,245,0.2);
      border-color: rgba(255,255,210,0.6);
      transform: scale(1.02);
    }
    .search-channel-card .logo-wrapper {
      position: relative;
      width: 80px;
      height: 45px;
    }
    .search-channel-card .logo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      border-radius: 8px;
      background: #1e1e2e;
    }
    .search-channel-card .logo-refresh-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      font-size: 12px;
      z-index: 5;
    }
    .search-channel-card span {
      font-size: 11px;
      font-weight: 500;
      color: #f0f0fa;
      text-align: center;
      word-break: break-word;
    }
    .no-results-grid {
      grid-column: 1 / -1;
      text-align: center;
      padding: 40px 20px;
      color: #aaaacc;
      font-size: 14px;
    }

    .confirm-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);
      z-index: 160;
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.2s, opacity 0.2s ease;
    }
    .confirm-overlay.active {
      visibility: visible;
      opacity: 1;
    }
    .confirm-dialog {
      background: transparent;
      
      
      width: 85%;
      max-width: 350px;
      padding: 24px 20px;
      
      text-align: center;
    }
    .confirm-icon {
      font-size: 48px;
      color: #d2005f5c;
      margin-bottom: 16px;
    }
    .confirm-title {
      color: #e0e0f0;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .confirm-message {
      color: #aaaacc;
      font-size: 14px;
      margin-bottom: 24px;
    }
    .confirm-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
    }
    .confirm-btn {
      padding: 10px 24px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
    }
    .confirm-btn.yes {
      background: linear-gradient(135deg, #d2005f5c, #d200815f);
      color: white;
    }
    .confirm-btn.no {
      background: rgba(255,255,255,0.1);
      color: #ccc;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .confirm-btn.no:hover {
      background: rgba(255,255,255,0.2);
    }

    .channel-side-menu {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      max-width: 400px;
      height: 80%;
      max-height: 100%;
      background: rgba(0,0,0,0.27);
      backdrop-filter: blur(2px);
      z-index: 101;
      border-radius: 20px;
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1), opacity 0.3s;
      border-right: 1px solid rgba(220, 220, 245, 0.25);
      display: flex;
      flex-direction: column;
      pointer-events: none;
      box-shadow: 5px 0 25px rgba(0,0,0,0.6);
      opacity: 0;
    }
    .channel-side-menu.active {
      transform: translateX(0);
      pointer-events: auto;
      opacity: 1;
    }
    .side-menu-header {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,245,0.2);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(0,0,0,0.3);
      flex-shrink: 0;
    }
    .side-menu-header h4 {
      color: #e0e0f0;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .side-menu-header-actions {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .side-menu-settings-btn {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: white;
      transition: all 0.2s;
      border: 1px solid rgba(255,255,245,0.2);
    }
    .close-side-menu {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(255,80,100,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #ffa0b0;
    }
    .close-side-menu:hover {
      background: rgba(255,80,100,0.4);
    }
    .side-channel-grid {
      flex: 1;
      overflow-y: auto;
      padding: 12px 10px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
      align-content: start;
    }
    .side-channel-grid::-webkit-scrollbar {
      width: 3px;
    }
    .side-channel-grid::-webkit-scrollbar-thumb {
      background: rgba(255,255,245,0.3);
      border-radius: 10px;
    }
    .side-channel-card {
      background: transparent;
      backdrop-filter: blur(4px);
      border-radius: 10px;
      padding: 8px 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      transition: all 0.2s;
      border: 1.5px solid rgba(210,210,235,0.2);
      position: relative;
    }
    .side-channel-card:hover {
      background: rgba(255,255,245,0.15);
      border-color: rgba(255,255,245,0.4);
      transform: scale(1.02);
    }
    .side-channel-card.active {
      border: 2px solid #ffffff;
      background: rgba(255,255,255,0.18);
      box-shadow: 0 0 15px rgba(255,255,240,0.3);
    }
    .side-channel-card .logo-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
    }
    .side-channel-card .logo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      border-radius: 6px;
      background: rgba(0,0,0,0.27);
    }
    .side-channel-card .logo-refresh-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(0,0,0,0.27);
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      font-size: 11px;
      z-index: 5;
    }
    .side-channel-card span {
      font-size: 9px;
      font-weight: 500;
      color: #f0f0fa;
      text-align: center;
      word-break: break-word;
      line-height: 1.2;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      width: 100%;
    }
    .side-channel-status {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #4CAF50;
      box-shadow: 0 0 6px #4CAF50;
      display: none;
    }
    .side-channel-card.active .side-channel-status {
      display: block;
    }

    .side-settings-panel {
      padding: 16px 14px;
      border-bottom: 1px solid rgba(255,255,245,0.15);
      background: rgba(0,0,0,0.2);
      flex-shrink: 0;
    }
    .side-settings-panel .toggle-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .side-settings-panel .toggle-label {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-size: 13px;
      font-weight: 500;
    }
    .side-settings-panel .toggle-label i {
      width: 20px;
      color: #e5006884;
      font-size: 14px;
    }
    .side-settings-panel .toggle-switch {
      position: relative;
      width: 48px;
      height: 26px;
      background: rgba(100,100,140,0.4);
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s;
      border: 1px solid rgba(255,255,245,0.3);
    }
    .side-settings-panel .toggle-switch.active {
      background: linear-gradient(135deg, #e5006884, #e5006884);
    }
    .side-settings-panel .toggle-slider {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: #ffffff;
      border-radius: 50%;
      transition: transform 0.3s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
    .side-settings-panel .toggle-switch.active .toggle-slider {
      transform: translateX(22px);
    }
    .side-settings-note {
      color: #8888aa;
      font-size: 10px;
      margin-top: 6px;
      padding-left: 30px;
    }

    .side-menu-mode .channel-slider-wrapper {
      display: none;
    }
    .side-menu-mode .slider-top-bar {
      border-bottom: none;
      margin-bottom: 0;
    }
    .side-menu-mode .compact-slider {
      padding: 14px 18px 14px;
    }

    .skeleton-card {
      min-width: 100px;
      width: 100px;
      background: rgba(30,30,45,0.6);
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 10px 5px;
      border: 1px solid rgba(210,210,235,0.2);
    }
    .skeleton-logo {
      width: 75px;
      height: 42px;
      background: linear-gradient(90deg, #2a2a3a, #3a3a4a, #2a2a3a);
      background-size: 200% 100%;
      animation: skeletonShine 1.2s infinite;
      border-radius: 8px;
    }
    .skeleton-text {
      width: 65px;
      height: 10px;
      background: linear-gradient(90deg, #2a2a3a, #3a3a4a, #2a2a3a);
      background-size: 200% 100%;
      animation: skeletonShine 1.2s infinite;
      border-radius: 4px;
    }
    @keyframes skeletonShine {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    @media (max-width: 768px) {
      .watermark-logo-nurmd2006 { width: 65px; top: 10px; left: 10px; }
      .mini-card { min-width: 90px; width: 90px; }
      .mini-card .logo-wrapper { width: 68px; height: 38px; }
      .icon-group { gap: 14px; }
      .icon-group .action-icon { font-size: 18px; }
      .top-header { padding: 8px 16px; }
      .live-badge { padding: 6px 20px; }
      .live-badge span { font-size: 12px; }
      .channel-side-menu { max-width: 320px; }
      .side-channel-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px 8px; }
      .side-channel-card { padding: 6px 3px; }
      .side-channel-card span { font-size: 8px; }
    }

    @media (max-width: 480px) {
      .side-channel-grid { grid-template-columns: repeat(4, 1fr); }
      .channel-side-menu { max-width: 100%; }
    }

    @media (min-width: 1200px) {
      .side-channel-grid { grid-template-columns: repeat(4, 1fr); }
      .channel-side-menu { max-width: 450px; }
    }

    .loading-reflect.hide-load, .loading-corner.hide-load {
      display: none;
    }
