/* =====================================================
   ZONA ASUPAN69 - PRODUCTION STYLESHEET v16.0
   Mobile-First | Optimized | Performance Focused
   ===================================================== */

/* CSS VARIABLES */
:root {
  --neon-purple: #8b5cf6;
  --neon-cyan: #00d4ff;
  --accent-pink: #ec4899;
  --bg-dark: #060609;
  --bg-darker: #05050a;
  --card-bg: #12121a;
  --text-light: #f9fafb;
  --text-muted: #a1a8b0;
  --border-color: rgba(139, 92, 246, 0.2);
  
  --gradient: linear-gradient(135deg, #8b5cf6, #ec4899, #00d4ff);
  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.04));
  
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-neon: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(236, 72, 153, 0.3);
  
  --z-sticky: 20;
  --z-header: 30;
  --z-telegram: 40;
  --z-overlay: 50;
  --z-modal: 60;
  --z-toast: 70;
  --z-progress: 80;
}

/* RESET & BASE */
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  padding: 9px 9px 100px;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

button, a {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s var(--ease);
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea, select {
  font: inherit;
}

/* FOCUS STYLES (Accessibility) */
button:focus-visible,
a:focus-visible,
input:focus-visible,
[role="button"]:focus-visible,
.sidebar-item:focus-visible,
.category-item:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* UTILITIES */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skeleton {
  background: linear-gradient(90deg, #1a1a1f 25%, #2a2a2f 50%, #1a1a1f 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  z-index: var(--z-progress);
  transition: width 0.1s ease-out;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
  will-change: width;
}

/* VIP OVERLAY & POPUP */
.vip-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.vip-overlay.show {
  opacity: 1;
  visibility: visible;
}

.vip-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 93%;
  max-width: 380px;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-bounce);
  pointer-events: none;
}

.vip-popup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.vip-card {
  background: linear-gradient(180deg, #0a0814, #05030a);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  border: 1px solid rgba(144, 105, 233, 0.6);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.vip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 0%, rgba(144, 105, 233, 0.15), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.vip-title {
  text-align: center;
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.vip-desc-card {
  margin: 16px 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 14px;
  border-radius: var(--radius);
  border: 1px dashed rgba(144, 105, 233, 0.25);
  position: relative;
  z-index: 1;
}

.vip-desc-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: center;
}

.vip-features-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 14px;
  border-radius: var(--radius);
  border-left: 3px solid var(--neon-purple);
  margin: 14px 0;
  position: relative;
  z-index: 1;
}

.vip-features-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.vip-features-header strong {
  font-size: 14px;
  color: var(--neon-cyan);
  font-weight: 700;
}

.vip-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vip-features-list li {
  position: relative;
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.5;
  color: #d0d0d0;
}

.vip-features-list li::before {
  content: "✪";
  position: absolute;
  left: 0;
  color: var(--neon-purple);
  font-size: 12px;
}

.vip-cta-text {
  text-align: center;
  margin: 16px 0 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.vip-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.vip-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.25), rgba(144, 105, 233, 0.15));
  border: 1px solid rgba(144, 105, 233, 0.4);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.vip-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vip-btn:hover {
  transform: translateY(-2px);
  border-color: var(--neon-purple);
  box-shadow: var(--shadow-md);
}

.vip-btn:hover::before {
  opacity: 1;
}

.vip-btn:active {
  transform: translateY(0) scale(0.98);
}

.vip-close-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(144, 105, 233, 0.15);
  border: 1px solid rgba(144, 105, 233, 0.3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  position: relative;
  z-index: 1;
}

.vip-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg-dark);
  padding: 6px 0;
  border-bottom: 1px solid rgba(144, 105, 233, 0.3);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo69 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  border: 0.69px solid var(--neon-purple);
  flex-shrink: 0;
}

.header-info {
  flex: 1;
  min-width: 0;
}

.title69 {
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  background: linear-gradient(180deg, #b693f9, #9069e9, #3c2882);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 9px #090909);
}

.subtitle69 {
  color: cyan;
  font-size: 0.69rem;
  font-weight: 399;
  text-shadow: 0 0 9px #090909;
  margin-top: 1px;
}

/* BANNER */
.banner-zonaasupan69 {
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 6px rgba(144, 105, 233, 0.3);
  border: 1px solid rgba(169, 119, 255, 0.45);
}

.banner-zonaasupan69 img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease);
}

.banner-zonaasupan69:hover img {
  transform: scale(1.02);
}

.click-again-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.click-again-text {
  color: var(--neon-cyan);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 12px 20px;
  background: rgba(144, 105, 233, 0.3);
  border: 2px solid var(--neon-purple);
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* APK PRODUCTS */
.produk-apk-asupan {
  max-width: 1200px;
  margin: 9px auto;
  padding: 9px;
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.05), rgba(0, 255, 255, 0.02));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.produk-apk-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.tab-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.apk-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.apk-slider-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 10px;
  width: 100%;
}

.apk-slider {
  display: flex;
  gap: 10px;
  padding: 3px 0;
  transition: transform 0.4s var(--ease);
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.apk-slider:active {
  cursor: grabbing;
}

.product-card {
  flex: 0 0 auto;
  min-width: clamp(115px, 28vw, 140px);
  width: clamp(115px, 28vw, 140px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.95), rgba(10, 10, 15, 0.98));
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(144, 105, 233, 0.4);
  box-shadow: 0 6px 20px rgba(144, 105, 233, 0.2);
}

.product-image-container {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
  background: var(--bg-darker);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.product-card:hover img {
  transform: scale(1.1);
}

.discount-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 9px;
  padding: 3px 9px;
  width: fit-content;
  font-size: 6px;
  color: var(--neon-cyan);
  background: rgba(0, 255, 255, 0.06);
  border: 1px solid rgba(0, 255, 255, 0.12);
  border-radius: 3px;
}

.product-info {
  padding: 9px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 3px;
}

.product-title {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-category {
  margin-bottom: 6px;
  flex: 1;
  font-size: 9px;
  color: #999;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  letter-spacing: 0.9px;
}

.buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(144, 105, 233, 0.6), rgba(144, 105, 233, 0.9));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid rgba(144, 105, 233, 0.3);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  margin-top: auto;
}


.buy-button:hover {
  background: linear-gradient(135deg, var(--neon-purple), rgba(144, 105, 233, 0.9));
  transform: translateY(-2px);
  border-color: var(--neon-purple);
  box-shadow: 0 3px 9px rgba(144, 105, 233, 0.3);
}

/* PAGINATION */
.apk-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 3px;
  background: rgba(144, 105, 233, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 200px;
}

.apk-pagination span {
  flex: 1;
  height: 100%;
  background: rgba(144, 105, 233, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.apk-pagination span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.apk-pagination span:hover::after {
  opacity: 0.5;
}

.apk-pagination span.active::after {
  opacity: 1;
}

.apk-pagination span + span {
  margin-left: 2px;
}

/* CHANNEL SECTION */
.channel-section {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 1200px;
  margin: 12px auto;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(144, 105, 233, 0.3);
}

.channel-avatar {
  flex-shrink: 0;
}

.channel-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #999;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
}

.channel-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.channel-name {
  font-weight: 700;
  color: #f9f9f9;
  font-size: 15px;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-subscribers {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 399;
}

.subscribe-btn {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.012));
  color: white;
  border: none;
  border-bottom: solid 1px #9069e9;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.subscribe-btn:hover {
  box-shadow: 0 3px 9px rgba(144, 105, 233, 0.3);
  border: 1px solid rgba(144, 105, 233, 0.3);
  transform: scale(1.05);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

/* SEARCH & CATEGORY */
.search-filter-container {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 14px auto;
  padding: 0 8px;
  align-items: center;
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}

.search-input {
  width: 100%;
  padding: 9px 39px 9px 15px;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 12px;
  background: rgba(18, 18, 26, 0.8);
  color: white;
  transition: all 0.2s var(--ease);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
}

.search-input:focus {
  outline: none;
  border-color: var(--neon-purple);
  transform: translateY(-1px);
  box-shadow: 0 3px 9px rgba(139, 92, 246, 0.3), 0 0 18px rgba(139, 92, 246, 0.3);
  background: rgba(18, 18, 26, 0.96);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-btn {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.category-dropdown-wrapper {
  position: relative;
  flex-shrink: 0;
  min-width: 118px;
  max-width: 169px;
}

.category-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 9px 12px;
  border-radius: 20px;
  border: 1px solid rgba(144, 105, 233, 0.6);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

.category-dropdown-btn:hover {
  border-color: var(--neon-purple);
  transform: translateY(-1px);
}

.category-dropdown-btn .dropdown-icon {
  font-size: 9px;
  transition: transform 0.3s ease;
}

.category-dropdown-btn[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.category-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.98), rgba(10, 10, 15, 0.98));
  border: 1px solid rgba(144, 105, 233, 0.3);
  border-radius: 12px;
  padding: 3px;
  display: none;
  flex-direction: column;
  gap: 3px;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.category-dropdown-menu.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 9px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.category-item:hover {
  background: rgba(144, 105, 233, 0.2);
  transform: translateX(4px);
}

.category-item.active {
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.3), rgba(144, 105, 233, 0.15));
  color: var(--neon-cyan);
}

.category-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 69%;
  background: var(--neon-cyan);
  border-radius: 2px;
}

.category-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.category-item span {
  flex: 1;
}

/* TABS */
.tabs {
  margin: 16px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tab-panels {
  margin-top: 0;
}

.tab-panel {
  display: none;
}

.tab-panel.visible {
  display: block;
  animation: fadeInPanel 0.4s ease;
}

@keyframes fadeInPanel {
  from { 
    opacity: 0; 
    transform: translateY(10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* VIDEO GRID - OPTIMIZED FOR 50+ VIDEOS */
.sidebar-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.sidebar-item {
  margin-top: 12px;
  border-bottom: 3px solid #9069e9;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(144, 105, 233, 0.3);
  display: flex;
  flex-direction: column;
  box-shadow: 0 9px 39px rgba(144, 105, 233, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  will-change: transform;
}

.sidebar-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sidebar-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 48px rgba(144, 105, 233, 0.25);
  border-bottom: 3px solid #9069e9;
}

.sidebar-item:hover::before {
  opacity: 1;
}

.thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease;
  will-change: transform;
}

.sidebar-item:hover .thumbnail {
  transform: scale(1.05);
}

.sidebar-info {
  padding: 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
}

.sidebar-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
}

.sidebar-channel,
.sidebar-meta {
  font-size: 9px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.sidebar-channel svg,
.sidebar-meta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* IFRAME CONTAINER */
.iframe-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  border-radius: var(--radius);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  top: 70px;
  right: 12px;
  left: 12px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: all;
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.98), rgba(10, 10, 15, 0.98));
  border: 1px solid rgba(144, 105, 233, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(144, 105, 233, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastSlideIn 0.4s var(--ease-bounce);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.toast.removing {
  animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastSlideOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(144, 105, 233, 0.2);
}

.toast-success .toast-icon {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.15);
}

.toast-error .toast-icon {
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.15);
}

.toast-info .toast-icon {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.15);
}

.toast-warning .toast-icon {
  color: #ffaa00;
  background: rgba(255, 170, 0, 0.15);
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 3px;
}

.toast-message {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.toast-close {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

/* TELEGRAM FLOAT */
.telegram-float {
  position: fixed;
  left: 12px;
  bottom: 69px;
  z-index: var(--z-telegram);
  cursor: pointer;
  animation: floatUpDown 3s ease-in-out infinite;
  text-decoration: none;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.telegram-float-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 39px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(9, 9, 9, 0.95));
  border: 1px solid rgba(144, 105, 233, 0.4);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.telegram-float-inner:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.5), rgba(144, 105, 233, 0.3));
  border-color: var(--neon-purple);
  box-shadow: var(--shadow-neon);
}

.telegram-float-inner svg {
  display: block;
  width: 33px;
  height: 33px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.9));
  flex-shrink: 0;
}

.telegram-label {
  display: inline;
}

/* ============================================
   FALLBACK PLAYER STYLES
   ============================================ */

.fallback-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 12px;
  text-align: center;
  animation: fadeInUp 0.5s ease-out;
}

.fallback-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.fallback-icon i {
  font-size: 40px;
  color: #fff;
}

.fallback-player h3 {
  font-size: 24px;
  font-weight: 700;
  color: #f9f9f9;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.fallback-player p {
  font-size: 16px;
  color: #b8b8b8;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.6;
}

.fallback-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.fallback-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.fallback-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.fallback-btn:hover::before {
  width: 300px;
  height: 300px;
}

.fallback-btn.primary {
  background: linear-gradient(135deg, #9069e9, #00ffff);
  color: #fff;
  box-shadow: 0 4px 20px rgba(144, 105, 233, 0.4);
}

.fallback-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(144, 105, 233, 0.6);
}

.fallback-btn.secondary {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.fallback-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
}

.fallback-btn i {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.fallback-btn span {
  position: relative;
  z-index: 1;
}

.fallback-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 6px;
  color: #00ffff;
  font-size: 14px;
  max-width: 500px;
}

.fallback-info i {
  font-size: 16px;
  flex-shrink: 0;
}

.loader-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ff6b6b;
}

.loader-error i {
  font-size: 48px;
  animation: shake 0.5s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fallback-player {
    padding: 30px 15px;
    min-height: 350px;
  }

  .fallback-player h3 {
    font-size: 20px;
  }

  .fallback-player p {
    font-size: 14px;
  }

  .fallback-buttons {
    flex-direction: column;
    width: 100%;
  }

  .fallback-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .fallback-info {
    font-size: 12px;
  }
}


/* FOOTER */
.footer-copyright {
  text-align: center;
  padding: 14px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.footer-copyright p {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin: 0;
}



/* DOWNLOAD MODAL */
.download-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.download-modal.show {
  display: flex;
}

.download-modal-content {
  background: linear-gradient(135deg, #0a0814, #05030a);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  max-width: 420px;
  width: 100%;
  border: 1px solid rgba(144, 105, 233, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  text-align: center;
  position: relative;
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin: 10px 0 20px;
}

.download-action-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--neon-purple), rgba(144, 105, 233, 0.8));
  border: 1px solid var(--neon-purple);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  margin-top: 20px;
  box-shadow: var(--shadow-md);
}

.download-action-btn:hover:not(.disabled) {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  box-shadow: var(--shadow-neon);
}

.download-action-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.download-action-btn.unlock-ready {
  background: linear-gradient(135deg, #ff6b00, #ff1744);
  border-color: #ff6b00;
}

.download-action-btn.download-ready {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border-color: #00ff88;
  animation: pulse 1.5s infinite;
}

.modal-footer-text {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.5;
}

.modal-footer-text svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* AD BANNER */
.ad-banner-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.97));
  padding: 8px 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-color);
  min-height: 50px;
  max-height: 60px;
  z-index: var(--z-sticky);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#banner-ad-container {
  margin: 0 auto;
  text-align: center;
  max-height: 50px;
  overflow: hidden;
}

.ad-native-container {
  max-width: 1200px;
  margin: 16px auto;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.ad-native-label {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MEDIA QUERIES - RESPONSIVE */
@media (min-width: 768px) {
  body {
    padding: 12px 12px 120px;
  }

  .sidebar-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .product-card {
    min-width: clamp(130px, 28vw, 150px);
    width: clamp(130px, 28vw, 150px);
  }

  .telegram-label {
    display: inline;
  }

  .toast-container {
    right: 20px;
    left: auto;
    max-width: 400px;
  }

  .toast {
    max-width: 400px;
  }

  .category-dropdown-menu {
    left: auto;
    right: 0;
    width: auto;
    min-width: 220px;
  }

  .vip-overlay {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (min-width: 1024px) {
  .sidebar-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .product-card {
    min-width: clamp(140px, 22vw, 160px);
    width: clamp(140px, 22vw, 160px);
  }
}

@media (min-width: 1440px) {
  .sidebar-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* PRINT */
@media print {
  .header,
  .banner-zonaasupan69,
  .produk-apk-asupan,
  .search-filter-container,
  .ad-banner-bottom,
  .telegram-float,
  .vip-overlay,
  .vip-popup,
  .scroll-progress,
  .toast-container {
    display: none !important;
  }
}

/* REDUCED MOTION (Accessibility) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* HIGH CONTRAST (Accessibility) */
@media (prefers-contrast: high) {
  :root {
    --text-muted: #c0c0c0;
    --border-color: rgba(139, 92, 246, 0.5);
  }
  
  .sidebar-item,
  .product-card,
  .vip-card {
    border-width: 2px;
  }
}

/* PERFORMANCE OPTIMIZATIONS */
.apk-slider,
.sidebar-item,
.product-card,
.thumbnail {
  will-change: transform;
}

.scroll-progress {
  will-change: width;
}

.vip-overlay,
.download-modal,
.loading-overlay {
  will-change: opacity;
}

/* GPU ACCELERATION */
.sidebar-item:hover,
.product-card:hover,
.vip-btn:hover,
.telegram-float-inner:hover {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
/* =====================================================
   LOAD MORE BUTTON - MODERN, AESTHETIC & ELEGANT
   Replace CSS Load More yang lama dengan ini
   ===================================================== */

/* ✅ Load More Wrapper */
.load-more-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  padding: 0 12px;
}

/* ✅ BUTTON MODERN & ELEGANT */
.load-more-btn-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(139, 92, 246, 0.08);
  border: 1.5px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 3px 12px rgba(139, 92, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gradient overlay on hover */
.load-more-btn-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 212, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 100px;
}

.load-more-btn-big:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 
    0 9px 21px rgba(139, 92, 246, 0.3),
    0 0 39px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: rgba(139, 92, 246, 0.12);
}

.load-more-btn-big:hover::before {
  opacity: 1;
}

.load-more-btn-big:active {
  transform: translateY(0);
}

/* Icon */
.load-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 212, 255, 0.15));
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.load-more-icon i {
  font-size: 14px;
  color: var(--neon-cyan);
  animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* Content */
.load-more-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.load-more-title {
  font-size: 14px;
  font-weight: 600;
  color: #f9f9f9;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.load-more-counter {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  line-height: 1.2;
}

.load-more-remaining {
  display: none; /* Hidden untuk tampilan lebih clean */
}

/* Arrow */
.load-more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.load-more-btn-big:hover .load-more-arrow {
  transform: translateY(2px);
  background: rgba(0, 212, 255, 0.25);
}

.load-more-arrow i {
  font-size: 12px;
  color: var(--neon-cyan);
}

/* ✅ COMPLETION MESSAGE - ELEGANT */
.load-complete-message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(0, 255, 136, 0.06);
  border: 1.5px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  box-shadow: 
    0 4px 16px rgba(0, 255, 136, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.load-complete-message i {
  font-size: 20px;
  color: #00ff88;
  margin: 0;
  display: flex;
  animation: scale-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.complete-title {
  font-size: 12px;
  font-weight: 600;
  color: #00ff88;
  margin: 0;
  letter-spacing: 0.3px;
  text-transform: none;
}

.complete-count {
  font-size: 11px;
  color: rgba(0, 255, 136, 0.6);
  font-weight: 400;
  margin-left: 6px;
}

/* ✅ ALTERNATIVE: Minimal Style (Uncomment to use) */
/*
.load-more-btn-big {
  padding: 12px 24px;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.load-more-icon {
  width: 28px;
  height: 28px;
  background: transparent;
  box-shadow: none;
}

.load-more-title {
  font-size: 12px;
}

.load-more-counter {
  font-size: 10px;
}
*/

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .load-more-btn-big {
    padding: 12px 24px;
    gap: 10px;
  }

  .load-more-icon {
    width: 28px;
    height: 28px;
  }

  .load-more-icon i {
    font-size: 12px;
  }

  .load-more-title {
    font-size: 12px;
  }

  .load-more-counter {
    font-size: 10px;
  }

  .load-more-arrow {
    width: 22px;
    height: 22px;
  }

  .load-more-arrow i {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .load-more-btn-big {
    padding: 10px 20px;
  }

  .load-more-arrow {
    display: none;
  }
}

/* ✅ ACCESSIBILITY */
.load-more-btn-big:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

/* ✅ SUBTLE GLOW ANIMATION */
@keyframes subtle-glow {
  0%, 100% {
    box-shadow: 
      0 4px 16px rgba(139, 92, 246, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(139, 92, 246, 0.15),
      0 0 30px rgba(139, 92, 246, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.load-more-btn-big {
  animation: subtle-glow 4s ease-in-out infinite;
}

/* ✅ DARK MODE ENHANCEMENT */
@media (prefers-color-scheme: dark) {
  .load-more-btn-big {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 
      0 4px 16px rgba(139, 92, 246, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .load-more-btn-big:hover {
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 
      0 8px 24px rgba(139, 92, 246, 0.25),
      0 0 40px rgba(139, 92, 246, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* ✅ LIGHT MODE (if needed) */
@media (prefers-color-scheme: light) {
  .load-more-btn-big {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.2);
  }

  .load-more-title {
    color: #1a1a1f;
  }

  .load-more-counter {
    color: rgba(0, 0, 0, 0.5);
  }
}

/* ✅ PRINT */
@media print {
  .load-more-wrapper,
  .load-more-btn-big,
  .load-complete-message {
    display: none !important;
  }
}

/* ✅ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .load-more-btn-big,
  .load-more-icon i,
  .load-more-arrow,
  .load-complete-message i {
    animation: none !important;
  }

  .load-more-btn-big:hover {
    transform: none;
  }

  .load-more-btn-big:hover .load-more-arrow {
    transform: none;
  }
}
.load-more-btn-big {
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.load-more-btn-big:hover {
  background: rgba(18, 18, 26, 0.8);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 
    0 8px 32px rgba(139, 92, 246, 0.3),
    0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.main-player {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0a0a0f, #151520);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.video-container {
  position: relative;
  width: 100%;
  background: #000;
}

/* TV Bezel - Retro Frame with Enhanced Effects */
.tv-bezel {
  position: relative;
  width: 100%;

  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 
    inset 0 0 100px rgba(0, 0, 0, 0.8),
    inset 0 0 30px rgba(139, 92, 246, 0.3);
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.25), rgba(144, 105, 233, 0.15));
  border: 1px solid rgba(144, 105, 233, 0.4);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn-back:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(144, 105, 233, 0.4), rgba(144, 105, 233, 0.25));
  box-shadow: var(--shadow-md);
}

.modal-player {
  max-width: 1200px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.9), rgba(10, 10, 15, 0.95));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}


/* Enhanced Screen Glow */
.tv-bezel::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.15) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 212, 255, 0.15) 100%
  );
  border-radius: 9px;
  pointer-events: none;
  animation: screenGlow 8s ease-in-out infinite;
  z-index: 1;

    opacity: 0.9;
}

@keyframes screenGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.tv-bezel {
  position: relative;
  width: 100%;

  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 
    inset 0 0 100px rgba(0, 0, 0, 0.8),
    inset 0 0 30px rgba(139, 92, 246, 0.3);
}
/* Subtle Scanline Effect */
.tv-bezel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0px,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  opacity: 0.3;
  animation: scanlines 3s linear infinite;
  z-index: 1;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(2px); }
}

.tv-bezel iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  z-index: 0;
}

/* Enhanced Loading Overlay */
.loading-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0f, #151520);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--neon-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Enhanced Error State */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ff6b6b;
  text-align: center;
  padding: 20px;
}

.error-state i {
  font-size: 48px;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.error-state span {
  font-size: 14px;
  color: #ff6b6b;
  line-height: 1.5;
}

.retry-btn {
  margin-top: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff4444);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Video Info Section */
.video-info {
  padding: 20px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95), rgba(5, 5, 10, 0.98));
}

.video-title,
#video-title93 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Video Meta */
.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-left,
.meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.meta-item i {
  font-size: 14px;
  color: rgba(139, 92, 246, 0.8);
}

/* Enhanced Action Buttons */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.action-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.2));
  border-color: var(--neon-purple);
  box-shadow: 
    0 6px 20px rgba(139, 92, 246, 0.3),
    0 0 30px rgba(139, 92, 246, 0.2);
}

.action-btn i {
  font-size: 14px;
}

.action-btn.download {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
  border-color: rgba(0, 255, 136, 0.3);
}

.action-btn.download:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.2));
  border-color: #00ff88;
}

.action-btn.vip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
  border-color: rgba(255, 215, 0, 0.3);
}

.action-btn.vip:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
  border-color: #ffd700;
}

/* Enhanced Theater Mode */
.theater-mode {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 999999 !important;
  border: none !important;
}

.theater-mode .tv-bezel {
  padding-bottom: 0;
  height: calc(100vh - 100px);
  border-radius: 0;
}

.theater-mode .video-info {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  z-index: 1000000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .video-title,
  #video-title93 {
    font-size: 16px;
  }

  .video-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-left,
  .meta-right {
    width: 100%;
  }

  .action-btn {
    font-size: 11px;
    padding: 8px 14px;
  }

  .action-btn span {
    display: none;
  }

  .theater-mode .tv-bezel {
    height: calc(100vh - 120px);
  }

  .load-more-btn-big {
    padding: 12px 24px;
    gap: 10px;
  }

  .load-more-icon {
    width: 28px;
    height: 28px;
  }

  .load-more-title {
    font-size: 12px;
  }

  .load-more-counter {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .video-info {
    padding: 16px;
  }

  .meta-item {
    font-size: 11px;
  }

  .action-btn {
    padding: 7px 12px;
  }

  .load-more-btn-big {
    padding: 10px 20px;
  }

  .load-more-arrow {
    display: none;
  }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

.load-more-btn-big:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

/* Performance Optimization */
.tv-bezel,
.loading-overlay,
.action-btn,
.load-more-btn-big {
  will-change: transform;
}

.theater-mode .tv-bezel {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .tv-bezel::before,
  .tv-bezel::after,
  .loader,
  .error-state i,
  .load-more-icon i {
    animation: none !important;
  }

  .action-btn:hover,
  .retry-btn:hover,
  .load-more-btn-big:hover {
    transform: none;
  }
}


/* Print */
@media print {
  .loading-overlay,
  .action-btn,
  .tv-bezel::before,
  .tv-bezel::after,
  .load-more-wrapper {
    display: none !important;
  }
}









/* =====================================================
   CRITICAL FIXES - Loading Overlay & Video Player
   ===================================================== */

/* 1. PLAYER WRAPPER - FIXED */
.player-wrapper {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
  background: #000 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  z-index: 1 !important; /* Lower than iframe */
}

.player-wrapper iframe,
.player-wrapper .fallback-player {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: #000 !important;
  z-index: 999999 !important; /* CRITICAL: Highest z-index */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 2. LOADING OVERLAY - FIXED */
.loading-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, #0a0a0f, #151520) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  z-index: 9999999 !important; /* Higher than iframe when visible */
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  pointer-events: auto !important;
}

/* CRITICAL: When hidden, completely remove */
.loading-overlay.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -9999 !important; /* Behind everything */
  display: none !important; /* Force remove from flow */
}

/* 3. TV BEZEL - REMOVED/SIMPLIFIED */
.tv-bezel {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  background: #000 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  z-index: 0 !important; /* Lower than iframe */
}

/* Remove scanlines and glow effects that might interfere */
.tv-bezel::before,
.tv-bezel::after {
  display: none !important; /* CRITICAL: Remove all overlays */
}

.tv-bezel iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: #000 !important;
  z-index: 999999 !important; /* Highest */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 4. LOADER ANIMATION */
.loader {
  width: 60px !important;
  height: 60px !important;
  border: 4px solid rgba(139, 92, 246, 0.2) !important;
  border-top-color: var(--neon-purple) !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4) !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay span {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* 5. VIDEO CONTAINER */
.video-container {
  position: relative !important;
  width: 100% !important;
  background: #000 !important;
  z-index: 0 !important;
}

/* 6. MAIN PLAYER SECTION */
.main-player {
  max-width: 1200px !important;
  margin: 0 auto !important;
  background: linear-gradient(145deg, #0a0a0f, #151520) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(139, 92, 246, 0.15) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  transition: all 0.3s ease !important;
}

/* 7. ERROR STATE */
.error-state {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
  color: #ff6b6b !important;
  text-align: center !important;
  padding: 20px !important;
  z-index: 999999 !important;
}

.error-state i {
  font-size: 48px !important;
  animation: shake 0.5s ease-in-out !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.error-state span {
  font-size: 14px !important;
  color: #ff6b6b !important;
  line-height: 1.5 !important;
}

.retry-btn {
  margin-top: 10px !important;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, #ff6b6b, #ff4444) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.retry-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4) !important;
}

/* 8. THEATER MODE - FIXED */
.theater-mode {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 999999 !important;
  border: none !important;
}

.theater-mode .tv-bezel {
  padding-bottom: 0 !important;
  height: calc(100vh - 100px) !important;
  border-radius: 0 !important;
}

.theater-mode .video-info {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(5, 5, 10, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
  z-index: 1000000 !important;
}

/* 9. ENSURE NO CONFLICTS */
#playerContainer {
  position: relative !important;
  width: 100% !important;
  background: #000 !important;
  z-index: 0 !important;
}

#playerIframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: #000 !important;
  z-index: 999999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* 10. FALLBACK PLAYER STYLES */
.fallback-player {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 400px !important;
  padding: 40px 20px !important;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  border-radius: 12px !important;
  text-align: center !important;
  animation: fadeInUp 0.5s ease-out !important;
  z-index: 999999 !important;
}

.fallback-icon {
  width: 80px !important;
  height: 80px !important;
  margin-bottom: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #ff6b00, #ff8c00) !important;
  border-radius: 50% !important;
  animation: pulse 2s ease-in-out infinite !important;
}

.fallback-icon i {
  font-size: 40px !important;
  color: #fff !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
  }
}

/* =====================================================
   RESPONSIVE FIXES
   ===================================================== */
@media (max-width: 768px) {
  .theater-mode .tv-bezel {
    height: calc(100vh - 120px) !important;
  }
  
  .fallback-player {
    padding: 30px 15px !important;
    min-height: 350px !important;
  }
}

/* =====================================================
   PRINT & ACCESSIBILITY
   ===================================================== */
@media print {
  .loading-overlay {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader,
  .error-state i,
  .fallback-icon {
    animation: none !important;
  }
}









/* =====================================================
   VIDEO PLAYER FIX - Simple & Working
   ===================================================== */

/* Container utama player */
#playerContainer {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

/* Iframe player */
#playerContainer iframe,
#playerIframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: #000 !important;
  z-index: 10 !important;
}

/* Loading overlay */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0f, #151520);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 100;
  transition: opacity 0.2s ease;
}

.loading-overlay.hidden,
.loading-overlay[style*="display: none"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -9999 !important;
}

/* Loader spinner */
.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--neon-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

/* Error state */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ff6b6b;
  text-align: center;
  padding: 20px;
}

.error-state i {
  font-size: 48px;
}

.retry-btn {
  margin-top: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff4444);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Main player section */
.main-player {
  max-width: 1200px;
  margin: 0 auto 20px;
  background: linear-gradient(145deg, #0a0a0f, #151520);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  background: #000;
}

/* Video info */
.video-info {
  padding: 20px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95), rgba(5, 5, 10, 0.98));
}

.video-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.4;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-left,
.meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.meta-item i {
  font-size: 14px;
  color: rgba(139, 92, 246, 0.8);
}

/* Action buttons */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.2));
  border-color: var(--neon-purple);
}

.action-btn.download {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
  border-color: rgba(0, 255, 136, 0.3);
}

.action-btn.download:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.2));
  border-color: #00ff88;
}

.action-btn.vip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
  border-color: rgba(255, 215, 0, 0.3);
}

.action-btn.vip:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
  border-color: #ffd700;
}

/* Theater mode */
.theater-mode {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 999999 !important;
}

.theater-mode #playerContainer {
  padding-bottom: 0 !important;
  height: calc(100vh - 100px) !important;
  border-radius: 0 !important;
}

.theater-mode .video-info {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(5, 5, 10, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
  z-index: 1000000 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .video-title {
    font-size: 16px;
  }

  .video-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .meta-left,
  .meta-right {
    width: 100%;
  }

  .action-btn {
    font-size: 11px;
    padding: 8px 14px;
  }

  .action-btn span {
    display: none;
  }

  .theater-mode #playerContainer {
    height: calc(100vh - 120px) !important;
  }
}

@media (max-width: 480px) {
  .video-info {
    padding: 16px;
  }

  .meta-item {
    font-size: 11px;
  }

  .action-btn {
    padding: 7px 12px;
  }
}
/* END OF STYLESHEET v17.0 - PRODUCTION READY */