/* ============================================================
   SCOPEVIX – Global Design System
   Dark/Red Neon Theme | Outfit Font | Glassmorphism
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --red: #e62429;
  --red-dark: #a51c20;
  --red-deep: #6b0000;
  --orange: #ff6b00;
  --dark: #080808;
  --dark-2: #0e0e0e;
  --dark-3: #141414;
  --card-bg: #111111;
  --border: rgba(230, 36, 41, 0.25);
  --glass: rgba(255, 255, 255, 0.04);
  --text: #f0f0f0;
  --text-muted: #888;
  --glow-red: 0 0 20px rgba(230, 36, 41, 0.5), 0 0 40px rgba(230, 36, 41, 0.2);
  --glow-sm: 0 0 10px rgba(230, 36, 41, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --trans: all 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--red-dark);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  min-height: 70px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--trans);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--trans);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* User Avatar in Navbar */
.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
}

/* ── Hamburger (mobile) ────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--glow-sm);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: #e05900;
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-muted);
  padding: 11px 20px;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HELPERS
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 90px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
}

.section-title span {
  color: var(--red);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 520px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   HERO — IMAGE GRID TUNNEL
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 6px;
  transform: perspective(900px) rotateY(0deg) scale(1.1);
  opacity: 0.45;
  z-index: 0;
}

.hero-grid-bg .grid-img {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.75) 50%,
      rgba(100, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 30px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--red);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-email-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.hero-email-bar input {
  flex: 1;
  padding: 13px 18px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.hero-email-bar input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-email-bar button {
  padding: 13px 22px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--trans);
}

.hero-email-bar button:hover {
  background: var(--red-dark);
}

/* ── Partner logos bar ─────────────────────────────────── */
.partner-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.partner-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
}

.partner-logo:hover {
  color: var(--text);
}

.partner-logo svg {
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   CAREER JOURNEY CIRCLE (Orbital)
   ═══════════════════════════════════════════════════════════ */
.journey-section {
  background: linear-gradient(135deg, #0e0000 0%, #1a0000 40%, #0e0000 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(180, 0, 0, 0.2) 0%, transparent 70%);
}

.journey-orbit-wrap {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 60px auto 0;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230, 36, 41, 0.2);
}

.orbit-ring-1 {
  inset: 0;
}

.orbit-ring-2 {
  inset: 60px;
  border-color: rgba(230, 36, 41, 0.12);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 140px;
}

.orbit-center-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 10px;
  box-shadow: var(--glow-red);
}

.orbit-center h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.orbit-node-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--trans);
  box-shadow: 0 0 14px rgba(230, 36, 41, 0.3);
}

.orbit-node:hover .orbit-node-dot {
  background: var(--red);
  box-shadow: var(--glow-red);
  transform: scale(1.1);
}

.orbit-node-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  max-width: 90px;
  transition: var(--trans);
}

.orbit-node:hover .orbit-node-label {
  color: var(--text);
}

/* Positions (clockwise from top) */
.node-top {
  top: 5%;
  left: 50%;
}

.node-tr {
  top: 22%;
  left: 84%;
}

.node-right {
  top: 50%;
  left: 97%;
}

.node-br {
  top: 78%;
  left: 84%;
}

.node-bottom {
  top: 95%;
  left: 50%;
}

.node-bl {
  top: 78%;
  left: 16%;
}

.node-left {
  top: 50%;
  left: 3%;
}

.node-tl {
  top: 22%;
  left: 16%;
}

/* ═══════════════════════════════════════════════════════════
   DISCUSSION CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.discussion-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600&q=80') center center / cover no-repeat fixed;
  text-align: center;
  padding: 80px 20px 100px;
  /* extra bottom padding pushes content up, away from card */
  margin-bottom: 90px;
  /* space outside section so next content isn't covered by card */
  border-bottom: none;
}

.discussion-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* Lighter overlay so image is fully visible */
}

.discussion-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  /* Forcing text center */
}

.discussion-eyebrow {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.discussion-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING SOCIALS
   ═══════════════════════════════════════════════════════════ */
.floating-socials {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

.floating-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.floating-socials a.fs-back {
  background: var(--dark-2);
  height: 32px;
  font-weight: bold;
}

.floating-socials a.fs-contact {
  background: #f03e3e;
  height: auto;
  padding: 12px 0 16px;
  flex-direction: column;
  gap: 12px;
}

.fs-contact .fs-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.floating-socials a.fs-in {
  background: #0077b5;
  font-weight: 800;
  font-size: 1.1rem;
}

.floating-socials a.fs-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-socials a:hover {
  filter: brightness(1.15);
  padding-left: 4px;
}

/* ═══════════════════════════════════════════════════════════
   CAREER DISCOVERY SECTION
   ═══════════════════════════════════════════════════════════ */
.discovery-section {
  background: var(--dark-2);
}

.discovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.discovery-bullets {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.discovery-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bullet-dot.red {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

.bullet-dot.green {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.bullet-dot.orange {
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.discovery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 100px);
  gap: 6px;
}

.discovery-photo {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  transition: var(--trans);
}

.discovery-photo:hover {
  transform: scale(1.03);
  z-index: 2;
}

.discovery-photo.tall {
  grid-row: span 2;
}

.discovery-photo.wide {
  grid-column: span 2;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO LIBRARY PAGE
   ═══════════════════════════════════════════════════════════ */
.library-page {
  padding-top: 70px;
  min-height: 100vh;
  background: var(--dark);
}

.library-header {
  background: linear-gradient(135deg, var(--dark-2) 0%, #140000 100%);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 0;
}

.library-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.library-search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  min-width: 280px;
}

.library-search-bar input {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
}

.library-search-bar input::placeholder {
  color: var(--text-muted);
}

.library-search-bar button {
  padding: 10px 16px;
  color: var(--text-muted);
  transition: var(--trans);
}

.library-search-bar button:hover {
  color: var(--red);
}

/* Category Tabs */
.cat-tabs {
  display: flex;
  gap: 4px;
  border-bottom: none;
}

.cat-tab {
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px 8px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  transition: var(--trans);
  cursor: pointer;
}

.cat-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.cat-tab.active {
  color: var(--red);
  background: var(--dark-3);
  border-color: var(--border);
  border-bottom-color: var(--dark-3);
}

/* Library Layout */
.library-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 220px);
}

.library-sidebar {
  background: var(--dark-3);
  border-right: 1px solid var(--border);
  padding: 28px 20px;
}

.sidebar-group {
  margin-bottom: 28px;
}

.sidebar-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sidebar-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--trans);
}

.sidebar-checkbox:hover {
  color: var(--text);
}

.sidebar-checkbox input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: var(--trans);
  flex-shrink: 0;
}

.sidebar-checkbox input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}

.sidebar-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 10px;
}

.sidebar-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--trans);
}

.sidebar-radio:hover {
  color: var(--text);
}

.sidebar-radio input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: var(--trans);
  flex-shrink: 0;
}

.sidebar-radio input[type="radio"]:checked {
  border-color: var(--red);
}

.sidebar-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.btn-clear-filters {
  width: 100%;
  padding: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: var(--trans);
  background: transparent;
  cursor: pointer;
}

.btn-clear-filters:hover {
  background: rgba(230, 36, 41, 0.08);
}

/* Video Grid */
.library-main {
  padding: 28px;
  background: var(--dark);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

/* ── Video Card ────────────────────────────────────────── */
.video-card {
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--trans);
  animation: fadeUp 0.4s ease both;
}

.video-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), var(--glow-sm);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--trans);
}

.video-card:hover .video-play-overlay {
  opacity: 1;
}

.play-btn-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 36, 41, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-red);
}

.play-btn-circle svg {
  width: 20px;
  fill: #fff;
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.video-card-body {
  padding: 14px 16px 18px;
}

.video-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.tag {
  padding: 2px 10px;
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tag-cat {
  background: rgba(230, 36, 41, 0.15);
  color: var(--red);
  border: 1px solid rgba(230, 36, 41, 0.25);
}

.tag-sub {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tag-level-beginner {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag-level-intermediate {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.tag-level-advanced {
  background: rgba(230, 36, 41, 0.12);
  color: #f87171;
  border: 1px solid rgba(230, 36, 41, 0.2);
}

.video-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Skeleton Loading ──────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}

.skeleton-card {
  height: 260px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ── Empty State ───────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.88rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── Pagination ────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 40px;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--dark-3);
  border: 1px solid #1e1e1e;
  cursor: pointer;
  transition: var(--trans);
}

.page-btn:hover {
  border-color: var(--border);
  color: var(--text);
}

.page-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--glow-sm);
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-btn.dots {
  cursor: default;
}

.page-btn.dots:hover {
  background: var(--dark-3);
  color: var(--text-muted);
}

/* ── Results count ─────────────────────────────────────── */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.results-bar strong {
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO PLAYER PAGE
   ═══════════════════════════════════════════════════════════ */
.player-page {
  padding-top: 70px;
  min-height: 100vh;
}

.player-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: var(--trans);
}

.player-back:hover {
  color: var(--red);
}

.player-iframe-wrap {
  position: relative;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.8), var(--glow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.player-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.player-meta {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  border-radius: var(--radius);
}

.player-meta-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.player-meta h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.player-meta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   AUTH PAGE
   ═══════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-visual {
  position: relative;
  background: linear-gradient(135deg, #0a0000 0%, #3d0000 50%, #1a0000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.auth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(230, 36, 41, 0.3) 0%, transparent 60%);
}

.auth-visual-content {
  position: relative;
  z-index: 1;
}

.auth-visual h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.auth-visual p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.auth-visual-nodes {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-visual-node {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.auth-visual-node-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(230, 36, 41, 0.2);
  border: 1px solid rgba(230, 36, 41, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.auth-form-panel {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.auth-form-box {
  width: 100%;
  max-width: 400px;
}

.auth-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 36px;
}

.auth-logo span {
  color: var(--red);
}

/* Auth Tabs */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.auth-tab {
  flex: 1;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--trans);
}

.auth-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--trans);
}

.auth-tab.active {
  color: var(--text);
}

.auth-tab.active::after {
  transform: scaleX(1);
}

/* Forms */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--trans);
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  background: rgba(230, 36, 41, 0.04);
  box-shadow: 0 0 0 3px rgba(230, 36, 41, 0.1);
}

.form-control[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select.form-control option {
  background: #1a1a1a;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  color: #4ade80;
  font-size: 0.8rem;
  margin-top: 6px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   PROFILE PAGE
   ═══════════════════════════════════════════════════════════ */
.profile-page {
  padding-top: 70px;
  min-height: 100vh;
  background: var(--dark);
}

.profile-header {
  background: linear-gradient(135deg, var(--dark-2) 0%, #120000 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}

.profile-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.profile-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--glow-sm);
}

.profile-header-info h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-header-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.profile-body {
  padding: 40px 0;
}

.profile-card {
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}

.profile-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-card-title span {
  font-size: 1.1rem;
}

.profile-save-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #1e1e1e;
}

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 260px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.2rem;
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.4);
}

.toast.error {
  border-color: rgba(230, 36, 41, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   ADMIN PAGE
   ═══════════════════════════════════════════════════════════ */
.admin-page {
  padding-top: 70px;
  min-height: 100vh;
  background: var(--dark);
}

.admin-header {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-body {
  padding: 32px 0;
}

/* Admin Table */
.admin-table-wrap {
  background: var(--card-bg);
  border: 1px solid #1e1e1e;
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  background: #161616;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid #1e1e1e;
}

.admin-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid #1a1a1a;
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.admin-table .video-title-cell {
  color: var(--text);
  font-weight: 500;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-table .action-cell {
  display: flex;
  gap: 8px;
}

.btn-edit {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
  transition: var(--trans);
  cursor: pointer;
}

.btn-edit:hover {
  background: rgba(251, 191, 36, 0.2);
}

.btn-delete {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(230, 36, 41, 0.1);
  color: var(--red);
  border: 1px solid rgba(230, 36, 41, 0.2);
  transition: var(--trans);
  cursor: pointer;
}

.btn-delete:hover {
  background: rgba(230, 36, 41, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1e1e1e;
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--trans);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.1rem;
}

.modal-close:hover {
  background: rgba(230, 36, 41, 0.1);
  color: var(--red);
}

/* ── Confirm Dialog ────────────────────────────────────── */
.confirm-dialog {
  text-align: center;
  padding: 10px 0;
}

.confirm-dialog p {
  color: var(--text-muted);
  margin: 12px 0 28px;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1a1a1a;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 14px 0 24px;
  max-width: 260px;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.footer-newsletter button {
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--trans);
}

.footer-newsletter button:hover {
  background: var(--red-dark);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: var(--text);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--trans);
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--trans);
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--glow-sm);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(230, 36, 41, 0.3);
  }

  50% {
    box-shadow: 0 0 28px rgba(230, 36, 41, 0.6);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.animate-fade-up {
  animation: fadeUp 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ── Loader Spinner ────────────────────────────────────── */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(230, 36, 41, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: opacity 0.4s ease;
}

.page-loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .library-body {
    grid-template-columns: 1fr;
  }

  .library-sidebar {
    display: none;
  }

  .library-sidebar.mobile-open {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    overflow-y: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .mentor-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mentor-side-text.right {
    text-align: center;
  }

  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid-bg {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 1fr);
  }

  .journey-orbit-wrap {
    width: 340px;
    height: 340px;
  }

  .orbit-node-dot {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .orbit-node-label {
    font-size: 0.62rem;
  }

  .orbit-center-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .orbit-center h4 {
    font-size: 0.65rem;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .profile-save-row {
    flex-direction: column;
  }

  .profile-save-row .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .cat-tabs {
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .cat-tab {
    padding: 10px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .library-main {
    padding: 16px;
  }

  .pagination {
    gap: 4px;
  }

  .page-btn {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }
}

/* ── Mobile Nav Menu ───────────────────────────────────── */
.mobile-nav-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}

.mobile-nav-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-menu a {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--trans);
}

.mobile-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

/* ── Sidebar Mobile Toggle Button ─────────────────────── */
.btn-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}

.btn-filter-toggle:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 1024px) {
  .btn-filter-toggle {
    display: flex;
  }
}