:root {
  --tv-bg: #0b1221;
  --tv-text: #c9d1d9;
  --tv-text-strong: #ffffff;
  --tv-accent: #2962ff;
  --tv-border: #1f2a44;
  --tv-hover: #142041;
}

.tv-header { 
  position: fixed; 
  top: 0; 
  left: 10px; 
  right: 0; 
  z-index: 1000; 
  background: var(--tv-bg); 
  border-bottom: 1px solid var(--tv-border); 
  height: 64px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tv-header__inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px !important;
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 0 !important;
  height: 64px !important;
}

.tv-hamburger { 
  display: none; 
  width: 40px; 
  height: 40px; 
  background: transparent; 
  border: 0; 
  margin-right: 6px; 
  cursor: pointer; 
}

/* Chỉ hiển thị hamburger trên mobile */
@media (max-width: 768px) {
  .tv-hamburger {
    display: block !important;
  }
}

.tv-hamburger span { 
  display:block; 
  width: 22px;  
  height: 2px; 
  background:#8fa1c2; 
  margin:5px auto; 
  border-radius:2px; 
}

.tv-brand { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  text-decoration: none; 
  color: var(--tv-text-strong); 
  font-weight: 700; 
}

.tv-brand__logo { 
  width: 24px; 
  height: 24px; 
  object-fit: contain; 
}

.tv-brand__name { 
  font-size: 16px; 
  letter-spacing: .2px; 
}

/* Logo ở giữa */
.tv-logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 !important;
  padding: 0 20px !important;
}

.tv-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--tv-text-strong);
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.tv-logo-link:hover {
  opacity: 0.8;
}

.tv-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tv-logo-text {
  font-size: 18px;
  letter-spacing: .2px;
  font-weight: 800;
}

.tv-nav { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
}

.tv-nav__link { 
  color: var(--tv-text); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 14px; 
  padding: 6px 8px; 
  border-radius: 6px; 
}

.tv-nav__link:hover { 
  color: var(--tv-text-strong); 
  background: var(--tv-hover); 
}

.tv-nav__more { 
  position: relative; 
}

.tv-nav__more-btn { 
  background: transparent; 
  border: 0; 
  cursor: pointer; 
  color: var(--tv-text); 
  font-weight: 600; 
  font-size: 14px; 
  padding: 6px 8px; 
  border-radius: 6px; 
}

.tv-nav__more-btn:hover { 
  color: var(--tv-text-strong); 
  background: var(--tv-hover); 
}

.tv-dropdown { 
  position: absolute; 
  top: calc(100% + 8px); 
  left: 0; 
  min-width: 200px; 
  background: var(--tv-bg); 
  border: 1px solid var(--tv-border); 
  border-radius: 10px; 
  padding: 8px; 
  display: none; 
  box-shadow: 0 8px 24px rgba(0,0,0,.5); 
  z-index: 1001; 
}

.tv-dropdown--right { 
  left: auto; 
  right: 0; 
}

.tv-dropdown__item { 
  display: block; 
  color: var(--tv-text); 
  text-decoration: none; 
  padding: 10px 12px; 
  border-radius: 8px; 
  font-size: 14px; 
}

.tv-dropdown__item:hover { 
  background: var(--tv-hover); 
  color: var(--tv-text-strong); 
}

.tv-dropdown__header { 
  color: var(--tv-text-strong); 
  font-weight: 600; 
  padding: 8px 12px; 
  border-bottom: 1px solid var(--tv-border); 
  font-size: 12px; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
}

.tv-dropdown__check { 
  color: var(--tv-accent); 
  margin-left: auto; 
}

.tv-actions { 
  display: flex !important; 
  align-items: center !important; 
  gap: 10px !important; 
}

.tv-search { 
  display: flex !important; 
  align-items: center !important; 
  gap: 8px !important; 
  background: #0e1730 !important; 
  border: 1px solid var(--tv-border) !important; 
  padding: 6px 10px !important; 
  border-radius: 999px !important; 
  color: var(--tv-text) !important; 
  min-width: 200px !important; 
  transition: width .2s ease !important; 
}

.tv-search input { 
  background: transparent !important; 
  border: 0 !important; 
  outline: none !important; 
  color: var(--tv-text-strong) !important; 
  width: 160px !important; 
  font-size: 14px !important; 
}

.tv-search.is-collapsed { 
  min-width: 36px; 
  padding: 6px; 
}

.tv-search.is-collapsed input { 
  width: 0; 
  padding: 0; 
  opacity: 0; 
}

.tv-btn { 
  background: transparent; 
  border: 1px solid var(--tv-border); 
  color: var(--tv-text); 
  padding: 8px 16px; 
  border-radius: 6px; 
  font-weight: 600;
  font-size: 14px; 
  cursor: pointer; 
  transition: all 0.2s ease; 
}

.tv-btn:hover { 
  background: var(--tv-hover); 
  color: var(--tv-text-strong); 
}

.tv-btn--primary { 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
}

.tv-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tv-btn--primary:hover::before {
  left: 100%;
}

.tv-btn--primary:hover { 
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.tv-btn--ghost { 
  border-color: transparent; 
}

.tv-btn--ghost:hover { 
  background: var(--tv-hover); 
}

.tv-account { 
  position: relative; 
}

.tv-acc__name { 
  margin-left: 6px; 
}

/* Mobile Drawer */
.tv-overlay { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: rgba(0,0,0,0.5); 
  z-index: 999; 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tv-overlay.show { 
  display: block; 
}

.tv-drawer { 
  position: fixed; 
  top: 0; 
  left: -300px; 
  width: 300px; 
  height: 100vh; 
  background: var(--tv-bg); 
  border-right: 1px solid var(--tv-border); 
  z-index: 1000; 
  transition: left 0.3s ease; 
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tv-drawer.show { 
  left: 0; 
}

.tv-drawer__header { 
  padding: 20px; 
  border-bottom: 1px solid var(--tv-border); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-shrink: 0;
  background: var(--tv-bg);
}
.tv-drawer__header.minimal { 
  background: #0b1221; 
  color: #fff; 
}
.tv-drawer__title { 
  font-weight: 700; 
  font-size: 16px; 
}

.tv-drawer__close { 
  background: transparent; 
  border: 0; 
  color: var(--tv-text); 
  font-size: 24px; 
  cursor: pointer; 
}

.tv-drawer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tv-drawer__logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tv-drawer__logo-text {
  color: var(--tv-text-strong);
  font-weight: 700;
  font-size: 16px;
}

.tv-drawer__nav { 
  padding: 20px !important;
  flex: 1 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: calc(100vh - 140px) !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent !important;
}
.tv-drawer__nav.minimal { 
  padding: 8px 16px !important; 
}
.tv-drawer__link { 
  display: block; 
  text-decoration: none; 
  color: #111827; 
  font-weight: 700; 
  font-size: 15px; 
  padding: 14px 12px; 
  border-bottom: 1px solid #e5e7eb; 
}
.tv-drawer__link:hover { 
  background: #f3f4f6; 
}

/* Custom scrollbar cho mobile drawer */
.tv-drawer__nav::-webkit-scrollbar {
  width: 4px !important;
}

.tv-drawer__nav::-webkit-scrollbar-track {
  background: transparent !important;
}

.tv-drawer__nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 2px !important;
}

.tv-drawer__nav::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3) !important;
}

.tv-drawer__nav a { 
  display: block !important;
  color: #000000 !important;
  text-decoration: none !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  font-weight: 600 !important;
}

.tv-drawer__nav a:hover { 
  color: #000000 !important;
  font-weight: 700 !important;
  background-color: #f3f4f6 !important;
  padding-left: 10px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}

.tv-drawer__nav hr { 
  border: none !important;
  border-top: 1px solid #e5e7eb !important;
  margin: 20px 0 !important;
}

/* Notification Button */
.tv-notification {
  position: relative;
  margin-right: 10px;
}

.notification-btn {
  position: relative;
  padding: 6px 10px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%) !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  color: #ffffff !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 12px !important;
  font-weight: 500;
  min-width: 36px;
  min-height: 36px;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2) !important;
}

.notification-btn:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(147, 51, 234, 0.25) 100%) !important;
  border: 1px solid rgba(59, 130, 246, 0.5) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.notification-btn i {
  font-size: 14px;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.notification-btn:hover i {
  color: #5a67d8;
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 8px;
  min-width: 14px;
  height: 14px;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4) !important;
  animation: pulse-badge 2s infinite !important;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Notification Modal */
.notification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.notification-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1a1a;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  max-height: 80vh;
  overflow: hidden;
  border: 1px solid #333;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #222;
  border-bottom: 1px solid #333;
}

.notification-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.notification-title i {
  color: #3b82f6;
  font-size: 20px;
}

.notification-close {
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.notification-close:hover {
  background: #333;
  color: #fff;
}

.notification-list {
  max-height: 400px;
  overflow-y: auto;
  background: #1a1a1a;
}

.notification-list::-webkit-scrollbar {
  width: 6px;
}

.notification-list::-webkit-scrollbar-track {
  background: #222;
}

.notification-list::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 24px;
  border-bottom: 1px solid #333;
  position: relative;
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-item.unread {
  background: rgba(59, 130, 246, 0.05);
  border-left: 3px solid #3b82f6;
}

.notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.notification-icon i {
  color: white;
  font-size: 16px;
}

.notification-details {
  flex: 1;
  min-width: 0;
}

.notification-details .notification-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.notification-message {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.notification-time {
  color: #888;
  font-size: 12px;
  font-weight: 500;
}

.notification-mark {
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
}

.notification-mark:hover {
  background: #2563eb;
}

.notification-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  background: #222;
  border-top: 1px solid #333;
}

.btn-mark-all,
.btn-view-all {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-mark-all:hover,
.btn-view-all:hover {
  background: #2563eb;
}

.btn-view-all {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.btn-view-all:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .notification-container {
    width: 95%;
    max-width: none;
    top: 60px;
    transform: translateX(-50%);
    max-height: calc(100vh - 120px);
  }
  
  .notification-header {
    padding: 16px 20px;
  }
  
  .notification-item {
    padding: 14px 20px;
  }
  
  .notification-footer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-mark-all,
  .btn-view-all {
    width: 100%;
    justify-content: center;
  }
}

/* Notification feedback styles */
.notification-feedback {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.notification-feedback i {
  font-size: 16px;
}

/* Smooth transitions for all interactive elements */
.notification-btn,
.close-notification,
.mark-all-read-btn,
.view-all-notifications-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.notification-btn:focus,
.close-notification:focus,
.mark-read-btn:focus,
.mark-all-read-btn:focus,
.view-all-notifications-btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Dark mode optimizations */
@media (prefers-color-scheme: dark) {
  .notification-content {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  }
  
  .notification-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  }
  
  .notification-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  }
}

/* Responsive với specificity cao hơn */
@media (max-width: 980px) { 
  .tv-header .tv-nav { 
    display: none !important; 
  }
  
  
  /* Hiển thị logo ở giữa trên tablet */
  .tv-header .tv-logo-center {
    display: flex !important;
    flex: 1;
    justify-content: center;
  }
  
  .tv-header .tv-search { 
    min-width: 36px !important; 
    padding: 6px !important; 
  }
  
  .tv-header .tv-search input { 
    width: 0 !important; 
    padding: 0 !important; 
    opacity: 0 !important; 
  }
  
  .tv-header .tv-search.is-collapsed { 
    min-width: 200px !important; 
    padding: 6px 10px !important; 
  }
  
  .tv-header .tv-search.is-collapsed input { 
    width: 160px !important; 
    padding: 0 !important; 
    opacity: 1 !important; 
  }
}

@media (max-width: 768px) { 
  .tv-header {
    background: #000000 !important;
    border-bottom: 1px solid #333333 !important;
    height: 56px !important;
  }
  
  .tv-header .tv-header__inner { 
    padding: 8px 12px !important; 
    height: 56px !important;
  }
  
  .tv-header .tv-brand__name { 
    display: none !important; 
  }
  
  /* Hiển thị logo ở giữa trên mobile */
  .tv-header .tv-logo-center {
    display: flex !important;
    flex: 1;
    justify-content: center;
  }
  
  .tv-header .tv-logo-text {
    font-size: 16px !important;
  }
  
  .tv-header .tv-logo-img {
    width: 28px !important;
    height: 28px !important;
  }
  
  .tv-header .tv-actions { 
    gap: 6px !important; 
  }
  
  .tv-header .tv-btn { 
    padding: 6px 12px !important; 
    font-size: 13px !important; 
  }
  
  /* Ẩn hoàn toàn navigation trên mobile nhỏ */
  .tv-header .tv-nav {
    display: none !important;
  }
  
  
  /* Ẩn dropdown menu trên mobile */
  .tv-header .tv-dropdown {
    display: none !important;
  }
  
  /* Cho phép dropdown user hiển thị trên mobile */
  .tv-account .tv-dropdown {
    display: none !important;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }
  
  .tv-account .tv-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: fixed !important;
    z-index: 10000 !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,.12) !important;
    right: 12px !important;
    top: 60px !important;
    width: 200px !important;
  }
}

/* Thêm breakpoint cho mobile rất nhỏ */
@media (max-width: 480px) {
  .tv-header {
    height: 52px !important;
  }
  
  .tv-header .tv-header__inner {
    padding: 6px 8px !important;
    gap: 8px !important;
    height: 52px !important;
  }
  
  /* Hiển thị logo ở giữa trên mobile rất nhỏ */
  .tv-header .tv-logo-center {
    display: flex !important;
    flex: 1;
    justify-content: center;
  }
  
  .tv-header .tv-logo-text {
    font-size: 14px !important;
  }
  
  .tv-header .tv-logo-img {
    width: 24px !important;
    height: 24px !important;
  }
  
  .tv-header .tv-search {
    min-width: 32px !important;
    padding: 4px !important;
  }
  
  .tv-header .tv-actions {
    gap: 4px !important;
  }
  
  .tv-header .tv-btn {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }
  
  /* Ẩn hoàn toàn navigation trên mobile rất nhỏ */
  .tv-header .tv-nav {
    display: none !important;
  }
}

/* Fix cho header bị lặp lại */
.tv-header {
position: fixed !important;
top: 0 !important;
left: 0 !important;
right: 0 !important;
z-index: 1000 !important;
background: var(--tv-bg) !important;
border-bottom: 1px solid var(--tv-border) !important;
}

.tv-header__inner {
max-width: 1200px !important;
margin: 0 auto !important;
padding: 10px 16px !important;
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
gap: 12px !important;
}

/* Ẩn các phần tử bị lặp lại */
.tv-header + .tv-header,
.tv-header__inner + .tv-header__inner {
display: none !important;
}

/* Đảm bảo chỉ có một header hiển thị */
.tv-header:not(:first-of-type) {
display: none !important;
}

/* Đảm bảo content không bị che bởi fixed header */
body {
padding-top: 70px !important;
margin: 0 !important;
}

/* Mobile responsive padding */
@media (max-width: 768px) {
  body {
    padding-top: 56px !important;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 52px !important;
  }
}

/* Loại bỏ khoảng trắng không cần thiết */
.container, .main-content, .page-content {
margin-top: 0 !important;
padding-top: 0 !important;
}

/* Luxury mobile drawer với gradient đẹp */
.tv-drawer {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%) !important;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  border-right: 1px solid rgba(148, 163, 184, 0.3) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 300px !important;
  height: 100vh !important;
  z-index: 9999 !important;
  display: none !important;
  transform: translateX(-100%) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
}

.tv-drawer.show {
  display: block !important;
  transform: translateX(0) !important;
}

@keyframes slideInDrawer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.tv-drawer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 50%, rgba(226, 232, 240, 0.95) 100%);
  z-index: -1;
}

.tv-overlay {
  background: rgba(0, 0, 0, 0.4) !important;
}

.tv-drawer__header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
  border-bottom: 1px solid #2d3748 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.tv-drawer__logo-text {
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  letter-spacing: -0.5px !important;
}

.tv-drawer__close {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.tv-drawer__close:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* Ẩn user info section để tạo giao diện luxury hơn */
.tv-drawer__user-info {
  display: none !important;
}

.tv-drawer__user-name {
  display: none !important;
}

.tv-drawer__user-status {
  display: none !important;
}

.tv-drawer__guest-text {
  display: none !important;
}

.tv-drawer__login-btn {
  display: none !important;
}

.tv-drawer__nav-title {
  color: #475569 !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin: 20px 0 12px 0 !important;
  padding: 0 20px !important;
  position: relative !important;
}

.tv-drawer__nav-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

.tv-drawer__nav-item {
  color: #334155 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 14px 20px !important;
  margin: 3px 12px !important;
  border-radius: 12px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  border: none !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  cursor: pointer !important;
}

.tv-drawer__nav-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
}

.tv-drawer__nav-item:active::after {
  width: 300px;
  height: 300px;
}

.tv-drawer__nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tv-drawer__nav-item:hover::before {
  left: 100%;
}

.tv-drawer__nav-item:hover {
  color: #1e293b !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%) !important;
  transform: translateX(6px) translateY(-1px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2), 0 4px 12px rgba(147, 51, 234, 0.1) !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.tv-drawer__nav-item span {
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.3px !important;
}

.tv-drawer__nav-item:hover span {
  font-weight: 700 !important;
}

.tv-drawer__nav-item i {
  color: #64748b !important;
  font-weight: 500 !important;
  margin-right: 12px !important;
  width: 20px !important;
  text-align: center !important;
  font-size: 16px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.tv-drawer__nav-item:hover i {
  color: #3b82f6 !important;
  font-weight: 600 !important;
  transform: scale(1.1) !important;
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.3) !important;
}

/* Hiệu ứng đặc biệt cho từng loại icon */
.tv-drawer__nav-item:hover i.fa-robot {
  color: #10b981 !important;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.4) !important;
  animation: pulse-robot 0.6s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-chart-line {
  color: #f59e0b !important;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4) !important;
  animation: bounce-chart 0.6s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-globe {
  color: #06b6d4 !important;
  text-shadow: 0 0 12px rgba(6, 182, 212, 0.4) !important;
  animation: rotate-globe 0.8s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-wallet {
  color: #8b5cf6 !important;
  text-shadow: 0 0 12px rgba(139, 92, 246, 0.4) !important;
  animation: shake-wallet 0.5s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-arrow-down {
  color: #ef4444 !important;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.4) !important;
  animation: bounce-down 0.6s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-arrow-up {
  color: #10b981 !important;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.4) !important;
  animation: bounce-up 0.6s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-handshake {
  color: #f97316 !important;
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.4) !important;
  animation: shake-hand 0.6s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-user-cog {
  color: #6366f1 !important;
  text-shadow: 0 0 12px rgba(99, 102, 241, 0.4) !important;
  animation: rotate-cog 0.8s ease-in-out !important;
}

.tv-drawer__nav-item:hover i.fa-history {
  color: #64748b !important;
  text-shadow: 0 0 12px rgba(100, 116, 139, 0.4) !important;
  animation: fade-history 0.6s ease-in-out !important;
}

.tv-drawer__nav-item--logout {
  color: #dc2626 !important;
}

.tv-drawer__nav-item--logout:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%) !important;
  color: #dc2626 !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15) !important;
}

.tv-drawer__nav-item--logout:hover i {
  color: #dc2626 !important;
}

.tv-drawer__nav-item--register {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  margin: 16px 12px !important;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.3) !important;
}

.tv-drawer__nav-item--register:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.4) !important;
}

.tv-drawer__footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
  border-top: 1px solid #2d3748 !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
}

.tv-drawer__version {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 12px !important;
}

.tv-drawer__social-link {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.tv-drawer__social-link:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1) !important;
}

/* Keyframes cho các hiệu ứng icon */
@keyframes pulse-robot {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.3); }
}

@keyframes bounce-chart {
  0%, 100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.2) translateY(-2px); }
}

@keyframes rotate-globe {
  0% { transform: scale(1.1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(360deg); }
}

@keyframes shake-wallet {
  0%, 100% { transform: scale(1.1) translateX(0); }
  25% { transform: scale(1.1) translateX(-2px); }
  75% { transform: scale(1.1) translateX(2px); }
}

@keyframes bounce-down {
  0%, 100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.2) translateY(2px); }
}

@keyframes bounce-up {
  0%, 100% { transform: scale(1.1) translateY(0); }
  50% { transform: scale(1.2) translateY(-2px); }
}

@keyframes shake-hand {
  0%, 100% { transform: scale(1.1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  75% { transform: scale(1.1) rotate(5deg); }
}

@keyframes rotate-cog {
  0% { transform: scale(1.1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(180deg); }
}

@keyframes fade-history {
  0%, 100% { opacity: 1; transform: scale(1.1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
