:root {
  --cine-bg-1: #0b1020;
  --cine-bg-2: #1d2a4d;
  --cine-bg-3: #7a2f4f;
  --cine-card: rgba(14, 20, 35, 0.75);
  --cine-line: rgba(255, 255, 255, 0.18);
  --cine-accent: #ffb86c;
  --cine-neon: #69d2e7;
}

.cine-bg {
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 8% 10%, rgba(105, 210, 231, 0.2), transparent 60%),
    radial-gradient(900px 700px at 92% 20%, rgba(255, 184, 108, 0.16), transparent 55%),
    linear-gradient(130deg, var(--cine-bg-1) 20%, var(--cine-bg-2) 55%, var(--cine-bg-3) 100%);
  color: #eaf0ff;
}

.glass-panel {
  background: linear-gradient(145deg, rgba(14, 20, 35, 0.78), rgba(27, 37, 65, 0.7));
  border: 1px solid var(--cine-line);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.cine-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f3f6ff;
}

.cine-subtitle {
  color: rgba(245, 248, 255, 0.78);
}

.btn-neon {
  background: linear-gradient(120deg, var(--cine-neon), #8fe0ef);
  color: #10203f;
  border: 0;
  font-weight: 700;
}

.btn-neon:hover {
  background: linear-gradient(120deg, #8fe0ef, #b0ecf5);
  color: #0f1c36;
}

.movie-card {
  border: 1px solid var(--cine-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--cine-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.movie-preview {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #000;
}

.movie-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 11, 19, 0.92) 100%);
  pointer-events: none;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card-body {
  padding: 0.9rem;
}

.profile-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-banner {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--cine-line);
  background: linear-gradient(120deg, rgba(18, 26, 46, 0.92), rgba(121, 44, 79, 0.7));
}

.hero-banner .hero-content {
  padding: 1.5rem;
}

.filter-panel {
  background: rgba(7, 10, 18, 0.7);
  border: 1px solid var(--cine-line);
  border-radius: 14px;
}

@media (max-width: 768px) {
  .movie-preview {
    height: 150px;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
  }
}
