* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  height: 100%;
  overflow: hidden;
  user-select: none;
}

/* ANIMATIONS */
@keyframes neon-pulse-red {
  0%, 100% { text-shadow: 0 0 5px #e50914, 0 0 10px #e50914; }
  50% { text-shadow: 0 0 20px #ff4444, 0 0 35px #e50914; }
}

@keyframes rainbow-border {
  0% { border-color: #ff0000; box-shadow: 0 0 8px #ff0000; }
  20% { border-color: #ff8800; box-shadow: 0 0 8px #ff8800; }
  40% { border-color: #ffff00; box-shadow: 0 0 8px #ffff00; }
  60% { border-color: #00ff00; box-shadow: 0 0 8px #00ff00; }
  80% { border-color: #0088ff; box-shadow: 0 0 8px #0088ff; }
  100% { border-color: #ff0000; box-shadow: 0 0 8px #ff0000; }
}

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

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

@keyframes cyanPulse {
  0%, 100% { text-shadow: 0 0 6px #00eaff, 0 0 12px #00eaff; }
  50% { text-shadow: 0 0 14px #00ffff, 0 0 28px #00eaff; }
}

@keyframes dvdBelt {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* LOGIN SCREEN */
#loginScreen {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)),
    url('https://image.tmdb.org/t/p/original/3V4kLQg0kSqe71yD9Y0po7NKCS7.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#loginScreen.hidden { display: none; }

.login-box {
  width: min(420px, 96%);
  background: rgba(0,0,0,.85);
  border-radius: 8px;
  padding: 48px 40px 36px;
  box-shadow: 0 0 40px rgba(0,0,0,.8);
}

.login-nf-logo {
  fill: #e50914;
  width: 130px;
  height: 35px;
  display: block;
  margin: 0 auto 32px;
}

.login-box h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.login-field {
  width: 100%;
  background: #333;
  border: none;
  border-radius: 4px;
  padding: 18px 16px 6px;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
  font-family: inherit;
}

.login-field:focus {
  outline: 2px solid #fff;
  background: #444;
}

.login-field::placeholder {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  font-family: inherit;
  transition: background .2s;
}

.login-btn:hover { background: #c40812; }

.login-demo-btn {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  font-size: .85rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.login-demo-btn:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.login-error {
  color: #e87c03;
  font-size: .85rem;
  margin-bottom: 12px;
  display: none;
  padding: 10px;
  background: rgba(232,124,3,.1);
  border-left: 3px solid #e87c03;
  border-radius: 4px;
}

.login-error.visible { display: block; }

.login-divider {
  text-align: center;
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  margin: 12px 0;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(255,255,255,.15);
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.login-premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f9a825, #ff6f00);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
  vertical-align: middle;
}

.login-trial-note {
  text-align: center;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  margin-top: 20px;
}

/* TRIAL OVERLAY */
#trialOverlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(10px);
  z-index: 99999;
}

.trialCard {
  width: min(520px, 92%);
  background: #0d1116;
  border: 2px solid #e50914;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 28px rgba(229,9,20,.45), inset 0 0 18px rgba(229,9,20,.1);
}

.trialCard h2 {
  font-size: 2rem;
  margin-bottom: .75rem;
  font-weight: 800;
  color: #e50914;
}

.trialCard p {
  opacity: .9;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

a.tel {
  color: #e50914;
  text-decoration: none;
  border-bottom: 2px solid #e50914;
  font-weight: 600;
}

a.tel:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.trial-relogin-btn {
  padding: 14px 36px;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.trial-relogin-btn:hover { background: #c40812; }

/* PRELOADER */
#appPreloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity .7s ease, visibility .7s ease;
}

#appPreloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 148px;
  height: 40px;
  fill: #e50914;
  margin-bottom: 40px;
}

.netflix-bar {
  width: 260px;
  height: 3px;
  background: rgba(229,9,20,.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.netflix-bar-inner {
  height: 100%;
  background: #e50914;
  border-radius: 2px;
  width: 0%;
  transition: width .15s ease;
}

.preloader-pct {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
  font-family: monospace;
}

/* MAIN LAYOUT */
#mainScreen {
  display: none;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

#mainScreen.active { display: flex; }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.85) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #e50914;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}

.header-logo {
  width: 112px;
  height: 30px;
  fill: #e50914;
  flex-shrink: 0;
  cursor: pointer;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: color .2s, background .2s;
  border: none;
  background: transparent;
  font-family: inherit;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav-link.active {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid #e50914;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.header-clock {
  font-family: monospace;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.6);
  padding: 4px 10px;
  border-radius: 6px;
  border: 2px solid;
  animation: rainbow-border 3s infinite;
}

.flag-badge { font-size: 1.2rem; }

/* CONTENT AREA */
#content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 28px 32px;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

#content::-webkit-scrollbar { width: 5px; }
#content::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* SEARCH BAR */
.search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 40px;
  padding: 10px 18px;
  gap: 10px;
  max-width: 480px;
  width: 100%;
  transition: border-color .2s;
}

.search-wrap:focus-within {
  border-color: #e50914;
  background: rgba(255,255,255,.09);
}

.search-input {
  background: none;
  border: none;
  color: #fff;
  font-size: .95rem;
  outline: none;
  flex: 1;
  min-width: 0;
  font-family: inherit;
}

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

/* TOPBAR */
.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 1.6rem;
  font-weight: 800;
  flex: 1;
}

/* GENRE PILLS */
.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 40px;
  padding: 7px 16px;
  cursor: pointer;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  transition: all .15s;
  font-family: inherit;
}

.pill:hover,
.pill:focus {
  border-color: #e50914;
  color: #fff;
  outline: none;
}

.pill.active {
  background: #e50914;
  border-color: #e50914;
  color: #fff;
  font-weight: 700;
}

/* SECTION */
.section {
  margin-bottom: 36px;
  animation: fadeIn .35s ease;
}

.sec-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: #e50914;
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-badge {
  background: #e50914;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}

/* CARD */
.card {
  background: #111;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all .2s;
  position: relative;
}

.card:hover,
.card:focus {
  border-color: #e50914;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(229,9,20,.35);
  outline: none;
  z-index: 2;
}

.card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}

.card-ph {
  width: 100%;
  aspect-ratio: 2/3;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.2);
}

.card-info {
  padding: 9px 10px 11px;
}

.card-title {
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #00eaff;
  text-shadow: 0 0 8px rgba(0,234,255,.4);
}

.card-meta {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}

.card-rating { color: #ffd700; font-weight: 700; }

.badge-tv {
  position: absolute;
  top: 7px;
  left: 7px;
  background: #e50914;
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}

/* DVD 3D WRAPPER */
.dvd-section-wrap {
  perspective: 1000px;
  perspective-origin: 50% 38%;
  overflow: hidden;
  padding: 18px 0 36px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,20,30,0.25) 100%);
  position: relative;
  margin-bottom: 36px;
}

.dvd-section-wrap::before,
.dvd-section-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.dvd-section-wrap::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.dvd-section-wrap::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.dvd-track {
  display: flex;
  width: max-content;
  animation: dvdBelt 40s linear infinite;
  transform-style: preserve-3d;
  gap: 12px;
}

.dvd-track:hover { animation-play-state: paused; }

.dvd-item {
  flex-shrink: 0;
  transform-style: preserve-3d;
  cursor: pointer;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.dvd-item:hover {
  transform: scale(1.18) translateZ(50px) rotateY(-8deg);
  filter: brightness(1.2) drop-shadow(0 0 14px #00eaff);
  z-index: 10;
}

.dvd-cover {
  width: 135px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 8px 24px rgba(0,0,0,0.85), -3px 0 10px rgba(0,0,0,0.5), inset -3px 0 8px rgba(0,0,0,0.4);
  position: relative;
  background: #111;
}

.dvd-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
  border-radius: 10px;
  pointer-events: none;
}

.dvd-img {
  width: 135px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

.dvd-title {
  padding: 8px 8px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #00eaff;
  text-align: center;
  background: linear-gradient(180deg, #0a0a1a 0%, #000 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: cyanPulse 3s ease-in-out infinite;
}

/* STATES */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: rgba(255,255,255,.35);
  gap: 16px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: #e50914;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.empty {
  text-align: center;
  padding: 60px;
  color: rgba(255,255,255,.35);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

.more-btn {
  display: block;
  margin: 22px auto 0;
  background: transparent;
  border: 2px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  padding: 12px 32px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  font-family: inherit;
}

.more-btn:hover,
.more-btn:focus {
  border-color: #e50914;
  color: #fff;
  outline: none;
}

/* MODAL */
#modalBg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 4000;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(6px);
}

#modalBg.open { display: flex; }

#modal {
  background: #141414;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid #e50914;
  border-bottom: none;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.modal-x {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.modal-x:hover {
  background: #e50914;
  border-color: #e50914;
}

.modal-inner {
  display: flex;
  gap: 26px;
}

.modal-poster {
  width: 170px;
  min-width: 170px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.7);
}

.modal-poster img {
  width: 100%;
  display: block;
}

.modal-poster-ph {
  width: 100%;
  aspect-ratio: 2/3;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}

.modal-det { flex: 1; }

.modal-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.2;
}

.modal-orig {
  color: rgba(255,255,255,.35);
  font-size: .85rem;
  margin-bottom: 12px;
  font-style: italic;
}

.modal-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}

.tag-red {
  border-color: rgba(229,9,20,.5);
  color: #ff7070;
}

.tag-gold {
  border-color: rgba(255,215,0,.4);
  color: #ffd700;
}

.tag-blue {
  border-color: rgba(0,43,127,.5);
  color: #aac4ff;
}

.modal-ov {
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: .9rem;
}

.modal-play-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.modal-dvd-thumb {
  width: 62px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid rgba(229,9,20,.45);
  box-shadow: 3px 4px 14px rgba(0,0,0,.7);
  background: #1a1a1a;
}

.play-big-btn {
  background: #e50914;
  color: #fff;
  border: none;
  flex: 1;
  padding: 16px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: inherit;
}

.play-big-btn:hover,
.play-big-btn:focus {
  background: #c40812;
  outline: none;
  transform: scale(1.02);
}

.play-big-btn:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
}

.modal-tip {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  line-height: 1.6;
  border-left: 3px solid rgba(229,9,20,.4);
}

/* PLAYER */
#playerScreen {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 3000;
  flex-direction: column;
}

#playerScreen.active { display: flex; }

#playerFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

#playerBar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(to bottom, rgba(0,0,0,.95), transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.back-btn {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .15s;
  backdrop-filter: blur(8px);
  font-family: inherit;
}

.back-btn:hover,
.back-btn:focus {
  background: rgba(255,255,255,.22);
  outline: none;
}

.player-title {
  font-size: 1rem;
  font-weight: 700;
  flex: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#playerClock {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #00eaff;
  font-size: 13px;
  font-family: monospace;
  font-weight: 700;
  z-index: 9999;
  letter-spacing: 1px;
  background: rgba(0,0,0,.55);
  padding: 5px 12px;
  border-radius: 5px;
  border: 1px solid rgba(0,234,255,.35);
  backdrop-filter: blur(6px);
}

#playerHint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
  padding: 28px 24px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s;
}

.hint-tip {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  text-align: center;
}

/* SETTINGS */
.set-wrap { max-width: 720px; }
.set-sec { margin-bottom: 32px; }
.set-sec-title {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-left: 4px;
}
.set-row {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.set-row-label { font-weight: 600; font-size: .9rem; }
.set-row-desc {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
  margin-top: 3px;
}

/* TOAST */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(20,20,20,.96);
  border: 1px solid #e50914;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform .3s;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  pointer-events: none;
  white-space: nowrap;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* TV FOCUS */
*:focus { outline: none; }
.tv-focus {
  outline: 4px solid #00eaff !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 4px rgba(0,234,255,.35), 0 0 24px rgba(0,234,255,.55) !important;
  transform: scale(1.08) !important;
  z-index: 100 !important;
  position: relative !important;
}
.tv-focus.nav-link {
  background: rgba(0,234,255,.12) !important;
  color: #00eaff !important;
  transform: scale(1.05) !important;
}
.tv-focus.play-big-btn {
  background: #ff2020 !important;
  outline-color: #fff !important;
}
.tv-focus.card {
  border-color: #00eaff !important;
  transform: translateY(-6px) scale(1.06) !important;
  box-shadow: 0 16px 40px rgba(0,234,255,.3) !important;
}
.tv-focus.dvd-item {
  transform: scale(1.2) translateZ(50px) rotateY(-8deg) !important;
  filter: brightness(1.3) drop-shadow(0 0 18px #00eaff) !important;
}

@media (max-width: 640px) {
  header { padding: 0 16px; }
  #content { padding: 18px 16px; }
  .modal-inner { flex-direction: column; }
  .modal-poster { width: 120px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .header-nav { display: none; }
  .dvd-cover { width: 110px; }
  .dvd-img { width: 110px; height: 163px; }
}