/* ───── RESET ───── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: #0a0012;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  direction: rtl;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #7D2CFF; color: #fff; }

/* ───── ANIMATED BACKGROUND ───── */
body::before {
  content: ''; position: fixed; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(125,44,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(181,108,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(125,44,255,0.06) 0%, transparent 50%);
  z-index: -1;
  animation: bgMove 20s ease-in-out infinite;
}
@keyframes bgMove {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,-30px) rotate(1deg); }
  66% { transform: translate(-20px,20px) rotate(-1deg); }
}

/* ───── PARTICLES ───── */
#particlesCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ───── HEADER ───── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 0, 18, 0.5);
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  border-bottom: 0.5px solid rgba(125, 44, 255, 0.08);
}
.header-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 10px 24px; gap: 0;
  position: relative;
  justify-content: space-between;
}
.logo {
  font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, #c084fc, #7D2CFF, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-shadow: 0 0 60px rgba(125,44,255,0.5);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo::after {
  content: ''; position: absolute; inset: -8px -12px;
  background: radial-gradient(ellipse, rgba(125,44,255,0.15) 0%, transparent 70%);
  filter: blur(12px); z-index: -1; border-radius: 20px;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.header-right { display: flex; align-items: center; gap: 8px; }
.nav { display: flex; gap: 2px; }
.nav-link {
  padding: 7px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45);
  transition: all 0.3s; position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(125,44,255,0.12); }
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(125,44,255,0.18), rgba(181,108,255,0.08));
}
.nav-link.active::after {
  content: ''; position: absolute; bottom: 1px; left: 50%;
  transform: translateX(-50%); width: 20px; height: 2.5px;
  background: #7D2CFF; border-radius: 3px;
  box-shadow: 0 0 10px #7D2CFF;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.search-box { position: relative; }
.search-box input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(125,44,255,0.1);
  border-radius: 25px; padding: 7px 16px 7px 36px;
  color: #fff; font-size: 12px; font-family: 'Cairo', sans-serif;
  width: 180px; transition: all 0.3s; outline: none;
}
.search-box input:focus {
  border-color: #7D2CFF;
  box-shadow: 0 0 24px rgba(125,44,255,0.12);
  width: 220px; background: rgba(125,44,255,0.04);
}
.search-box input::placeholder { color: rgba(255,255,255,0.15); }
.search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: 12px; pointer-events: none; opacity: 0.4;
}
.user-menu { position: relative; }
.user-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 6px 14px; border-radius: 12px; cursor: pointer; overflow: hidden;
  border: 0.5px solid rgba(245,235,220,0.06);
  background: rgba(245,235,220,0.02);
  transition: 0.25s; min-height: 36px;
}
.user-btn:hover { border-color: rgba(245,235,220,0.15); background: rgba(245,235,220,0.05); }
.user-avatar { width: 32px; height: 32px; object-fit: cover; border-radius: 8px; display: none; flex-shrink: 0; box-shadow: 0 0 16px rgba(125,44,255,0.3); }
.user-signin-text {
  font-size: 12px; font-weight: 700; color: #f5ebdc; white-space: nowrap;
  font-family: 'Cairo', sans-serif; line-height: 1;
}
.user-signin-icon { width: 14px; height: 14px; flex-shrink: 0; }
.user-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
  background: rgba(22,22,28,0.92); backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(255,255,255,0.03) inset;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: 0.3s cubic-bezier(0.22,1,0.36,1); z-index: 100;
}
.user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dd-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-radius: 12px; color: rgba(245,235,220,0.55); font-size: 14px;
  font-weight: 600; text-decoration: none; transition: 0.15s ease; cursor: pointer;
  letter-spacing: -0.2px;
}
.user-dd-item:hover { background: rgba(255,255,255,0.05); color: #f5ebdc; }
.user-dd-item svg { opacity: 0.7; width: 17px; height: 17px; }
.user-dd-item:hover svg { opacity: 1; }
.user-dd-divider { height: 0.5px; background: rgba(255,255,255,0.04); margin: 4px 12px; }
.user-dd-logout:hover { color: #ff453a; }
.user-dd-logout:hover svg { stroke: #ff453a; opacity: 1; }
.menu-toggle {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: none; border: none; color: #fff; font-size: 26px; cursor: pointer;
  width: 40px; height: 40px; border-radius: 10px;
  transition: 0.2s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.04); }

/* ───── MAIN ───── */
.main {
  position: relative; z-index: 1;
  padding-top: 70px;
  max-width: 1300px; margin: 0 auto;
}

/* ───── SECTION ───── */
.section { padding: 4px 24px 0; }
.section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.section-title {
  font-size: 21px; font-weight: 800;
  background: linear-gradient(135deg, #c084fc, #7D2CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.3px;
}
.section-title::after {
  content: ''; position: absolute; bottom: -3px; right: 0;
  width: 32px; height: 3px;
  background: linear-gradient(90deg, #7D2CFF, transparent);
  border-radius: 3px;
}
.section-link {
  font-size: 12px; color: #a855f7; font-weight: 600;
  transition: 0.3s; padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(125,44,255,0.1);
}
.section-link:hover {
  color: #fff;
  background: rgba(125,44,255,0.12);
  border-color: rgba(125,44,255,0.25);
}

/* ───── CARDS ───── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.card {
  display: block; border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(125,44,255,0.08);
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(125,44,255,0.05), transparent);
  opacity: 0; transition: 0.4s; pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(125,44,255,0.3);
  box-shadow:
    0 16px 48px rgba(125,44,255,0.15),
    0 0 0 1px rgba(125,44,255,0.05);
}
.card:hover::before { opacity: 1; }
.card-img-wrap {
  position: relative; aspect-ratio: 2/3; overflow: hidden;
  background: linear-gradient(135deg, #1B0027, #2B0040);
}
.card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.card:hover .card-img { transform: scale(1.1); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, rgba(125,44,255,0.05), rgba(181,108,255,0.02));
}
.card-badge {
  position: absolute; top: 10px; right: 10px;
  background: linear-gradient(135deg, rgba(125,44,255,0.9), rgba(181,108,255,0.7));
  backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: 8px; font-size: 11px; font-weight: 700;
  box-shadow: 0 0 16px rgba(125,44,255,0.3);
}
.card-type-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: 8px; font-size: 11px;
  border: 1px solid rgba(255,255,255,0.05);
}
.card-body { padding: 14px; }
.card-title {
  font-size: 14px; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-meta { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 6px; display: flex; gap: 6px; }

/* ───── HORIZONTAL SLIDER (Netflix-style) ───── */
.hslider {
  margin: 0 -24px;
  padding: 0 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  scroll-snap-type: x mandatory;
}
.hslider::-webkit-scrollbar { display: none; }
.hslider:active { cursor: grabbing; }
.hslider-track {
  display: flex;
  gap: 12px;
  width: fit-content;
  padding: 8px 0 16px;
}
.hcard {
  flex: 0 0 150px;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(125,44,255,0.06);
  backdrop-filter: blur(12px);
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  text-decoration: none;
  scroll-snap-align: start;
}
.hcard:hover {
  transform: scale(1.06);
  border-color: rgba(125,44,255,0.3);
  box-shadow:
    0 0 40px rgba(125,44,255,0.2),
    0 0 80px rgba(125,44,255,0.06);
  z-index: 2;
}
.hcard-img-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: linear-gradient(135deg, #1B0027, #2B0040);
}
.hcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hcard:hover .hcard-img {
  transform: scale(1.1);
}
.hcard-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(125,44,255,0.05), rgba(181,108,255,0.02));
}
.hcard-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: linear-gradient(135deg, rgba(125,44,255,0.85), rgba(181,108,255,0.65));
  backdrop-filter: blur(8px);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 0 10px rgba(125,44,255,0.2);
}
.hcard-body {
  padding: 8px 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}
.hcard:hover .hcard-body {
  background: rgba(255,255,255,0.12);
}
.hcard-title {
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  width: 100%;
}
.hcard-meta { display: none; }

/* trending card variant — 25% smaller */
.hcard--trending { flex: 0 0 112px; }
.hcard--trending .hcard-body { padding: 6px 8px; min-height: 30px; }
.hcard--trending .hcard-title { font-size: 11px; }
.hcard--trending .hcard-rank {
  position: absolute; top: 4px; left: 4px; z-index: 2;
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, #7D2CFF, #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: #fff;
  box-shadow: 0 2px 8px rgba(125,44,255,0.5);
}

/* peek effect — shows part of next item */
.hslider-track--peek { padding-left: 4px; }
.hslider-track--peek::after { content: ''; flex: 0 0 36px; }

/* continue watching progress bar */
.cw-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.08);
  z-index: 2;
}
.cw-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7D2CFF, #a855f7);
  border-radius: 0 2px 2px 0;
  transition: width 0.3s ease;
}

/* continue watching card with delete button */
.cw-card { position: relative; }
.cw-card .hcard-link { display: block; text-decoration: none; color: inherit; }
.cw-del-btn {
  position: absolute; top: 4px; right: 4px; z-index: 5;
  width: 22px; height: 22px; border-radius: 50%;
  border: none; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.7); font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s; opacity: 0;
  font-family: 'Cairo', sans-serif; line-height: 1;
}
.cw-card:hover .cw-del-btn,
.cw-card .cw-del-btn:focus { opacity: 1; }
.cw-del-btn:hover { background: rgba(239,68,68,0.8); color: #fff; transform: scale(1.1); }
@media (max-width: 480px) {
  .cw-del-btn { width: 20px; height: 20px; font-size: 9px; opacity: 1; background: rgba(0,0,0,0.5); }
}

/* confirmation modal */
.cw-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cw-modal-overlay.active { opacity: 1; pointer-events: auto; }
.cw-modal {
  background: rgba(10,0,18,0.95); backdrop-filter: blur(24px);
  border: 1px solid rgba(125,44,255,0.12);
  border-radius: 20px; padding: 28px 24px; max-width: 340px; width: 90%;
  text-align: center; box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.cw-modal-title { font-size: 16px; font-weight: 700; color: #f5ebdc; margin-bottom: 20px; line-height: 1.5; }
.cw-modal-actions { display: flex; gap: 10px; justify-content: center; }
.cw-modal-btn {
  padding: 10px 28px; border-radius: 12px; border: none;
  font-size: 14px; font-weight: 700; font-family: 'Cairo', sans-serif;
  cursor: pointer; transition: 0.2s;
}
.cw-modal-btn:active { transform: scale(0.94); }
.cw-modal-cancel {
  background: rgba(245,235,220,0.06); color: rgba(245,235,220,0.5);
  border: 1px solid rgba(245,235,220,0.08);
}
.cw-modal-cancel:hover { background: rgba(245,235,220,0.1); color: #f5ebdc; }
.cw-modal-confirm {
  background: rgba(239,68,68,0.15); color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}
.cw-modal-confirm:hover { background: rgba(239,68,68,0.25); }

/* section divider */
.section-divider {
  height: 1px;
  margin: 0 24px;
  background: linear-gradient(90deg, transparent, rgba(125,44,255,0.12), transparent);
}
.section-divider--glow {
  height: 1px;
  margin: 25px 24px;
  background: linear-gradient(90deg, transparent, rgba(125,44,255,0.15), rgba(125,44,255,0.04), transparent);
  box-shadow: 0 0 8px rgba(125,44,255,0.04);
}

@media (max-width: 480px) {
  .hslider { margin: 0 -16px; padding: 0 16px; }
  .hcard { flex: 0 0 120px; border-radius: 12px; }
  .hcard--trending { flex: 0 0 90px; border-radius: 10px; }
  .hcard--trending .hcard-rank { width: 20px; height: 20px; font-size: 8px; }
  .hcard--trending .hcard-body { padding: 4px 6px; min-height: 26px; }
  .hcard--trending .hcard-title { font-size: 10px; }
  .hslider-track { gap: 9px; }
  .hslider-track--peek::after { flex: 0 0 24px; }
  .section-title { font-size: 18px; }
  .section-divider { margin: 0 16px; }
  .section-divider--glow { margin: 0 16px; }
}
@media (min-width: 768px) {
  .hcard { flex: 0 0 165px; }
  .hcard--trending { flex: 0 0 125px; }
}
@media (min-width: 1200px) {
  .hcard { flex: 0 0 175px; }
}

/* ───── EMPTY STATE ───── */
.empty-state {
  text-align: center; padding: 80px 20px;
  background: rgba(255,255,255,0.01);
  border: 1px dashed rgba(125,44,255,0.12);
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.empty-state::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(125,44,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.empty-icon { font-size: 72px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: rgba(255,255,255,0.35); font-size: 14px; }

/* ───── SLIDER ───── */
.slider {
  position: relative; margin: 24px; border-radius: 20px;
  overflow: hidden; background: #0a0012;
  border: 1px solid rgba(125,44,255,0.08);
  box-shadow: 0 0 60px rgba(125,44,255,0.05);
}
.slider-track { display: flex; transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { min-width: 100%; position: relative; }
.slide-img { width: 100%; height: 500px; object-fit: cover; display: block; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,0,18,0.95) 0%, rgba(10,0,18,0.3) 40%, transparent 60%);
  display: flex; align-items: flex-end; padding: 50px 40px;
}
.slide-info { max-width: 600px; }
.slide-title { font-size: 32px; font-weight: 900; margin-bottom: 8px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.slide-meta { font-size: 14px; color: #c084fc; margin-bottom: 10px; }
.slide-desc { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.slide-btn {
  display: inline-block; padding: 12px 36px; border-radius: 25px;
  background: linear-gradient(135deg, #7D2CFF, #a855f7);
  font-weight: 700; font-size: 14px; transition: 0.3s;
  box-shadow: 0 4px 24px rgba(125,44,255,0.35);
  position: relative; overflow: hidden;
}
.slide-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
  opacity: 0; transition: 0.3s;
}
.slide-btn:hover { transform: scale(1.05); box-shadow: 0 6px 36px rgba(125,44,255,0.5); }
.slide-btn:hover::after { opacity: 1; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06); color: #fff;
  font-size: 26px; cursor: pointer; transition: 0.3s; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(125,44,255,0.3); border-color: rgba(125,44,255,0.3); }
.slider-btn.prev { right: 20px; }
.slider-btn.next { left: 20px; }
.slider-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s;
}
.slider-dots span.active {
  background: #7D2CFF; width: 28px; border-radius: 4px;
  box-shadow: 0 0 12px #7D2CFF, 0 0 24px rgba(125,44,255,0.3);
}

@media (max-width: 768px) {
  .slide-img { height: 300px; }
  .slide-overlay { padding: 30px 20px; }
  .slide-title { font-size: 22px; }
  .slider { margin: 12px; border-radius: 16px; }
  .slider-btn { width: 36px; height: 36px; font-size: 20px; }
  .slider-btn.prev { right: 10px; }
  .slider-btn.next { left: 10px; }
}

/* ───── DETAIL ───── */
.detail-hero {
  position: relative; min-height: 550px;
  display: flex; align-items: center;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.detail-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-bg::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #0a0012 0%, transparent 50%, #0a0012 100%);
}
.detail-hero-content {
  position: relative; z-index: 2;
  display: flex; gap: 36px; padding: 100px 24px 50px;
  max-width: 1300px; margin: 0 auto; width: 100%;
}
.detail-poster {
  width: 220px; flex-shrink: 0; border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(125,44,255,0.3);
  box-shadow: 0 16px 48px rgba(125,44,255,0.3);
}
.detail-poster img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.detail-info { flex: 1; }
.detail-title { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.detail-meta span {
  padding: 6px 16px; border-radius: 20px;
  background: rgba(125,44,255,0.12);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(125,44,255,0.15);
  backdrop-filter: blur(8px);
}
.quality-badge {
  background: linear-gradient(135deg, #7D2CFF, #a855f7) !important;
  border: none !important;
}
.detail-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.detail-buttons { display: flex; gap: 14px; }
.btn-primary, .btn-secondary {
  padding: 14px 36px; border-radius: 25px; font-weight: 700; font-size: 14px;
  transition: 0.3s; display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, #7D2CFF, #a855f7);
  box-shadow: 0 4px 24px rgba(125,44,255,0.35);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 6px 36px rgba(125,44,255,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125,44,255,0.2);
}
.btn-secondary:hover { background: rgba(125,44,255,0.15); }

@media (max-width: 768px) {
  .detail-hero-content { flex-direction: column; align-items: center; text-align: center; padding-top: 80px; }
  .detail-poster { width: 160px; }
  .detail-title { font-size: 26px; }
  .detail-buttons { justify-content: center; }
  .detail-meta { justify-content: center; }
}
@media (max-width: 480px) {
  .detail-hero { min-height: 400px; }
  .detail-poster { width: 130px; }
}

/* ───── EPISODES ───── */
.episodes-list { display: flex; flex-direction: column; gap: 10px; }
.ep-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #7D2CFF, #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(125,44,255,0.3);
}
.ep-info { flex: 1; }
.ep-title { font-size: 14px; font-weight: 700; }
.ep-meta { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.ep-links { display: flex; gap: 8px; }
.ep-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: 0.3s;
}
.ep-btn.watch { background: rgba(125,44,255,0.15); color: #c084fc; }
.ep-btn.watch:hover { background: #7D2CFF; color: #fff; }
.ep-btn.download { background: rgba(255,255,255,0.04); }
.ep-btn.download:hover { background: rgba(125,44,255,0.2); }

/* ════════════════════════════════════════
   WATCH PAGE — Premium Platform
   ════════════════════════════════════════ */

.wp {
  direction: rtl;
  width: min(100% - 28px, 1100px);
  margin: 24px auto 60px;
  display: flex; flex-direction: column;
  gap: 18px;
}

/* ─── BASE CARD ─── */
.wp-card {
  background: rgba(10,0,18,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245,235,220,0.04);
  border-radius: 16px;
}

.wp-section-label {
  font-size: 14px; font-weight: 700;
  color: rgba(245,235,220,0.55);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.wp-section-label::before {
  content: '';
  width: 4px; height: 20px;
  background: rgba(245,235,220,0.15);
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}

/* ━━━ HEAD TITLE ━━━ */
.wp-head-title { padding: 0 2px; margin-bottom: 14px; }
.wp-head-text { font-size: 24px; font-weight: 900; margin: 0 0 4px; color: #f5ebdc; }
.wp-head-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wp-head-badge {
  padding: 3px 14px; border-radius: 20px;
  background: rgba(245,235,220,0.06);
  color: rgba(245,235,220,0.55);
  font-size: 12px; font-weight: 700;
  border: 1px solid rgba(245,235,220,0.06);
}
.wp-head-ep { font-size: 14px; color: rgba(245,235,220,0.45); }

/* ━━━ PLAYER WRAP ━━━ */
.wp-player-wrap {
  background: rgba(10,0,18,0.35);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,235,220,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.3);
}
.wp-player-inner { position: relative; background: #000; }
.wp-player-inner video,
.wp-player-inner .plyr { width: 100%; aspect-ratio: 16/9; display: block; }
.wp-no-video {
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: rgba(255,255,255,0.35);
}
.wp-no-video h3 { font-size: 18px; font-weight: 700; margin: 0; }

/* ━━━ ACTION BAR ━━━ */
.wp-player-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(10,0,18,0.2);
  border-top: 1px solid rgba(245,235,220,0.04);
  overflow-x: auto;
  scrollbar-width: none;
}
.wp-player-actions::-webkit-scrollbar { display: none; }
.wp-pa-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245,235,220,0.08);
  background: rgba(245,235,220,0.03);
  color: rgba(245,235,220,0.5);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}
.wp-pa-btn:hover {
  background: rgba(245,235,220,0.08);
  border-color: rgba(245,235,220,0.15);
  color: #f5ebdc;
}
.wp-pa-btn:active { transform: scale(0.94); }
.wp-pa-btn i { font-size: 15px; transition: 0.25s ease; }
.wp-pa-btn.active { background: rgba(245,235,220,0.1); border-color: rgba(245,235,220,0.2); color: #f5ebdc; }
.wp-pa-btn.active[data-reaction="like"] i { color: #3b82f6; }
.wp-pa-btn.active[data-reaction="dislike"] i { color: #ef4444; }
.wp-pa-btn .fa-thumbs-up, .wp-pa-btn .fa-thumbs-down { transition: 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.wp-pa-btn.active .fa-thumbs-up, .wp-pa-btn.active .fa-thumbs-down { transform: scale(1.15); }
.wp-pa-count { font-size: 12px; font-weight: 700; color: inherit; opacity: 0.5; }
.wp-pa-btn:hover .wp-pa-count { opacity: 0.8; }
.wp-pa-sep { width: 1px; height: 26px; background: rgba(245,235,220,0.06); margin: 0 6px; flex-shrink: 0; }

/* ━━━ EPISODE INFO ━━━ */
.wp-ep-info { padding: 0 2px; margin-top: 24px; }
.wp-ep-title { font-size: 18px; font-weight: 800; margin: 0 0 3px; color: #f5ebdc; line-height: 1.4; }
.wp-ep-date { font-size: 12px; font-weight: 600; color: rgba(245,235,220,0.35); }

/* ━━━ DESCRIPTION ━━━ */
.wp-desc-card { padding: 20px 24px; }
.wp-desc-text { font-size: 14px; color: rgba(245,235,220,0.75); line-height: 1.7; text-align: right; margin: 0; }

/* ━━━ NAVIGATION ━━━ */
.wp-nav-card { padding: 18px 24px; }
.wp-nav-row { display: flex; align-items: stretch; gap: 10px; }
.wp-nav-btn {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(245,235,220,0.02);
  border: 1px solid rgba(245,235,220,0.06);
  transition: 0.25s ease; text-decoration: none; color: #f5ebdc;
}
.wp-nav-btn:hover {
  background: rgba(245,235,220,0.06);
  border-color: rgba(245,235,220,0.12);
  transform: translateY(-1px);
}
.wp-nav-btn.off { opacity: 0.2; pointer-events: none; }
.wp-nav-prev { text-align: right; justify-content: flex-start; }
.wp-nav-next { text-align: left; flex-direction: row-reverse; justify-content: flex-start; }
.wp-nav-lbl { font-size: 11px; color: rgba(245,235,220,0.25); font-weight: 700; }
.wp-nav-tit { font-size: 13px; font-weight: 700; color: #f5ebdc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.wp-nav-all {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(245,235,220,0.04);
  border: 1px solid rgba(245,235,220,0.08);
  color: rgba(245,235,220,0.6); font-size: 12px; font-weight: 700;
  text-decoration: none; transition: 0.25s ease; flex-shrink: 0; min-width: 85px;
}
.wp-nav-all:hover {
  background: rgba(245,235,220,0.08);
  border-color: rgba(245,235,220,0.15);
  transform: translateY(-1px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .wp { width: min(100% - 18px, 1100px); margin: 16px auto 40px; gap: 14px; }
  .wp-card { border-radius: 16px; }
  .wp-head-text { font-size: 20px; }
  .wp-player-wrap { border-radius: 16px; }
  .wp-player-actions { padding: 8px 12px; gap: 4px; }
  .wp-pa-btn { padding: 6px 12px; font-size: 12px; }
  .wp-desc-card,
  .wp-nav-card { padding: 14px 18px; }
  .wp-nav-btn { padding: 12px 14px; }
  .wp-nav-tit { max-width: 100px; font-size: 12px; }
  .wp-nav-all { min-width: 70px; padding: 12px 14px; font-size: 11px; }
}
@media (max-width: 480px) {
  .wp { width: min(100% - 12px, 1100px); gap: 12px; }
  .wp-card { border-radius: 14px; }
  .wp-head-text { font-size: 17px; }
  .wp-head-title { margin-bottom: 10px; }
  .wp-player-wrap { border-radius: 14px; }
  .wp-player-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 6px 8px;
  }
  .wp-pa-btn {
    padding: 6px 8px; font-size: 11px; gap: 4px;
    justify-content: center;
  }
  .wp-pa-sep { display: none; }
  .wp-ep-title { font-size: 15px; }
  .wp-desc-card { padding: 12px 16px; }
  .wp-nav-card { padding: 10px 16px; }
  .wp-nav-row { flex-wrap: wrap; gap: 6px; }
  .wp-nav-btn { min-width: calc(50% - 3px); flex: none; padding: 10px 12px; }
  .wp-nav-all { min-width: 100%; flex-direction: row; gap: 6px; padding: 10px; }
  .wp-nav-tit { max-width: 80px; font-size: 11px; }
}

/* ───── EPISODE CARD ───── */
.episode-card {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; cursor: pointer;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(125,44,255,0.06);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.episode-card:hover {
  border-color: rgba(125,44,255,0.25);
  background: rgba(125,44,255,0.06);
  transform: translateX(4px);
}

/* ───── FOOTER ───── */
.footer {
  position: relative; z-index: 1;
  text-align: center; padding: 36px 20px;
  color: rgba(255,255,255,0.2); font-size: 13px;
  border-top: 1px solid rgba(125,44,255,0.06);
  margin-top: 60px;
}

/* ───── HERO SEARCH ───── */
/* ───── HERO SEARCH ───── */
.hero-search {
  text-align: center;
  padding: 56px 20px 40px;
  animation: heroFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-search-inner {
  max-width: 520px;
  margin: 0 auto;
}
.hero-search-title {
  font-size: 38px; font-weight: 900;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #f5ebdc 0%, #c084fc 40%, #7D2CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-search-sub {
  font-size: 15px;
  color: rgba(245,235,220,0.3);
  margin: 0 0 28px;
  font-weight: 500;
}
.hero-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(10,0,18,0.3);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(245,235,220,0.04);
  border-radius: 16px;
  padding: 0 16px;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.hero-search-box:focus-within {
  border-color: rgba(125,44,255,0.25);
  box-shadow: 0 0 40px rgba(125,44,255,0.08), inset 0 0 30px rgba(125,44,255,0.03);
  background: rgba(10,0,18,0.4);
}
.hero-search-icon {
  color: rgba(245,235,220,0.15);
  pointer-events: none;
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.hero-search-box input {
  width: 100%;
  padding: 16px 14px;
  border: none;
  background: transparent;
  color: #f5ebdc;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  outline: none;
}
.hero-search-box input::placeholder {
  color: rgba(245,235,220,0.12);
  font-weight: 500;
}
.hero-search-results {
  margin-top: 8px;
  background: rgba(10,0,18,0.88);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 0.5px solid rgba(245,235,220,0.04);
  border-radius: 14px;
  padding: 8px;
  display: none;
  max-height: 340px;
  overflow-y: auto;
  text-align: right;
}
.hero-search-results.show { display: block; }
.hero-search-results .search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  transition: 0.15s ease; cursor: pointer; text-decoration: none; color: #f5ebdc;
}
.hero-search-results .search-result-item:hover,
.hero-search-results .search-result-item.focused {
  background: rgba(245,235,220,0.05);
}
.hero-search-results .search-result-img {
  width: 40px; height: 56px; border-radius: 8px; object-fit: cover;
  background: rgba(245,235,220,0.03);
}
.hero-search-results .search-result-info { flex: 1; text-align: right; }
.hero-search-results .search-result-title { font-size: 14px; font-weight: 700; }
.hero-search-results .search-result-meta { font-size: 11px; color: rgba(245,235,220,0.35); }
.hero-search-empty {
  padding: 16px; text-align: center; color: rgba(245,235,220,0.2);
  font-size: 13px;
}

/* ───── SEARCH RESULTS ───── */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: rgba(10,0,18,0.95); backdrop-filter: blur(24px);
  border: 1px solid rgba(125,44,255,0.15);
  border-radius: 16px; padding: 10px;
  max-height: 320px; overflow-y: auto; display: none; z-index: 200;
}
.search-results.show { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px; transition: 0.2s; cursor: pointer;
}
.search-result-item:hover { background: rgba(125,44,255,0.1); }
.search-result-img { width: 40px; height: 56px; border-radius: 8px; object-fit: cover; }
.search-result-info { flex: 1; }
.search-result-title { font-size: 13px; font-weight: 700; }
.search-result-meta { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ───── SERIES DETAIL ───── */
.series-container {
  width: min(100% - 40px, 1300px);
  margin: 30px auto 60px;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
}

/* Poster Card */
.series-poster-card {
  width: 260px; height: 390px; flex-shrink: 0;
  border-radius: 20px;
  border: 2px solid rgba(125,44,255,0.3);
  box-shadow: 0 16px 48px rgba(125,44,255,0.3), 0 0 80px rgba(125,44,255,0.15);
  display: flex; justify-content: center; align-items: center;
  background: rgba(10,0,18,0.3);
  overflow: hidden;
}
.series-poster-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; object-position: center center;
  display: block;
}
.series-poster-fallback {
  width: 100%; aspect-ratio: 2/3;
  background: linear-gradient(135deg, rgba(125,44,255,0.08), rgba(181,108,255,0.03));
  display: flex; align-items: center; justify-content: center;
}

/* Title */
.series-title-main {
  width: 100%; text-align: center;
  font-size: 32px; font-weight: 900; line-height: 1.4;
  background: linear-gradient(135deg, #fff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4px 0;
  padding-right: 10px;
}

/* Info Card */
.series-info-card {
  width: 100%;
  background: rgba(10,0,18,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(125,44,255,0.12);
  border-radius: 20px;
  padding: 24px;
  padding-right: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.series-info-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.info-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  padding-right: 20px;
  background: rgba(125,44,255,0.06);
  border: 1px solid rgba(125,44,255,0.08);
  border-radius: 14px;
  flex: 1; min-width: 160px;
  transition: 0.3s;
}
.info-item:hover {
  background: rgba(125,44,255,0.1);
  border-color: rgba(125,44,255,0.2);
}
.info-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(125,44,255,0.12);
  border-radius: 10px; flex-shrink: 0;
}
.rating-icon svg { filter: drop-shadow(0 0 8px rgba(251,191,36,0.4)); }
.info-label {
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600;
}
.info-value {
  font-size: 14px; color: #fff; font-weight: 700;
  margin-right: auto;
}

/* Description Card */
.series-desc-card {
  width: 100%;
  background: rgba(10,0,18,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(125,44,255,0.1);
  border-radius: 20px;
  padding: 24px;
  padding-right: 28px;
  padding-left: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.desc-heading {
  font-size: 18px; font-weight: 700;
  color: #c084fc; margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(125,44,255,0.3);
}
.series-desc-text {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 2; text-align: right;
  word-break: break-word;
}

/* Episodes Section */
.series-episodes-section {
  width: 100%;
}
.episodes-heading {
  font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, #c084fc, #7D2CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  position: relative;
}
.episodes-heading::after {
  content: ''; position: absolute; bottom: -4px; right: 0;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, #7D2CFF, transparent);
  border-radius: 3px;
}

/* ───── SERIES RESPONSIVE ───── */
@media (max-width: 768px) {
  .series-container {
    gap: 20px; margin: 20px auto 40px;
    width: min(100% - 30px, 1300px);
  }
  .series-poster-card { width: min(260px, calc(100% - 20px)); height: auto; aspect-ratio: 2/3; }
  .series-title-main { font-size: 24px; padding-right: 10px; }
  .series-info-card { padding: 20px; padding-right: 20px; }
  .series-info-grid { flex-direction: column; gap: 10px; }
  .info-item { min-width: 0; }
  .series-desc-card {
    padding: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .series-desc-text { font-size: 14px; }
  .episodes-heading { font-size: 18px; }
}
@media (max-width: 480px) {
  .series-poster-card { width: min(220px, calc(100% - 20px)); }
  .series-title-main { font-size: 20px; padding-right: 10px; }
  .series-info-card { padding: 14px; padding-right: 18px; }
  .series-desc-card {
    padding: 14px;
    padding-right: 18px;
    padding-left: 18px;
  }
  .series-desc-text { font-size: 13px; line-height: 1.8; }
}
@media (max-width: 768px) {
  .header-inner { padding: 10px 16px; }
  .logo { font-size: 20px; position: relative; left: auto; transform: none; }
  .header-right { gap: 4px; }
  .nav {
    position: fixed; top: 58px; left: 16px; right: 16px;
    background: rgba(10,0,18,0.96); backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 0.5px solid rgba(125,44,255,0.08);
    border-radius: 16px;
    flex-direction: column; padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: 0.3s cubic-bezier(0.22,1,0.36,1);
    z-index: 99;
  }
  .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { font-size: 15px; padding: 12px 16px; border-radius: 10px; }
  .search-box input { width: 100px; font-size: 12px; padding: 7px 12px 7px 32px; }
  .search-box input:focus { width: 120px; }
  .search-icon { left: 10px; }
  .search-icon svg { width: 14px; height: 14px; }
  .user-btn { padding: 5px 10px; min-height: 32px; gap: 4px; }
  .user-signin-text { font-size: 11px; }
  .user-signin-icon { width: 14px; height: 14px; }
  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .section { padding: 4px 16px 0; }
  .section-title { font-size: 18px; }
  .hero-search { padding: 40px 16px 28px; }
  .section-divider { margin: 0 16px; }
  .section-divider--glow { margin: 22px 16px; }
  .hero-search-title { font-size: 30px; }
  .hero-search-sub { font-size: 13px; }
  .hero-search-box { border-radius: 14px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 8px 12px; }
  .logo { font-size: 17px; }
  .menu-toggle { width: 36px; height: 36px; }
  .menu-toggle svg { width: 20px; height: 20px; }
  .search-box input { width: 80px; font-size: 11px; padding: 6px 10px 6px 28px; }
  .search-box input:focus { width: 100px; }
  .search-icon { left: 8px; }
  .search-icon svg { width: 12px; height: 12px; }
  .user-btn { padding: 5px 10px; min-height: 34px; gap: 4px; }
  .user-signin-text { font-size: 11px; }
  .user-signin-icon { width: 13px; height: 13px; }
  .user-avatar { width: 28px; height: 28px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .slide-img { height: 220px; }
  .card-title { font-size: 13px; }
  .hero-search { padding: 32px 14px 24px; }
  .hero-search-title { font-size: 26px; }
  .hero-search-sub { font-size: 12px; margin-bottom: 22px; }
  .hero-search-box input { padding: 14px 12px; font-size: 14px; }
  .hero-search-box { border-radius: 12px; padding: 0 12px; }
  .section { padding: 2px 14px 0; }
  .section-title { font-size: 16px; }
  .section-title::after { width: 24px; }
  .section-divider { margin: 0 14px; }
  .section-divider--glow { margin: 16px 14px; }
}

/* ───── ANIMATIONS ───── */
.section {
  animation: sectionFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes sectionFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


