/* src/styles.scss */
:root {
  color-scheme: dark;
  --bg: #070914;
  --bg-2: #0d1020;
  --surface: rgba(18, 24, 45, 0.84);
  --surface-elevated: rgba(24, 31, 58, 0.96);
  --surface-strong: var(--surface-elevated);
  --surface-soft: rgba(89, 105, 148, 0.16);
  --surface-row: rgba(16, 22, 42, 0.78);
  --border: rgba(181, 210, 255, 0.16);
  --border-strong: rgba(122, 207, 255, 0.28);
  --line: var(--border);
  --line-strong: var(--border-strong);
  --text: #f6f8ff;
  --text-muted: #a6b2cf;
  --muted: #a6b2cf;
  --faint: #687590;
  --accent: #58e0ff;
  --accent-2: #9b6dff;
  --accent-contrast: #07101c;
  --cyan: #58e0ff;
  --blue: #4f7cff;
  --violet: #9b6dff;
  --red: #ff3f6e;
  --success: #40e6a0;
  --warning: #ffd166;
  --green: #40e6a0;
  --amber: #ffd166;
  --danger: #ff627f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --glow: 0 0 32px rgba(88, 224, 255, 0.2);
  --accent-red-soft: color-mix(in srgb, var(--red) 16%, transparent);
  --accent-red-medium: color-mix(in srgb, var(--red) 26%, transparent);
  --accent-cyan-medium: color-mix(in srgb, var(--cyan) 28%, transparent);
  --mark-surface: rgba(89, 105, 148, 0.24);
  --mark-border: rgba(181, 210, 255, 0.18);
  --skeleton:
    linear-gradient(
      90deg,
      rgba(89,105,148,.12),
      rgba(122,207,255,.14),
      rgba(89,105,148,.12));
  --topbar-bg: rgba(7, 9, 20, 0.78);
  --topbar-line: rgba(181, 210, 255, 0.12);
  --nav-active: var(--text);
  --nav-hover: rgba(89, 105, 148, 0.18);
  --control-bg: rgba(89, 105, 148, 0.15);
  --control-hover: rgba(88, 224, 255, 0.1);
  --field-bg: rgba(6, 10, 24, 0.72);
  --field-disabled: rgba(22, 28, 50, 0.78);
  --placeholder: #7784a3;
  --empty-bg: rgba(89, 105, 148, 0.12);
  --poster-border: rgba(181, 210, 255, 0.14);
  --grid-line: rgba(181, 210, 255, 0.032);
  --grid-line-2: rgba(181, 210, 255, 0.026);
  --body-bg:
    radial-gradient(
      circle at 12% 8%,
      rgba(79, 124, 255, 0.24),
      transparent 32rem),
    radial-gradient(
      circle at 84% 2%,
      var(--accent-red-soft),
      transparent 30rem),
    linear-gradient(
      180deg,
      #080a16 0%,
      #0b1022 46%,
      #070914 100%);
  --radius: 22px;
  --radius-sm: 14px;
  --tap: 44px;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  background: var(--bg);
}
body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--body-bg);
  color: var(--text);
  overflow-x: hidden;
  color-scheme: dark;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(
      90deg,
      var(--grid-line-2) 1px,
      transparent 1px);
  background-size: 56px 56px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85),
      transparent 72%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color-scheme: dark;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
img {
  max-width: 100%;
}
.container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}
.page {
  padding: 36px 0 72px;
}
.glass,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.panel {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.section-title {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.eyeline {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.muted {
  color: var(--muted);
}
.faint {
  color: var(--faint);
}
.btn {
  min-height: var(--tap);
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  background:
    linear-gradient(
      135deg,
      var(--red),
      var(--violet) 50%,
      var(--blue));
  box-shadow: 0 12px 34px rgba(79, 124, 255, 0.28);
  cursor: pointer;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(88, 224, 255, 0.24);
}
.btn.secondary {
  background: var(--control-bg);
  border: 1px solid var(--line);
  box-shadow: none;
}
.input,
.form-row input,
.form-row select,
input,
select,
textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--text);
  background: var(--field-bg);
  outline: none;
  accent-color: var(--accent);
}
.input:focus,
.form-row input:focus,
.form-row select:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(88, 224, 255, 0.12);
}
input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}
input:disabled,
select:disabled,
textarea:disabled {
  color: var(--faint);
  background: var(--field-disabled);
  border-color: var(--line);
}
select option {
  color: var(--text);
  background: var(--bg-2);
}
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 190px)) auto;
  gap: 12px;
  padding: 14px;
  margin: 20px 0 28px;
}
.pill {
  min-height: var(--tap);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--text);
  background: var(--control-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}
.pill:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--control-hover);
}
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--cyan);
  background: rgba(88, 224, 255, 0.08);
  font-size: 12px;
  font-weight: 850;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}
.poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--poster-border);
  background:
    linear-gradient(
      150deg,
      var(--accent-cyan-medium),
      transparent 36%),
    linear-gradient(
      330deg,
      var(--accent-red-medium),
      transparent 42%),
    linear-gradient(
      180deg,
      #202a52,
      #10162b);
  display: grid;
  place-items: center;
}
.poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(0, 0, 0, 0.58));
}
.poster span {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--mark-surface);
  color: var(--text);
  font-size: 38px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px var(--mark-border);
}
.movie-card {
  padding: 12px;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}
.movie-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-strong);
}
.movie-card h2,
.movie-card h3 {
  margin: 13px 2px 6px;
  font-size: 18px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  min-width: 0;
  flex-wrap: wrap;
}
.meta-row > * {
  min-width: 0;
}
.empty-state,
.loading-state,
.error-state {
  padding: 34px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
  background: var(--empty-bg);
  color: var(--muted);
}
.skeleton {
  min-height: 180px;
  border-radius: var(--radius);
  background: var(--skeleton);
  background-size: 220% 100%;
  animation: shimmer 1.25s linear infinite;
}
@keyframes shimmer {
  to {
    background-position-x: -220%;
  }
}
@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .filter-bar {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .filter-bar .btn,
  .filter-bar .input,
  .filter-bar select {
    width: 100%;
  }
}
@media (max-width: 767px) {
  main {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 18px, 1180px);
  }
  .page {
    padding: 20px 0 54px;
  }
  .section-title {
    font-size: 28px;
    line-height: 1.08;
  }
  .movie-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .movie-card {
    min-height: 164px;
    padding: 10px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 12px;
    align-items: center;
  }
  .movie-card .poster {
    width: 94px;
    grid-row: 1/span 2;
  }
  .movie-card h2,
  .movie-card h3 {
    grid-column: 2;
    align-self: end;
    margin: 0 0 8px;
    font-size: 17px;
  }
  .movie-card .meta-row {
    grid-column: 2;
    align-self: start;
  }
  .poster span {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    font-size: 28px;
  }
  .pill {
    width: 100%;
    min-height: 46px;
  }
  .empty-state,
  .loading-state,
  .error-state {
    padding: 24px 16px;
  }
}
@media (max-width: 360px) {
  .movie-card {
    grid-template-columns: 82px 1fr;
  }
  .movie-card .poster {
    width: 82px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-K5FGAGRV.css.map */
