:root {
    --bg: #05050a;
    --bg-deep: #030309;
    --text: #ffffff;
    --text-soft: #f4f5f9;
    --muted: #9ca3af;
    --muted-2: #6b7280;
    --surface: rgba(9, 10, 18, 0.72);
    --surface-strong: rgba(10, 12, 22, 0.92);
    --surface-border: rgba(255, 255, 255, 0.06);
    --surface-border-strong: rgba(255, 255, 255, 0.10);

    --violet: #8b5cf6;
    --violet-2: #a855f7;
    --magenta: #d946ef;
    --blue: #2563eb;
    --cyan: #38bdf8;

    --shadow-lg: 0 14px 60px rgba(0, 0, 0, 0.65);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  body[data-theme="light"] {
    --bg: #f4f6fb;
    --bg-deep: #eef2ff;
    --text: #111827;
    --text-soft: #0f172a;
    --muted: #5b6474;
    --muted-2: #6b7280;
    --surface: rgba(255, 255, 255, 0.62);
    --surface-strong: rgba(255, 255, 255, 0.86);
    --surface-border: rgba(15, 23, 42, 0.08);
    --surface-border-strong: rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 18px 70px rgba(15, 23, 42, 0.16);
    --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.12);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  html, body {
    width: 100%;
    min-height: 100%;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background:
      radial-gradient(circle at 12% 14%, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.10) 12%, transparent 30%),
      radial-gradient(circle at 82% 86%, rgba(37, 99, 235, 0.22) 0%, rgba(56, 189, 248, 0.12) 12%, transparent 28%),
      radial-gradient(circle at 50% 96%, rgba(217, 70, 239, 0.20) 0%, rgba(168, 85, 247, 0.12) 14%, transparent 28%),
      linear-gradient(180deg, #04040a 0%, #05050a 55%, #030308 100%);
    color: var(--text);

    /*display: flex;*/
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
    transition: background 0.35s ease, color 0.25s ease;
  }

  body[data-theme="light"] {
    background:
      radial-gradient(circle at 12% 14%, rgba(168, 85, 247, 0.16) 0%, rgba(168, 85, 247, 0.08) 12%, transparent 30%),
      radial-gradient(circle at 82% 86%, rgba(37, 99, 235, 0.12) 0%, rgba(56, 189, 248, 0.08) 12%, transparent 28%),
      radial-gradient(circle at 50% 96%, rgba(217, 70, 239, 0.10) 0%, rgba(168, 85, 247, 0.06) 14%, transparent 28%),
      linear-gradient(180deg, #f8faff 0%, #f4f7ff 55%, #eef2ff 100%);
  }

  /* Ambient blurred glow layers */
  body::before,
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    transform-origin: center;
    will-change: transform, opacity, filter;
  }

  body::before {
    background:
      radial-gradient(circle at 8% 12%, rgba(168, 85, 247, 0.22), transparent 12%),
      radial-gradient(circle at 10% 50%, rgba(124, 58, 237, 0.10), transparent 10%),
      radial-gradient(circle at 90% 90%, rgba(56, 189, 248, 0.14), transparent 14%),
      radial-gradient(circle at 50% 100%, rgba(217, 70, 239, 0.12), transparent 16%);
    filter: blur(30px);
    opacity: 0.95;
    animation: driftGlow 24s ease-in-out infinite alternate;
  }

  body[data-theme="light"]::before {
    background:
      radial-gradient(circle at 8% 12%, rgba(168, 85, 247, 0.16), transparent 12%),
      radial-gradient(circle at 10% 50%, rgba(124, 58, 237, 0.08), transparent 10%),
      radial-gradient(circle at 90% 90%, rgba(56, 189, 248, 0.10), transparent 14%),
      radial-gradient(circle at 50% 100%, rgba(217, 70, 239, 0.08), transparent 16%);
    opacity: 0.8;
  }

  body::after {
    background:
      radial-gradient(circle at 15% 18%, rgba(168, 85, 247, 0.30) 0, rgba(168, 85, 247, 0.18) 2%, transparent 8%),
      radial-gradient(circle at 20% 24%, rgba(76, 29, 149, 0.22) 0, transparent 10%),
      radial-gradient(circle at 9% 49%, rgba(88, 28, 135, 0.18) 0, transparent 10%),
      radial-gradient(circle at 18% 9%, rgba(147, 51, 234, 0.18) 0, transparent 7%);
    filter: blur(18px);
    opacity: 0.85;
    animation: driftGlow2 18s ease-in-out infinite alternate;
    transform: translateZ(0);
  }

  body[data-theme="light"]::after {
    background:
      radial-gradient(circle at 15% 18%, rgba(168, 85, 247, 0.18) 0, rgba(168, 85, 247, 0.12) 2%, transparent 8%),
      radial-gradient(circle at 20% 24%, rgba(76, 29, 149, 0.12) 0, transparent 10%),
      radial-gradient(circle at 9% 49%, rgba(88, 28, 135, 0.10) 0, transparent 10%),
      radial-gradient(circle at 18% 9%, rgba(147, 51, 234, 0.10) 0, transparent 7%);
    opacity: 0.6;
  }

  .ambient {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    filter: blur(22px);
    opacity: 0.65;
    transform: rotate(45deg);
    will-change: transform, opacity;
  }

  .ambient-1 {
    width: 115px;
    height: 115px;
    left: 70px;
    top: 70px;
    border: 10px solid rgba(168, 85, 247, 0.30);
    box-shadow:
      0 0 18px rgba(168, 85, 247, 0.18),
      0 0 44px rgba(124, 58, 237, 0.12);
    border-radius: 16px;
    background: rgba(168, 85, 247, 0.03);
    animation: float1 14s ease-in-out infinite;
  }

  .ambient-1::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 8px solid rgba(59, 130, 246, 0.10);
    border-radius: 12px;
  }

  .ambient-2 {
    width: 78px;
    height: 78px;
    left: 22px;
    top: 265px;
    border: 8px solid rgba(124, 58, 237, 0.16);
    box-shadow:
      0 0 16px rgba(124, 58, 237, 0.10),
      0 0 32px rgba(217, 70, 239, 0.08);
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.03);
    opacity: 0.38;
    animation: float2 18s ease-in-out infinite;
  }

  .ambient-3 {
    width: 42px;
    height: 42px;
    left: 72px;
    bottom: 120px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.14);
    box-shadow:
      0 0 22px rgba(168, 85, 247, 0.18),
      0 0 48px rgba(56, 189, 248, 0.08);
    opacity: 0.45;
    animation: float3 12s ease-in-out infinite;
  }

  .app-container {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 14, 0.90), rgba(5, 5, 10, 0.96));
    display: flex;
    flex-direction: column;
    min-height: 800px;
    position: relative;
    z-index: 1;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.10),
      0 0 0 1px rgba(56, 189, 248, 0.06) inset,
      0 14px 60px rgba(0, 0, 0, 0.65),
      0 0 90px rgba(124, 58, 237, 0.10),
      0 0 120px rgba(56, 189, 248, 0.06);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  body[data-theme="light"] .app-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.78));
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.08),
      0 0 0 1px rgba(56, 189, 248, 0.05) inset,
      0 18px 70px rgba(15, 23, 42, 0.16),
      0 0 90px rgba(124, 58, 237, 0.07),
      0 0 120px rgba(56, 189, 248, 0.05);
  }

  .app-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.85) 0%,
      rgba(168, 85, 247, 0.28) 16%,
      rgba(217, 70, 239, 0.55) 35%,
      rgba(56, 189, 248, 0.55) 64%,
      rgba(37, 99, 235, 0.88) 100%);
    mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0.85;
  }

  .app-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background:
      radial-gradient(circle at 50% 105%, rgba(56, 189, 248, 0.16), transparent 18%),
      radial-gradient(circle at 50% 110%, rgba(217, 70, 239, 0.13), transparent 20%),
      radial-gradient(circle at 15% 0%, rgba(168, 85, 247, 0.10), transparent 20%);
    pointer-events: none;
    z-index: -1;
    filter: blur(16px);
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem 1.6rem;
    margin-bottom: 3rem;
    position: relative;
  }

  header::after {
    content: '';
    position: absolute;
    left: 2.5rem;
    right: 2.5rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(255,255,255,0.08),
      rgba(168,85,247,0.18),
      rgba(56,189,248,0.16),
      rgba(255,255,255,0.08),
      transparent);
    opacity: 0.55;
  }

  body[data-theme="light"] header::after {
    background: linear-gradient(90deg,
      transparent,
      rgba(15, 23, 42, 0.08),
      rgba(168,85,247,0.12),
      rgba(56,189,248,0.12),
      rgba(15, 23, 42, 0.08),
      transparent);
  }

  .logo {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    text-shadow:
      0 0 12px rgba(168, 85, 247, 0.18),
      0 0 22px rgba(56, 189, 248, 0.08);
    user-select: none;
  }

  .logo a{
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    text-shadow:
      0 0 12px rgba(168, 85, 247, 0.18),
      0 0 22px rgba(56, 189, 248, 0.08);
    user-select: none;
    text-decoration: none;
  }

  .nav-center {
    display: flex;
    gap: 2.5rem;
    margin-left: -3rem;
  }

  .nav-link {
    color: #b8bcc7;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 0.45rem;
    transition: color 0.2s ease, text-shadow 0.2s ease, opacity 0.2s ease;
  }

  body[data-theme="light"] .nav-link {
    color: #576074;
  }

  .nav-link:hover {
    color: var(--text);
    text-shadow: 0 0 16px rgba(168, 85, 247, 0.20);
  }

  .nav-link.active {
    color: var(--text);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--magenta));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.55);
  }

  .nav-actions {
    display: flex;
    gap: 0.8rem;
    color: #c0c4cf;
    align-items: center;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
    backdrop-filter: blur(10px);
    color: #d7d9e1;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  body[data-theme="light"] .icon-btn {
    background: rgba(255,255,255,0.48);
    border-color: rgba(15, 23, 42, 0.08);
    color: #334155;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
  }

  .icon-btn:hover {
    color: var(--text);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.24));
    transform: translateY(-1px);
    border-color: rgba(168, 85, 247, 0.24);
  }

  .icon-btn:active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: none;
  }

  main {
    
  }

  .main-content-first{
    display: flex;
    gap: 4rem;
    flex: 1;
    padding: 0 2.5rem 2.5rem;
    min-height: 500px;
  }

  .content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    position: relative;
    z-index: 1;
  }

  .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #d7dbe4;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
  }

  body[data-theme="light"] .badge {
    color: #4b5563;
  }

  .dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(180deg, var(--violet-2), var(--magenta));
    border-radius: 50%;
    box-shadow:
      0 0 10px rgba(168, 85, 247, 0.75),
      0 0 20px rgba(217, 70, 239, 0.35);
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    text-shadow:
      0 0 18px rgba(168, 85, 247, 0.10),
      0 0 24px rgba(56, 189, 248, 0.05);
  }

  p {
    font-size: 1rem;
    color: #97a0af;
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 92%;
  }

  body[data-theme="light"] p {
    color: #647084;
  }

  .social-proof {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .avatars {
    display: flex;
    align-items: center;
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #05050a;
    margin-left: -12px;
    background-color: #374151;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.03);
  }

  body[data-theme="light"] .avatar {
    border-color: #f4f7ff;
  }

  .avatar-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(31,41,55,0.96), rgba(17,24,39,0.96));
    color: #e5e7eb;
    z-index: 1;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.04),
      0 0 12px rgba(168, 85, 247, 0.08);
  }

  body[data-theme="light"] .avatar-count {
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(241,245,249,0.96));
    color: #334155;
    box-shadow:
      0 0 0 1px rgba(15,23,42,0.08),
      0 0 12px rgba(168, 85, 247, 0.06);
  }

  .social-text {
    font-size: 0.85rem;
    color: #6b7280;
  }

  body[data-theme="light"] .social-text {
    color: #5b6474;
  }

  .content-right {
    flex: 1.5;
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
  }

  .content-right::before {
    content: '';
    position: absolute;
    inset: -30px 0 -18px 0;
    background:
      radial-gradient(circle at 30% 78%, rgba(168, 85, 247, 0.12), transparent 22%),
      radial-gradient(circle at 56% 74%, rgba(56, 189, 248, 0.12), transparent 18%),
      radial-gradient(circle at 82% 82%, rgba(217, 70, 239, 0.10), transparent 16%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
    animation: cardGlow 16s ease-in-out infinite alternate;
  }

  .card {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background-color: #111827;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,0.02);
    will-change: transform;
  }

  body[data-theme="light"] .card {
    background-color: rgba(255,255,255,0.75);
    border-color: rgba(15,23,42,0.06);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10), inset 0 0 0 1px rgba(255,255,255,0.18);
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.42),
      0 0 24px rgba(168, 85, 247, 0.10);
  }

  body[data-theme="light"] .card:hover {
    box-shadow:
      0 18px 42px rgba(15, 23, 42, 0.18),
      0 0 24px rgba(168, 85, 247, 0.08);
  }

  .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%, transparent 72%, rgba(0,0,0,0.18));
    pointer-events: none;
  }

  .card-1 {
    background-image:
      linear-gradient(180deg, rgba(20,15,10,0.14), rgba(0,0,0,0.32)),
      url('1.png');
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.35),
      0 0 18px rgba(168, 85, 247, 0.10);
  }

  .card-2 {
    background-image:
      linear-gradient(180deg, rgba(20,10,25,0.14), rgba(0,0,0,0.32)),
      url('2.png');
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.35),
      0 0 18px rgba(56, 189, 248, 0.10);
  }

  .card-3 {
    background-image:
      linear-gradient(180deg, rgba(10,15,25,0.12), rgba(0,0,0,0.30)),
      url('3.png');
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.35),
      0 0 18px rgba(37, 99, 235, 0.10);
  }

  .card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.56) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem 1rem;
  }

  body[data-theme="light"] .card-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.56) 40%, transparent 100%);
  }

  .movie-title {
    text-align: center;
    width: 100%;
  }

  .dune-text {
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: #fcd34d;
    display: block;
    text-shadow: 0 0 8px rgba(252, 211, 77, 0.10);
  }

  .dune-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: #d1d5db;
    margin-top: 0.4rem;
    display: block;
  }

  body[data-theme="light"] .dune-sub {
    color: #475569;
  }

  .interstellar-text {
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow:
      0 0 10px rgba(255,255,255,0.08),
      0 0 18px rgba(168,85,247,0.10);
  }

  body[data-theme="light"] .interstellar-text {
    color: #0f172a;
    text-shadow: 0 0 10px rgba(15,23,42,0.06);
  }

  .blade-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--cyan);
    line-height: 1.1;
    font-style: italic;
    letter-spacing: 0.05em;
    display: block;
    text-shadow:
      0 0 10px rgba(56, 189, 248, 0.65),
      0 0 18px rgba(56, 189, 248, 0.22);
  }

  .blade-sub {
    font-size: 0.8rem;
    color: var(--cyan);
    margin-top: 0.2rem;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.38);
  }

  /* Search modal */
  .search-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.52);
    backdrop-filter: blur(18px);
    display: grid;
    place-items: start center;
    padding: 1.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 40;
  }

  body[data-theme="light"] .search-modal {
    background: rgba(226, 232, 240, 0.42);
  }

  .search-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .search-panel {
    width: min(760px, 100%);
    margin-top: 7vh;
    border-radius: 1.5rem;
    background: var(--surface-strong);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(12px) scale(0.985);
    transition: transform 0.22s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .search-modal.open .search-panel {
    transform: translateY(0) scale(1);
  }

  .search-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--surface-border);
  }

  .search-field {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.4;
  }

  .search-field::placeholder {
    color: var(--muted);
  }

  .search-kbd {
    font-size: 0.72rem;
    color: var(--muted);
    border: 1px solid var(--surface-border);
    border-bottom-color: rgba(255,255,255,0.14);
    border-radius: 0.7rem;
    padding: 0.35rem 0.5rem;
    white-space: nowrap;
    user-select: none;
  }

  .search-body {
    padding: 0.95rem;
  }

  .search-label {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0.1rem 0 0.8rem;
  }

  .search-results {
    display: grid;
    gap: 0.75rem;
  }

  .search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--surface-border);
    background: rgba(255,255,255,0.02);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }

  body[data-theme="light"] .search-result {
    background: rgba(255,255,255,0.55);
  }

  .search-result:hover {
    transform: translateY(-1px);
    border-color: rgba(168, 85, 247, 0.28);
    background: rgba(168, 85, 247, 0.06);
  }

  .search-result strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 0.18rem;
    letter-spacing: -0.01em;
  }

  .search-result span {
    display: block;
    font-size: 0.84rem;
    color: var(--muted);
  }

  .search-empty {
    padding: 1rem;
    color: var(--muted);
    font-size: 0.94rem;
  }

  .search-panel-footer {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--surface-border);
    color: var(--muted);
    font-size: 0.85rem;
  }

  /* Mobile drawer */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
    z-index: 35;
  }

  body[data-theme="light"] .drawer-backdrop {
    background: rgba(226, 232, 240, 0.34);
  }

  .drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(88vw, 360px);
    background: var(--surface-strong);
    border-left: 1px solid var(--surface-border);
    box-shadow: var(--shadow-lg);
    transform: translateX(102%);
    transition: transform 0.28s ease, background 0.25s ease, border-color 0.25s ease;
    z-index: 36;
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }

  .mobile-drawer.open {
    transform: translateX(0);
  }

  .drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0 1rem;
    border-bottom: 1px solid var(--surface-border);
    margin-bottom: 1rem;
  }

  .drawer-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .drawer-subtitle {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.18rem;
  }

  .drawer-nav {
    display: grid;
    gap: 0.65rem;
    margin: 0.8rem 0 1rem;
  }

  .drawer-link {
    text-decoration: none;
    color: var(--text);
    padding: 0.9rem 0.95rem;
    border-radius: 0.95rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--surface-border);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }

  body[data-theme="light"] .drawer-link {
    background: rgba(255,255,255,0.56);
  }

  .drawer-link:hover {
    transform: translateX(-2px);
    border-color: rgba(168, 85, 247, 0.20);
    background: rgba(168, 85, 247, 0.06);
  }

  .drawer-quick-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-border);
  }

  .drawer-action {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--surface-border);
    background: rgba(255,255,255,0.02);
    border-radius: 1rem;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }

  body[data-theme="light"] .drawer-action {
    background: rgba(255,255,255,0.56);
  }

  .drawer-action:hover {
    transform: translateY(-1px);
    border-color: rgba(168, 85, 247, 0.24);
    background: rgba(168, 85, 247, 0.06);
  }

  .drawer-action span {
    color: var(--muted);
    font-size: 0.84rem;
  }

  .drawer-note {
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10), rgba(56, 189, 248, 0.08));
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
    border: 1px solid rgba(168, 85, 247, 0.10);
  }

  body.locked {
    overflow: hidden;
  }

  .card.is-focus {
    transform: translateY(-8px) scale(1.01);
    filter: saturate(1.15) brightness(1.05);
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.22),
      0 0 34px rgba(168, 85, 247, 0.20),
      0 0 60px rgba(56, 189, 248, 0.10);
  }

  @keyframes driftGlow {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.88; }
    50%  { transform: translate3d(14px, -10px, 0) scale(1.02); opacity: 1; }
    100% { transform: translate3d(-10px, 8px, 0) scale(1.01); opacity: 0.92; }
  }

  @keyframes driftGlow2 {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
    50%  { transform: translate3d(-10px, 12px, 0) scale(1.03); opacity: 0.86; }
    100% { transform: translate3d(8px, -8px, 0) scale(1.01); opacity: 0.76; }
  }

  @keyframes float1 {
    0%, 100% { transform: translate3d(0,0,0) rotate(45deg); }
    50% { transform: translate3d(18px,-14px,0) rotate(49deg); }
  }

  @keyframes float2 {
    0%, 100% { transform: translate3d(0,0,0) rotate(45deg); }
    50% { transform: translate3d(-10px,12px,0) rotate(42deg); }
  }

  @keyframes float3 {
    0%, 100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(12px,-10px,0); }
  }

  @keyframes cardGlow {
    0% { opacity: 0.7; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(-6px); }
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .nav-center {
      margin-left: 0;
    }
    .main-content-first {
      gap: 2.5rem;
    }
  }

  @media (max-width: 900px) {
    body {
      padding: 1rem;
    }

    .app-container {
      min-height: auto;
      border-radius: 1.5rem;
    }

    header {
      padding: 1.5rem 1.25rem 1.2rem;
    }

    header::after {
      left: 1.25rem;
      right: 1.25rem;
    }

    .nav-center {
      display: none;
    }

    .menu-toggle {
      display: grid;
    }

    .main-content-first  {
      flex-direction: column;
      padding: 0 1.25rem 1.25rem;
    }

    .content-left {
      padding-right: 0;
      padding-top: 0.5rem;
    }

    .content-right {
      height: 460px;
    }

    h1 {
      font-size: 1.8rem !important;
    }
  }

  @media (max-width: 640px) {
    body {
      padding: 0.7rem;
    }

    header {
      padding: 1.2rem 1rem 1rem;
    }

    .logo {
      font-size: 1.35rem;
    }

    .nav-actions {
      gap: 0.55rem;
    }

    .icon-btn {
      width: 36px;
      height: 36px;
    }

    .content-right {
      flex-direction: column;
      height: auto;
    }

    .card {
      min-height: 260px;
    }

    p {
     
    }

    .search-panel {
      margin-top: 12vh;
      border-radius: 1.2rem;
    }

    .search-kbd {
      display: none;
    }

    .drawer-action {
      padding: 0.9rem 0.95rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }













  /* --- Нові UI Блоки --- */

.ui-section {
  padding: 0 2.5rem 3rem;
  position: relative;
  z-index: 2;
}

.neon-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

/* Glass SEO Text Block */
.glass-intro {
  margin: 0 2.5rem 3rem;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1.5rem;
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}

.glass-intro .text-content {

  overflow-y: auto;
  padding-right: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Кастомний скролбар для тексту */
.glass-intro .text-content::-webkit-scrollbar {
  width: 6px;
}
.glass-intro .text-content::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 10px;
}

/* Grid Layouts */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* Neon Cards (Most Popular) */
.neon-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--glow-color);
  filter: blur(40px);
  opacity: 0;
  top: -20px;
  right: -20px;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.neon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.neon-card:hover .card-glow {
  opacity: 0.3;
}

.neon-card h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.neon-card span {
  color: var(--muted);
  font-size: 0.85rem;
}
.movie-card-rating{
  color: #ffe400!important;
}
/* Release Cards */
.release-card {
  background: linear-gradient(145deg, var(--surface), transparent);
  border: 1px solid var(--surface-border);
  padding: 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.release-card:hover {
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.release-tag {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  box-shadow: 0 0 10px var(--magenta);
}

.release-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.release-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Genres */
.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.genre-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.genre-pill:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--violet);
  color: #fff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

/* FAQ Accordion */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  color: var(--violet);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}



.content{
  margin: 20px;
  display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem;
  width: 100%;
}

.m-content{
  margin: 20px;
  width: 100%;
}

.m-content h2, .m-content h3, .m-content h4{
  margin-bottom: 15px;
}


.movie-tag {
    color: white;
    text-decoration: underline;
}

.m-tag{
  background:rgba(168,85,247,0.12); 
  color:var(--violet-2);
  padding:0.3rem 1rem; 
  border-radius:999px; 
  text-decoration:none; 
  font-size:0.85rem; 
  font-weight:500;
}



.rating-block{
  display:flex; 
  align-items:center; 
  gap:0.3rem;
}

.rating-block.m-rating{
  color: #ffb509;
  font-weight: 500;
}
.rating-block.m-rating svg{
  fill: #ffb509;
}

body[data-theme="light"] .rating-block.m-rating svg{
  fill: #c36705;
}
body[data-theme="light"] .rating-block.m-rating{
  color: #c36705;
}










/* ===== Genre page ===== */
.genre-page {
  padding: 0 2rem 3rem;
}

.genre-header {
  margin-bottom: 1.5rem;
}

.genre-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.genre-desc {
  color: var(--muted);
  max-width: 700px;
  line-height: 1.6;
}

.genre-collections {
  margin-bottom: 2rem;
}

.genre-collections-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.genre-collections-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.genre-collection-link {
  background: rgba(168,85,247,0.1);
  color: var(--violet-2);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}

.genre-collection-link:hover {
  background: rgba(168,85,247,0.2);
}

.genre-movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.genre-movie-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.genre-movie-card:hover {
  transform: translateY(-4px);
}

.genre-movie-poster {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  aspect-ratio: 2/3;
  object-fit: cover;
}

.genre-movie-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--text);
}

.genre-movie-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.genre-pagination {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.genre-pagination-link {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--surface-border);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}

.genre-pagination-link:hover {
  background: rgba(168,85,247,0.1);
  border-color: var(--violet);
}

.genre-pagination-current {
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}


/* ===== Collection page ===== */
.collection-page {
  padding: 0 2rem 3rem;
}

.collection-header {
  margin-bottom: 2rem;
}

.collection-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.collection-desc {
  color: var(--muted);
  max-width: 700px;
  line-height: 1.7;
}

.collection-movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.collection-movie-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.collection-movie-card:hover {
  transform: translateY(-4px);
}

.collection-movie-poster {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  aspect-ratio: 2/3;
  object-fit: cover;
}

.collection-movie-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--text);
}

.collection-movie-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.collection-pagination {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.collection-pagination-link {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--surface-border);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}

.collection-pagination-link:hover {
  background: rgba(168,85,247,0.1);
  border-color: var(--violet);
}

.collection-pagination-current {
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}



/* ===== Static pages ===== */
.static-page {
  padding: 0 2rem 3rem;
  max-width: 800px;
  line-height: 1.7;
}
.static-page h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
.static-page h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.static-page p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}




.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  color: var(--violet);
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.container{
  max-width: 1200px;
  display: block;
  margin: auto;
      width: 100%;
}




.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.upcoming-card {
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    border-color: var(--violet);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15);
}

.upcoming-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.upcoming-info {
    padding: 1rem;
}

.upcoming-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.upcoming-date {
    font-size: 0.8rem;
    color: var(--violet);
    font-weight: 500;
}

.upcoming-empty {
    color: var(--muted);
    grid-column: 1 / -1;
    text-align: center;
}







/* ----- Mood Section (horizontal scroll) ----- */
.mood-section {
  margin-top: 1rem;
}
.mood-section .neon-title{
  text-align: center;
}
.mood-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.2rem;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
  justify-content: center;
}

.mood-scroll::-webkit-scrollbar {
  height: 6px;
}

.mood-scroll::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.4);
  border-radius: 10px;
}

.mood-card {
  flex: 0 0 180px;
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(56,189,248,0.1));
  border: 1px solid var(--surface-border);
  border-radius: 1.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
}

.mood-card:hover {
  transform: translateY(-5px);
  border-color: var(--violet);
  box-shadow: 0 12px 30px rgba(168,85,247,0.25);
}

.mood-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.mood-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mood-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}


.hero-movie-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.6);
    text-align: center;
    display: block;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.card-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.neon-card p {
    margin-top: 0.5rem;
}


.weekly-movie-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s;
}
.weekly-movie-card:hover {
    transform: translateY(-4px);
}
.weekly-movie-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.weekly-movie-card h3 {
    font-size: 0.9rem;
    margin: 0.5rem 0 0.2rem;
    text-align: center;
}
.see-all {
    display: inline-block;
    margin-top: 1rem;
    color: var(--violet);
    text-decoration: none;
    font-weight: 500;
}
.see-all:hover {
    text-decoration: underline;
}



.movie-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0;
    overflow: hidden;
}

.movie-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.movie-card-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    background: #1a1a2e;
}

.movie-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-card-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.movie-card-info {
    padding: 0 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.movie-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 10px;
    margin-bottom: 0;
}

.movie-card-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.75rem;
    color: var(--muted);
}

.movie-card-meta-divider {
    width: 4px;
    height: 4px;
    background: var(--violet);
    border-radius: 50%;
}

.movie-card-overview {
    font-size: 0.8rem;
    color: var(--muted-2);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card-genres {
    padding: 0 1rem 1rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    width: 100%;
}

.movie-card-genre {
    font-size: 0.65rem;
    background: rgba(168,85,247,0.15);
    color: var(--violet-2);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--surface-border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-content p {
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--violet);
}
.footer-content p {
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

@media(max-width:767px){
 
}