:root {
  /* Color palette */
  --color-bg: #07080a;                    /* overall page background (very dark) */
  --color-surface: #0e1214;               /* panels / cards */
  --color-text: #e9eef6;                  /* primary text */
  --color-muted: #9aa3ab;                 /* secondary text */
  --color-accent: #e50914;                /* primary accent (Netflix red) */
  --color-accent-2: #ff6b35;              /* warm accent for gradients */
  --color-rating: #ffd166;                /* star / rating yellow */
  --color-gray-rail: #26292b;             /* rails, separators */
  --overlay-hero: rgba(6,8,10,0.64);      /* dark overlay over hero image */
  --text-color: #C8C8C8;
  --bar-color: #FFFFFF;
  /* Gradients and overlays */
  --hero-left-overlay: linear-gradient(90deg, rgba(7,8,10,0.95) 0%, rgba(7,8,10,0.55) 35%, rgba(7,8,10,0.28) 60%, rgba(7,8,10,0) 100%);
  --btn-gradient: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-2) 100%);

  /* Typography */
  --font-sans: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Oswald", "Montserrat", "Bebas Neue", system-ui, sans-serif;
  --fs-base: 16px;
  --fs-xs: 0.8125rem;     /* 13px */
  --fs-sm: 0.875rem;      /* 14px */
  --fs-md: 1rem;          /* 16px */
  --fs-lg: 1.125rem;      /* 18px */
  --fs-xl: 1.5rem;        /* 24px */
  --fs-hero: 3rem;        /* hero title (adjust per breakpoint) */

  /* Spacing scale */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  /* Shadows and glows */
  --shadow-deep: 0 12px 30px rgba(2,4,6,0.7);
  --glow-accent: 0 10px 30px rgba(229,9,20,0.16);

  /* Buttons */
  --btn-height: 48px;
  --btn-padding-x: 20px;
  --btn-radius: 10px;

  /* Hero layout */
  --hero-max-width: 720px;
  --hero-gap: 18px;

  /* Thumbnails / cards */
  --thumb-width: 150px;
  --thumb-height: 84px;
  --thumb-radius: 8px;
  --thumb-gap: 12px;

  /* Rating */
  --star-size: 18px;
  --star-gap: 6px;

  /* Age badge */
  --age-badge-bg: rgba(0,0,0,0.6);
  --age-badge-color: #ffffff;
  --age-badge-border: 1px solid rgba(255,255,255,0.06);
  --age-badge-radius: 6px;
  --age-badge-padding: 6px 10px;

  /* Z-index */
  --z-hero: 10;
  --z-nav: 20;
  --z-popular: 30;

  /* Animation durations */
  --anim-fast: 160ms;
  --anim-medium: 320ms;
  --anim-slow: 600ms;

  /* Accessibility */
  --focus-ring: 3px solid rgba(229,9,20,0.22);

  /* Breakpoints (for reference in custom CSS) */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
}

/* Helpful defaults mapped to Bootstrap classes if needed */
:root {
  --bs-body-bg: var(--color-bg);
  --bs-body-color: var(--color-text);
  --bs-link-color: var(--color-accent);
  --bs-border-color: rgba(255,255,255,0.06);
}

/* Small utility example (optional) */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
}
@import url("https://fonts.googleapis.com/css2?family=Kyiv+Type+Titling:wght@300;400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@800&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background-image: url('../img/background.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.header{
    padding-top: 20px;
}
.text-header{
    font-family: "Kyiv Type Titling";
    font-weight: 100;
    color: var(--text-color);
}
.bar{
    color: var(--bar-color);
}
.middle{
    margin-top: 50px
}
h1{
    font-size: 64px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -5%;
}
.production p span{
    color: var(--text-color);
}
.sinopsys{
    color: var(--text-color);
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    letter-spacing: -1%;
    line-height: 141.5%;
}
.all-episodes{
   padding: 16px 30px;
}
.btn-danger{
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.swiper-slide{
    max-width: 150px;
}
