/*
Theme Name: TheToybox
Author: Gosho.
Version: 1.0
*/

/* тук paste целия CSS от HTML сайта */
:root{
  --bg: #000;
  --text: #fff;
  --accent: rgba(255, 0, 60, 0.75);

  --navTop: rgba(25, 28, 36, 0.2);
  --navBot: rgba(15, 16, 22, 0.85);

  --line: rgba(255,255,255,0.12);
  --chip: rgba(255,255,255,0.04);

  --radius: 15px;
  --shadow: 0 0 18px rgba(255, 0, 60, 0.18);

  --font: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --head: "Rubik Distressed","Rubik", sans-serif;
}

/* Reset */
*{ box-sizing: border-box; }
html,body{ height: 100%; }

body{
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  color: var(--text);
  font-family: var(--font);
	
}
/* Utilities */
.page{
  width: min(1200px, calc(100% - 36px));
  margin: 28px auto 48px;
  flex: 1;
}

.title{
  margin: 0 0 16px;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.panel{
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.55);
  border-radius: var(--radius);
  padding: 20px;
}

/* =========================
   NAV
   ========================= */

.main-nav{
  background: linear-gradient(180deg, var(--navTop), var(--navBot));
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-container{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  position: relative; /* важно за mobile dropdown */
}

.brand{
  animation: brandPulse 2.6s ease-in-out infinite;
  transform-origin: left center;

  margin-left: 10px;
  justify-self: start;
  white-space: nowrap;

  font-family: var(--head);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.40em;
  line-height: 2;

  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex: 1;
  .nav-links {
  transform: translateX(-10px); /* леко вляво */
}
}

.nav-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 20px;
  border-radius: 0;

  background: rgba(0, 174, 255, 0.25);
  color: #fff;

  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.12em;

  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.nav-btn:hover{
  background: #82d8ff;
  border-color: #82d8ff;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
}

/* Активен (текущ) — единична дефиниция (без конфликт) */
.nav-btn.is-active{
  pointer-events: none;
  cursor: default;

  background: #82d8ff;
  border-color: #82d8ff;
  color: #000;

  box-shadow: 0 0 18px rgba(130, 216, 255, 0.45);
}

/* Burger */
.menu-toggle{
  display: none;
  cursor: pointer;

  color: var(--text);
  font-size: 1.5rem;

  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 6px 10px;
}

/* Mobile nav */
@media (max-width: 1100px){
  .menu-toggle{ display: inline-flex; margin-left: auto; }

  .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    flex-direction: column;
    gap: 10px;
    padding: 16px 0;

    background: rgba(0,0,0,0.78);
    border-bottom: 2px solid var(--accent);
    z-index: 99999;
  }

  .nav-links.active{ display: flex; }

  .nav-btn{
    width: 85%;
    margin: 0 auto;
    border-radius: 14px;
  }
}

@keyframes brandPulse{
  0%{
    transform: scale(1);
    text-shadow: 0 0 4px rgba(255,255,255,0.25);
    opacity: 0.85;
  }

  50%{
    transform: scale(1.01);
    text-shadow:
      0 0 10px rgba(255,255,255,0.8),
      0 0 22px rgba(255,255,255,0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 4px rgba(255,255,255,0.25);
    opacity: 0.85;
  }
}

/* =========================
   FORMS (ако ги имаш в FAQ)
   ========================= */
input, select, textarea, button{
  font-family: inherit;
}

input, select, textarea{
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px;
  outline: none;
}

textarea{ resize: vertical; }

/* =========================
   FOOTER
   ========================= */
.footer,
.copyright-bar{
  margin-top: auto;

  background: rgba(0,0,0,0.4);
  color: #fff;

  text-align: center;

  padding: 26px 20px;
  line-height: 1.8;

  font-weight: 900;
  text-transform: uppercase;

  font-size: 0.85rem;
  letter-spacing: 0.18em;

  border-top: 1px solid rgba(255,255,255,0.45);
}

/* =========================
   HUB GRID
   ========================= */

.page-header{ margin: 18px 0 14px; }

.page-title{
  margin: 0;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

.hub-grid{
  display: grid;
  grid-template-columns: 1fr 0.65fr; /* ляво голямо, дясно тясно */
  gap: 16px;
  align-items: stretch;
}

.hub-card{
  border: 1px solid var(--line);
  background: rgba(0,0,0,.55);
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hub-card:hover{
  transform: scale(1.03);
  background: rgba(0,0,0,.65);
  border-color: rgba(255,255,255,.25);
}

.hub-card--big{
  grid-row: 1 / span 3;
  aspect-ratio: 1 / 1;
  min-height: 360px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hub-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(135, 135, 135, 0.25) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events:none;
}

.hub-card > *{
  position: relative;
  z-index: 1;
}

.hub-card__tag{
  display: inline-block;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--text);
  opacity: .85;
  margin-bottom: 10px;
}

.hub-card__title{
  margin: 0 0 8px;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hub-card__meta{
  margin: 0 0 10px;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: .85rem;
}

.hub-card__teaser{
  margin: 0;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 980px){
  .hub-grid{ grid-template-columns: 1fr; }
  .hub-card--big{ grid-row: auto; aspect-ratio: auto; min-height: 260px; }
}

/* =========================
   HUB MODAL
   ========================= */
.hub-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
}

.hub-modal.is-open{ display: block; }

.hub-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.hub-modal__panel{
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 6vh auto;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.85);
  border-radius: 10px;
  overflow: hidden;
}

.hub-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 18px;
}

.hub-modal__media{
  height: 660px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.hub-modal__content{
  padding: 18px;
}

.hub-modal__title{
  margin: 0 0 8px;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hub-modal__subtitle{
  margin: 0 0 14px;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.hub-modal__body{
  line-height: 1.7;
  text-transform: uppercase;
  opacity: .95;
}

/* =========================
   SUBJECTS — DOSSIERS
   ========================= */

.subjects-head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.subjects-sub{
  margin: 6px 0 0;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: .9rem;
}

.subjects-controls{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.subjects-search{
  border-radius: 12px;
  padding: 14px 14px;
  background: rgba(0,0,0,.45);
}

.subjects-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  cursor: pointer;
}

.chip:hover{ border-color: rgba(255,255,255,.30); }

.chip.is-active{
  background: rgba(130,216,255,0.22);
  border-color: rgba(130,216,255,0.60);
}

.subjects-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px){
  .subjects-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .subjects-grid{ grid-template-columns: 1fr; }
}

.subject-card{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  padding: 16px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
  min-height: 300px;
}

.subject-card:hover{
  transform: scale(1.02);
  border-color: rgba(255,255,255,.25);
  background: rgba(0,0,0,.65);
}

.subject-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  opacity: .22;
  transform: scale(1.02);
}

.subject-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.88) 100%
  );
}

.subject-card > *{ position: relative; z-index: 1; }

.subject-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.subject-id{
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .85rem;
  opacity: .9;
}

.threat{ display:flex; gap: 6px; }

.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  opacity: .7;
}

.dot.is-on{
  background: rgba(130,216,255,0.85);
  border-color: rgba(130,216,255,0.85);
  opacity: 1;
}

.subject-name{
  margin: 0 0 8px;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.subject-hook{
  margin: 0 0 12px;
  opacity: .85;
  line-height: 1.6;
  text-transform: none;   /* четимост */
  letter-spacing: .02em;
  font-size: .95rem;
}

.subject-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  opacity: .95;
}

.subject-open{
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(130,216,255,0.22);
  color: #fff;
  padding: 12px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.subject-open:hover{
  background: rgba(130,216,255,0.35);
  border-color: rgba(130,216,255,0.65);
  transform: translateY(-1px);
}

.subject-card.is-locked .subject-name,
.subject-card.is-locked .subject-hook{
  letter-spacing: .18em;
}

.subject-card.is-locked::before{
  filter: blur(2px) saturate(.9);
  opacity: .18;
}

/* =========================
   SUBJECT MODAL
   ========================= */

.subject-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
}

.subject-modal.is-open{ display: block; }

.subject-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.78);
}

.subject-modal__panel{
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 6vh auto;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.88);
  border-radius: 12px;
  overflow: hidden;
  z-index: 3;
}

.subject-modal__close{
  position:absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color:#fff;
  width: 42px;
  height: 42px;
  cursor:pointer;
  font-size: 18px;
  border-radius: 12px;
}

.subject-modal__content{ padding: 18px; }

.subject-modal__title{
  margin: 0 0 8px;
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.subject-modal__subtitle{
  margin: 0 0 14px;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.subject-modal__body{
  margin: 0;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: .02em;
  font-size: .95rem;
  opacity: .92;
}

/* ===== MEDIA: gallery + video ===== */
.subject-modal__media{
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: relative;
  z-index: 2;
}

.media-view{
  height: 420px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.45);
  position: relative;
}

.media-stage{
  width: 100%;
  height: 100%;
}

.media-stage img,
.media-stage video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-strip{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;

  position: relative;
  z-index: 2;
}

.thumb{
  flex: 0 0 auto;
  width: 110px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
}

.thumb.is-active{
  border-color: rgba(130,216,255,.75);
  box-shadow: 0 0 18px rgba(130,216,255,.25);
}

.thumb--video::after{
  content:"▶";
  position:absolute;
  inset:auto 10px 8px auto;
  font-weight: 900;
  font-size: 14px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 4px 8px;
}

/* Prev / Next buttons */
.media-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.40);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  z-index: 5;
}

.media-prev{ left: 10px; }
.media-next{ right: 10px; }

.media-nav:hover{
  border-color: rgba(130,216,255,.65);
  box-shadow: 0 0 18px rgba(130,216,255,.20);
}
.subject-card::before,
.subject-card::after{
  pointer-events: none;
}
.subject-open{
  position: relative;
  z-index: 5;
}
/* =========================
   DOSSIER LONG TEXT STYLING
   ========================= */

.panel-lite{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 16px;
}

.dossier-head{
  display:flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.dossier-long{
  margin-top: 14px;
}

.dossier-label{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  opacity: .85;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.dossier-text{
  line-height: 1.85;
  font-size: 1.02rem;
  letter-spacing: .01em;
  opacity: .96;

  /* “досиe” усещане */
  font-family: var(--font);
}

.dossier-text strong{
  font-weight: 900;
  letter-spacing: .04em;
}

.dossier-text em{
  opacity: .9;
}

.dossier-text br{
  line-height: 2.1;
}

/* малко “sci-fi readout” ефект без да става кич */
.dossier-text{
  text-shadow: 0 0 10px rgba(130,216,255,0.06);
}
.subject-modal{ position: fixed; inset: 0; display: none; z-index: 999999; }
.subject-modal.is-open{ display: block; }

.subject-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 1;
}

.subject-modal__panel{
  position: relative;
  z-index: 2;
}

.subject-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  pointer-events: auto;
}
.media-view img,
.media-view video{
  width: 100%;
  height: 100%;
  object-fit: contain;          /* ✅ показва цялото */
  display: block;
  background: rgba(0,0,0,.55);  /* ✅ ако има празни ленти */
}
/* =========================
   SUBJECT MODAL — RESPONSIVE DOSSIER LAYOUT
   ========================= */

/* Панелът да използва височината на екрана адекватно */
.subject-modal__panel{
  max-height: 88vh;
  display: grid;
  grid-template-rows: auto; /* ще го override-нем с grid по-долу */
}

/* Desktop/tablet: 2 колони (media | content) */
@media (min-width: 980px){
  .subject-modal__panel{
    width: min(1200px, calc(100% - 36px)); /* по-широк на desktop */
    margin: 5vh auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr;     /* ляво по-голямо */
    grid-template-rows: 1fr;
    gap: 0;
  }

  .subject-modal__media{
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.10);
    padding: 18px;
    display: grid;
    grid-template-rows: 1fr auto;          /* view + thumbs */
    gap: 12px;
  }

  .subject-modal__content{
    padding: 18px 20px;
    overflow: auto;                         /* ✅ дълъг текст скролва */
    max-height: 88vh;                       /* ✅ да не излиза извън екрана */
  }
}

/* Mobile: 1 колона, media по-голяма */
@media (max-width: 979px){
  .subject-modal__panel{
    margin: 3vh auto;
    max-height: 92vh;
  }

  .subject-modal__media{
    padding: 14px;
  }

  .subject-modal__content{
    padding: 14px 16px 18px;
    overflow: auto;
    max-height: 92vh;
  }
}

/* Media view да е по-голям и адаптивен */
.media-view{
  height: clamp(320px, 52vh, 620px); /* ✅ по-голямо, но адаптивно */
}

/* Показвай цялото изображение (без отрязани глави) */
.media-stage img,
.media-stage video{
  width: 100%;
  height: 100%;
  object-fit: contain;               /* ✅ виждаш целия кадър */
  background: rgba(0,0,0,.55);
}

/* Thumbs: по-големи на desktop */
@media (min-width: 980px){
  .thumb{
    width: 140px;
    height: 90px;
  }
}

/* Текстът да е по-четим, да не е „заключен“ */
.subject-modal__body,
.dossier-text{
  text-transform: none;
  letter-spacing: .01em;
  line-height: 1.85;
  font-size: 1.02rem;
}

/* „DOSSIER“ блока да диша */
.dossier-long{
  margin-top: 14px;
}
/* Секцията вече е “платно” */
/* =========================
   THUMBNAIL SECTION (CLEAN)
   ========================= */

/* Секцията е “платно” */
.thumbnail-section{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  padding: 32px 0;
}

/* === THUMB BASE (ONE SOURCE OF TRUTH) === */
.thumb-card{
  width:100%;
  max-width: 520px;
  position:relative;
  overflow:hidden;
  border-radius:16px;
  aspect-ratio: 4 / 3;

  border: 1px solid var(--line);
  background: rgba(0,0,0,.55);

  /* fallback glow (ако няма клас suzzane/lume/bonnie) */
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 22px rgba(255, 0, 60, .18);

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.thumb-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);

  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 34px rgba(255, 0, 60, .32);
}

/* Снимката запълва картата */
.thumb-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  opacity:.92;

  transform: scale(1.02);
  transition: transform .25s ease, filter .25s ease;
  filter: saturate(1.05) contrast(1.05);
}

.thumb-card:hover .thumb-img{
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.08);
}

/* Надписът */
.thumb-label{
  position:absolute;
  left:0;
  right:0;
  bottom:0;

  padding:22px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.45));

  font-family: var(--head);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;

  letter-spacing: .14em;
  text-transform: uppercase;

  color: #fff; /* fallback */
  text-shadow: 0 0 10px rgba(255,255,255,.10);
}

/* =========================
   THUMBNAIL GLOW STYLES
   ========================= */

/* SUZZANE — ORANGE glow */
.thumb-card.suzzane{
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 24px rgba(255, 178, 74, .45);
}
.thumb-card.suzzane:hover{
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 36px rgba(255, 178, 74, .65);
}
.thumb-card.suzzane .thumb-label{
  color: #ffb24a;
  text-shadow: 0 0 10px rgba(255, 178, 74, .40);
}

/* LUME — GREEN glow */
.thumb-card.lume{
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 24px rgba(0, 255, 163, .45);
}
.thumb-card.lume:hover{
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 36px rgba(0, 255, 163, .65);
}
.thumb-card.lume .thumb-label{
  color: #00ffa3;
  text-shadow: 0 0 10px rgba(0, 255, 163, .50);
}

/* BONNIE — BLUE glow */
.thumb-card.bonnie{
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 24px rgba(38, 185, 253, 0.5);
}
.thumb-card.bonnie:hover{
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 38px rgba(0, 174, 255, 0.75);
}
.thumb-card.Bonnie .thumb-label{
  color: #57caff;
  text-shadow: 0 0 10px rgba(130, 216, 255, .5);
}
/* === FORCE LABEL COLORS (PUT LAST) === */
.thumb-card.suzzane .thumb-label{
  color:#ffb24a !important;
  text-shadow: 0 0 10px rgba(255,178,74,.40) !important;
}

.thumb-card.lume .thumb-label{
  color:#00ffa3 !important;
  text-shadow: 0 0 10px rgba(0,255,163,.50) !important;
}

.thumb-card.bonnie .thumb-label{
  color:#4cc3fa !important;
  text-shadow: 0 0 10px rgba(0, 151, 220, 0.55) !important;
}
.thumb-card.moka{
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 24px rgba(255, 0, 60, .45);
}

.thumb-card.moka:hover{
  transform: translateY(-2px);

  /* ⛔ убиваме всички други glow-ове */
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 38px rgba(255, 0, 60, .75);

  border-color: rgba(255,255,255,.22);
}

.thumb-card.moka .thumb-label{
  color: #ff003c;
  text-shadow: 0 0 12px rgba(255, 0, 60, .55);
}


.needle-text{
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 0.98rem;
  letter-spacing: .015em;
  opacity: .92;
}

.needle-text p{
  margin: 0 0 20px;
}

.needle-text p:last-child{
  margin-bottom: 0;}

.needle-fragment{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.needle-visual,
.needle-fragment{
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

.needle-visual img,
.needle-fragment img{
  display: block;
  max-width: 100%;
  height: auto;
}

.thumb-card.blood{
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 24px rgba(255, 0, 13, .45);
}

.thumb-card.blood:hover{
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 36px rgba(255, 0, 13, .65);
}

.thumb-card.blood .thumb-label{
  color: #ff0d0d !important;
  text-shadow: 0 0 12px rgba(255, 0, 13, .65) !important;
}
body.dark-mode {
  background: url("dark-bg.png") no-repeat center center fixed;
  background-size: cover;
}

body.light-mode {
  background: url("background.png") no-repeat center center fixed;
  background-size: cover;
}
#themeToggle {
  background: #000;
  color: #fff;
  border: 1px solid #c00000; /* тънка червена рамка */
  padding: 6px 10px;
  cursor: pointer;
  font-weight: bold;
}

#themeToggle:hover {
  background: #fff;
  color: #000;
}
#themeToggle {
  background: #000;
  color: #fff;
  border: 1px solid #ff0000;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;

  box-shadow:
    0 0 4px #ff0000,
    0 0 8px #ff0000;

  transition: all 0.2s ease;
}

/* hover flash */

#themeToggle:hover {
  background: #111;
  box-shadow:
    0 0 8px #ff0000,
    0 0 16px #ff0000,
    0 0 24px #ff0000;
}

/* subtle pulse animation */

@keyframes cyberPulse {
  0% { box-shadow: 0 0 4px #ff0000; }
  50% { box-shadow: 0 0 10px #ff0000; }
  100% { box-shadow: 0 0 4px #ff0000; }
}

#themeToggle {
  animation: cyberPulse 2s infinite;
}
/* LIGHT THEME */

body.light-mode {
  --text-color: #000000;
}

/* DARK THEME */

body.dark-mode {
  --text-color: #ffffff;
}

/* глобален текст */

body {
  color: var(--text-color);
}

/* линкове */

a {
  color: var(--text-color);
}
h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
}
body {
  font-weight: bold;
  font-size: calc(1em + 2pt);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
/* =========================
   FORCE REMOVE + ZOOM CURSOR
   ========================= */

/* убива WordPress lightbox cursor */
.wp-lightbox-container,
.wp-lightbox-overlay,
.wp-lightbox-backdrop {
  pointer-events: none !important;
}

/* маха zoom cursor от ВСИЧКИ изображения */
img,
a img,
.wp-block-image img,
figure img {
  cursor: default !important;
}

/* ако WP е сложил zoom-in някъде */
[style*="cursor: zoom-in"] {
  cursor: default !important;
}

/* убива auto lightbox линкове на WP */
.wp-block-image a {
  cursor: default !important;
  pointer-events: none !important;
}
.wp-block-image img,
.wp-block-gallery img {
  cursor: default !important;
}
/* Това ще премахне лупата конкретно за това изображение */
.wp-image-268 {
    cursor: default !important;
}

/* Или ако искаш да забраниш лупата за ВСИЧКИ изображения в сайта */
img {
    cursor: default !important;
}
/* Стил за контейнера на лайтбокса */
#custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Тъмен фон */
    backdrop-filter: blur(8px); /* Ето тук се случва blur ефектът */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease; /* Fade ефект */
}

#custom-lightbox.active {
    display: flex;
    opacity: 1;
}

#custom-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Сменяме курсора на всички картинки, за да знаят хората, че се цъкат */
img.wp-image-268, .entry-content img {
    cursor: pointer;
}
/* Премахва точките и разстоянието на списъка */
.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Подрежда бутоните в линия */
    gap: 10px;    /* Разстояние между бутоните */
}

/* Премахва точките от отделните елементи, ако все още стоят */
.nav-links li {
    display: inline-block;
    list-style-type: none;
}
.post { 
    border: 1px solid #ddd; 
    padding: 20px; 
    margin-bottom: 20px; 
}
.hub-card::before,
.subject-card::after,
.thumb-label{
  background: none !important;
}




