:root {
  --bg: #07111f;
  --panel: #0d1b2a;
  --panel-soft: rgba(13, 27, 42, 0.84);
  --text: #f8fafc;
  --muted: #9aaabd;
  --line: rgba(148, 163, 184, 0.16);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.14);
  --red: #fb7185;
  --warm: var(--cyan);
  --luxury-gold: var(--cyan);
}

html.light {
  --bg: #eef4f8;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --cyan: #0891b2;
  --red: #e11d48;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans', 'Segoe UI', sans-serif;
}

/* Native date/time picker icons — forced white SVG (dark UI) */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator,
input[type="week"]::-webkit-calendar-picker-indicator {
  width: 1.15rem;
  height: 1.15rem;
  cursor: pointer;
  opacity: 1;
  filter: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.15rem 1.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M3 10h18' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M8 3v4M16 3v4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

input[type="time"]::-webkit-calendar-picker-indicator {
  width: 1.15rem;
  height: 1.15rem;
  cursor: pointer;
  opacity: 1;
  filter: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.15rem 1.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

html.light input[type="date"],
html.light input[type="time"],
html.light input[type="datetime-local"],
html.light input[type="month"],
html.light input[type="week"] {
  color-scheme: light;
}

html.light input[type="date"]::-webkit-calendar-picker-indicator,
html.light input[type="datetime-local"]::-webkit-calendar-picker-indicator,
html.light input[type="month"]::-webkit-calendar-picker-indicator,
html.light input[type="week"]::-webkit-calendar-picker-indicator {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' stroke='%230f172a' stroke-width='2'/%3E%3Cpath d='M3 10h18' stroke='%230f172a' stroke-width='2'/%3E%3Cpath d='M8 3v4M16 3v4' stroke='%230f172a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

html.light input[type="time"]::-webkit-calendar-picker-indicator {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%230f172a' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4 {
  margin: 1.5rem 0 0.7rem;
  color: #f8fafc;
  font-weight: 800;
  line-height: 1.25;
}

.page-body h2 { font-size: 1.8rem; }
.page-body h3 { font-size: 1.35rem; }
.page-body p { margin: 0.8rem 0; }
.page-body ul,
.page-body ol { padding-left: 1.5rem; }
.page-body a { color: var(--cyan); text-decoration: underline; }

.page-template .topbar .social-link {
  font-size: 0;
}

.page-template .topbar .social-link::before {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.page-template .topbar .social-link:nth-child(1)::before { content: '▶'; }
.page-template .topbar .social-link:nth-child(2)::before { content: 'f'; }
.page-template .topbar .social-link:nth-child(3)::before { content: '◎'; }
.page-template .topbar .social-link:nth-child(4)::before { content: '➤'; }
.page-template .topbar .social-link:nth-child(5)::before { content: '𝕏'; }
.page-template .topbar .social-link:nth-child(6)::before { content: 'in'; }
.page-template .topbar .social-link:nth-child(-n+4)::before { content: none; }

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
span,
input,
select,
label,
.nav-link,
.category-chip,
.font-display {
  font-family: 'Noto Sans', 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(88, 125, 118, 0.12), transparent 18%),
    radial-gradient(circle at right bottom, rgba(217, 132, 109, 0.08), transparent 20%),
    var(--bg);
}

.topbar,
header,
.card-hover,
.story-card,
.archive-card,
.interview-card,
.theater-card,
.announcement-item,
.feature-shell,
.category-chip,
.fond-item {
  box-shadow: 0 14px 32px rgba(31, 41, 55, 0.04);
}

.topbar {
  background: rgba(255, 253, 249, 0.9);
  border-color: var(--line);
}

header {
  background: rgba(255, 253, 249, 0.72);
  border-color: var(--line);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-link.text-white,
.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"],
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  background: linear-gradient(90deg, var(--luxury-gold), rgba(255,255,255,0));
}

.social-link {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.social-link:hover,
.social-link:focus-visible,
.nav-action-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.feature-shell {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(32, 41, 55, 0.91));
  border-color: rgba(255,255,255,0.08);
}

.feature-slide {
  background: rgba(17, 24, 39, 0.02);
}

.feature-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.48) 38%, rgba(15, 23, 42, 0.18) 100%);
}

.feature-content h1,
.feature-content h2,
.feature-content .title,
.feature-card h1,
.feature-card h2 {
  letter-spacing: -0.05em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.feature-content h1 {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  line-height: 1.05;
}

.announcement-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(244,239,232,0.92));
  backdrop-filter: blur(8px);
}

.announcement-item:hover {
  border-color: rgba(88, 125, 118, 0.28);
  transform: translateX(2px);
  box-shadow: 0 18px 30px rgba(88, 125, 118, 0.09);
}

.story-card,
.archive-card,
.interview-card,
.theater-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(247,245,241,0.9));
  border-color: rgba(31,41,55,0.08);
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(31, 41, 55, 0.08);
}

.brand-mark {
  box-shadow: 0 14px 28px rgba(88, 125, 118, 0.18);
}

.brand-mark::after {
  border-color: rgba(215, 183, 125, 0.25);
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 170px;
  height: 52px;
  object-fit: contain;
  filter: none;
  drop-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

html.light .brand-logo {
  filter: none;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0.2);
  opacity: 0;
  transition: all 0.2s ease;
}

.nav-link:hover::after,
.nav-link.text-white::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link,
.nav-action-btn,
.card-hover {
  transition: all 0.2s ease;
}

.social-link:hover,
.nav-action-btn:hover {
  color: white;
  transform: translateY(-1px);
}

.feature-shell {
  min-height: 520px;
  position: relative;
  background-color: #0f172a;
}

.feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.feature-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.feature-slide:not(.active) {
  pointer-events: none;
  z-index: 0;
}

.featured-dots {
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.featured-dot.is-active {
  background: #22d3ee;
  transform: scale(1.2);
}

.feature-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,0.88) 0%, rgba(2,6,23,0.5) 35%, rgba(2,6,23,0.15) 100%);
}

.feature-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 2rem;
}

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.live-pill {
  box-shadow: 0 0 18px rgba(239,68,68,0.22);
  white-space: nowrap;
}

.topbar-live-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: min(52vw, 40rem);
}

.media-registry-link {
  display: inline-flex;
  align-items: center;
  max-width: 22rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.media-registry-link:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}

.media-registry-link--home {
  max-width: 18rem;
  font-size: 12px;
  line-height: 1.4;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.live-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .topbar-live-cluster .media-registry-link {
    max-width: 14rem;
  }
}

@media (max-width: 900px) {
  .topbar-live-cluster .media-registry-link {
    display: none;
  }
}

.announcement-item {
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.2s ease;
  position: relative;
}

.announcement-item:hover {
  border-color: rgba(2,132,199,0.35);
  transform: translateX(2px);
}

.announcement-item.is-expired,
.announcement-archive-card.is-expired {
  opacity: 0.92;
}

.announcement-expired-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 63, 94, 0.45);
  background: rgba(244, 63, 94, 0.16);
  color: #fecdd3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-expired-badge-card {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  margin: 0;
}

.announcement-expired-badge-inline {
  margin: 10px 0 0;
}

.video-shell {
  box-shadow: 0 20px 60px rgba(15,23,42,0.3);
}

.card-hover {
  transition: all 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.22);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dbeafe;
}

.fond-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fond-item {
  min-width: 256px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,23,42,0.75);
}

@keyframes slider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-viewport {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;
  padding: 4px 44px;
}

.partners-track.dragging {
  scroll-behavior: auto;
  cursor: grabbing;
}

.partners-track::-webkit-scrollbar {
  display: none;
}

.partners-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 17, 31, 0.72);
  color: #f8fafc;
}

.partners-arrow:hover {
  background: rgba(34, 211, 238, 0.22);
}

.partners-arrow-prev { left: -4px; }
.partners-arrow-next { right: -4px; }

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  width: 200px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(248, 250, 252, 0.94);
  padding: 12px 18px;
  user-select: none;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
}

.partner-archive-card:hover {
  transform: translateY(-2px);
}

.partner-archive-logo {
  min-height: 6rem;
}

.archive-card img,
.story-card img,
.interview-card img,
.theater-card img {
  transition: transform 0.35s ease;
}

.archive-card:hover img,
.story-card:hover img,
.interview-card:hover img,
.theater-card:hover img {
  transform: scale(1.04);
}

.topbar,
header {
  background: rgba(7, 17, 31, 0.88) !important;
  border-color: var(--line) !important;
}

.announcement-item,
.story-card,
.archive-card,
.interview-card,
.theater-card,
.fond-item {
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.96), rgba(8, 20, 34, 0.94)) !important;
  border-color: var(--line) !important;
}

.story-card h4,
.archive-card h5,
.interview-card h3,
.theater-card h3,
.story-card .text-white,
.archive-card .text-white,
.interview-card .text-white,
.theater-card .text-white {
  color: #f8fafc !important;
}

.story-card p,
.archive-card p,
.interview-card p,
.theater-card p,
.story-card .text-slate-300,
.archive-card .text-slate-400 {
  color: #a7b5c5 !important;
}

.home-category-grid {
  align-items: start;
}

.home-side-card {
  align-items: flex-start !important;
}

.home-side-card > div:first-child {
  flex-shrink: 0;
  align-self: flex-start;
}

.home-featured-card h4,
.home-side-card h5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-featured-card h4 {
  -webkit-line-clamp: 3;
}

.home-featured-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.home-side-card h5 {
  -webkit-line-clamp: 2;
}

.category-chip {
  background: rgba(7, 17, 31, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}

.interview-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 8, 23, 0.86);
  backdrop-filter: blur(8px);
}

.interview-detail-modal.is-open { display: flex; }

.article-detail-image {
  max-height: 320px;
  overflow: hidden;
}

.article-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail-copy { padding: 2rem; }

.article-detail-body {
  margin-top: 1.25rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.article-detail-body p { margin: 0 0 1rem; }
.article-detail-body img { max-width: 100%; border-radius: 12px; }
.article-detail-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.article-detail-body table td, .article-detail-body table th { border: 1px solid rgba(148, 163, 184, 0.4); padding: 8px; }


.interview-detail-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  width: min(1100px, 100%);
  max-height: min(90vh, 820px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.98), rgba(8, 20, 34, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.article-detail-dialog {
  grid-template-columns: minmax(0, 1fr);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.interview-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.25rem;
}

.interview-detail-copy h2 {
  margin-top: 1rem;
  color: #f8fafc;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.interview-detail-guest {
  margin-top: 1rem;
  color: #a7b5c5;
}

.interview-detail-guest strong { color: #a5f3fc; }

.interview-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.interview-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.interview-page-button {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 700;
}

.interview-page-button:hover:not(:disabled),
.interview-page-button.active {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.14);
  color: #a5f3fc;
}

.interview-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.announcement-page-meta {
  width: 100%;
  margin: 0.25rem 0 0;
  text-align: center;
  color: #8ea1b5;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.interview-detail-meta {
  margin-top: 1rem;
  color: #8ea1b5;
}

.interview-detail-description {
  margin-top: 1.5rem;
  color: #a7b5c5;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.interview-detail-video {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #020817;
}

.interview-detail-video > iframe,
.interview-detail-video > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  object-fit: cover;
}

.interview-site-panel {
  position: relative;
  display: flex;
  min-height: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem;
}

.interview-site-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.85);
  opacity: 0.38;
}

.interview-site-content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 22rem;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.interview-site-kicker {
  margin: 0;
  color: #67e8f9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.interview-site-host {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.interview-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  background: #22d3ee;
  color: #082f49;
  font-size: 0.95rem;
  font-weight: 800;
}

.interview-site-button:hover {
  background: #67e8f9;
}

.interview-video-fallback {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  color: #a7b5c5;
  text-align: center;
}

.interview-video-fallback a {
  color: #a5f3fc;
  font-weight: 700;
}

.interview-detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.65);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.interview-detail-dialog.has-site-link,
.interview-detail-dialog.has-video {
  height: min(90vh, 820px);
  grid-template-rows: minmax(0, 1fr);
}

.interview-detail-dialog.has-site-link {
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
}

.interview-detail-dialog.has-video .interview-detail-video > iframe,
.interview-detail-dialog.has-video .interview-detail-video > img {
  min-height: 360px;
}

.interview-detail-dialog.has-site-link .interview-site-panel {
  min-height: 0;
}

.interview-detail-dialog.is-text-only {
  grid-template-columns: 1fr;
  overflow-y: auto;
  overflow-x: hidden;
}

.interview-detail-dialog.is-text-only .interview-detail-copy {
  overflow: visible;
  padding-top: 1.5rem;
}

.interview-detail-dialog.is-text-only .interview-detail-video {
  min-height: 220px;
  max-height: 280px;
}

.interview-detail-dialog.is-text-only .interview-detail-video > img {
  min-height: 220px;
  max-height: 280px;
}

@media (max-width: 767px) {
  .interview-detail-dialog {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .interview-detail-copy {
    max-height: none;
    overflow: visible;
    padding: 1.5rem;
  }
  .interview-detail-video,
  .interview-detail-video > iframe,
  .interview-detail-video > img,
  .interview-site-panel { min-height: 230px; }
}

.feature-shell {
  background: linear-gradient(135deg, #0d1b2a, #07111f) !important;
  border-color: var(--line) !important;
}

.nav-link::after {
  background: linear-gradient(90deg, var(--cyan), transparent) !important;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current='page'],
.nav-link.active {
  color: var(--cyan) !important;
}

.live-pill {
  border-color: rgba(251, 113, 133, 0.45) !important;
  background: rgba(251, 113, 133, 0.12) !important;
  color: #fecdd3 !important;
}

html.light .topbar,
html.light header {
  background: rgba(255, 255, 255, 0.88) !important;
}

html.light .announcement-item,
html.light .story-card,
html.light .archive-card,
html.light .interview-card,
html.light .theater-card,
html.light .fond-item {
  background: #ffffff !important;
}

.ad-track {
  display: flex;
  transition: transform 0.45s ease;
}

.ad-track > * {
  min-width: 100%;
  flex-shrink: 0;
}

.home-ad-slot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  background: rgba(15, 23, 42, 0.7);
}

.home-ad-slot-wide img {
  max-height: 120px;
}

@media (max-width: 768px) {
  .feature-shell {
    min-height: 440px;
  }

  .feature-content {
    padding: 1.25rem;
  }
}

/* SəhnəLab page */
.sehnelab-hero-veil {
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.18) 0%, rgba(11, 15, 25, 0.28) 45%, rgba(11, 15, 25, 0.88) 100%);
}

.sehnelab-hero-media img {
  transform: none;
  animation: none;
  object-position: center top;
}

.sehnelab-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: sehnelabReveal 0.8s ease forwards;
}

.sehnelab-reveal-delay-1 { animation-delay: 0.12s; }
.sehnelab-reveal-delay-2 { animation-delay: 0.24s; }
.sehnelab-reveal-delay-3 { animation-delay: 0.36s; }

@keyframes sehnelabReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sehnelab-step {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sehnelab-step:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(15, 23, 42, 0.95);
}

.sehnelab-app {
  background:
    linear-gradient(135deg, rgba(2, 132, 199, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(9, 13, 21, 0.98));
}

.sehnelab-chat-card {
  animation: sehnelabChatPulse 4.5s ease-in-out infinite;
}

@keyframes sehnelabChatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
  50% { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(2, 132, 199, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .sehnelab-hero-media img,
  .sehnelab-reveal,
  .sehnelab-chat-card {
    animation: none !important;
  }

  .sehnelab-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Beynəlxalq Təcrübələr */
.intl-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.16), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(244, 63, 94, 0.12), transparent 24%),
    linear-gradient(180deg, #0b1220 0%, #0b0f19 100%);
}

.intl-hero-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
  pointer-events: none;
}

.intl-country-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.intl-orbit-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.intl-orbit-chip:hover,
.intl-orbit-chip.is-active {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.12);
  color: #a5f3fc;
}

.intl-orbit-flag {
  font-size: 1rem;
  line-height: 1;
}

.intl-filter-shell {
  backdrop-filter: blur(10px);
}

.intl-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.intl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
}

/* İİP Akademiyası */
.iip-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.22), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(34, 211, 238, 0.14), transparent 28%),
    linear-gradient(180deg, #0a0f1c 0%, #070a14 100%);
}

.iip-hero-grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.iip-hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}

.iip-hero-orb-a {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 8%;
  background: rgba(124, 58, 237, 0.35);
  animation: iipOrbFloat 12s ease-in-out infinite;
}

.iip-hero-orb-b {
  width: 260px;
  height: 260px;
  bottom: 5%;
  left: 12%;
  background: rgba(34, 211, 238, 0.25);
  animation: iipOrbFloat 14s ease-in-out infinite reverse;
}

@keyframes iipOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

.iip-reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: iipReveal 0.75s ease forwards;
}

.iip-reveal-delay-1 { animation-delay: 0.1s; }
.iip-reveal-delay-2 { animation-delay: 0.22s; }
.iip-reveal-delay-3 { animation-delay: 0.34s; }

@keyframes iipReveal {
  to { opacity: 1; transform: translateY(0); }
}

.iip-stats-panel {
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
}

.iip-stat-chip {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.65);
  padding: 12px 10px;
  text-align: center;
}

.iip-pillar {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(15, 23, 42, 0.85));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.iip-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.35);
}

.iip-bento-card {
  position: relative;
}

.iip-bento-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 211, 238, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.iip-bento-card:hover .iip-bento-glow {
  opacity: 1;
}

.iip-bento-card > div {
  position: relative;
  z-index: 1;
}

.iip-cert-badge {
  max-width: calc(100% - 7.5rem);
  border-radius: 9999px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: rgba(15, 23, 42, 0.82);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fde68a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iip-price-badge {
  border-radius: 9999px;
  border: 1px solid rgba(34, 211, 238, 0.4);
  background: rgba(6, 182, 212, 0.92);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #042f2e;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}

.iip-timeline {
  position: relative;
}

.iip-timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.iip-timeline-node {
  display: flex;
  height: 56px;
  width: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(124, 58, 237, 0.15);
  font-size: 12px;
  font-weight: 800;
  color: #ddd6fe;
}

.iip-timeline-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.75);
  padding: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.iip-timeline-item:hover .iip-timeline-card {
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateX(4px);
}

.iip-announce-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.iip-announce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
}

.iip-cta {
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(34, 211, 238, 0.12), transparent 50%),
    rgba(10, 14, 28, 0.92);
}

.iip-join-input {
  margin-top: 6px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.55);
  padding: 10px 12px;
  font-size: 0.875rem;
  color: #f8fafc;
  outline: none;
}

.iip-join-input:focus { border-color: rgba(167, 139, 250, 0.55); }

.iip-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #8b5cf6, #22d3ee);
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  transition: opacity 0.2s ease;
}

.iip-join-btn:hover { opacity: 0.9; }

.iip-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
  background:
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.2), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.12), transparent 35%),
    rgba(15, 23, 42, 0.9);
}

.iip-empty {
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.6);
  padding: 2.5rem;
  text-align: center;
  color: #94a3b8;
}

.iip-admin-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
}

@media (max-width: 1200px) {
  .iip-admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iip-reveal,
  .iip-hero-orb-a,
  .iip-hero-orb-b {
    animation: none !important;
  }
  .iip-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ——— Tədqiqatlarımız ——— */
.research-hero {
  background: radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.12), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(34, 211, 238, 0.08), transparent 40%), #060d12;
}

.research-hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 70%);
}

.research-hero-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.06), transparent);
  animation: research-scan 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes research-scan {
  0%, 100% { transform: translateY(-30%); opacity: 0; }
  50% { transform: translateY(30%); opacity: 1; }
}

.research-reveal {
  animation: research-fade-up 0.7s ease forwards;
  opacity: 0;
  transform: translateY(16px);
}

.research-reveal-delay-1 { animation-delay: 0.1s; }
.research-reveal-delay-2 { animation-delay: 0.2s; }
.research-reveal-delay-3 { animation-delay: 0.3s; }

@keyframes research-fade-up {
  to { opacity: 1; transform: none; }
}

.research-stat-chip {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.7);
  padding: 12px;
  text-align: center;
}

.research-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.research-partner-card {
  display: flex;
  gap: 14px;
  align-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.75);
  padding: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.research-partner-card:hover {
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-2px);
}

.research-partner-logo {
  height: 56px;
  width: 56px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
}

.research-partner-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.research-partner-copy h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}

.research-partner-copy p {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #94a3b8;
}

.research-partner-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.research-partner-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #22d3ee;
}

.research-projects-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .research-projects-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .research-projects-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.research-project-compact {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: stretch;
  min-height: 96px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.78);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.research-project-compact:hover {
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-2px);
}

.research-project-compact-media {
  overflow: hidden;
  min-height: 96px;
}

.research-project-compact-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.research-project-compact-body {
  padding: 10px 12px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.research-project-compact-body h3 {
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-project-compact-body p {
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #94a3b8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-project-compact .research-project-meta {
  font-size: 0.58rem;
}

.research-project-compact .research-project-foot {
  margin-top: 6px;
  font-size: 0.68rem;
}

.research-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.research-project-card {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.8);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .research-project-card { grid-column: span 6; grid-template-columns: 1fr; }
  .research-project-featured { grid-column: span 12; grid-template-columns: 1.2fr 1fr; }
}

.research-project-card:hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
}

.research-project-media {
  min-height: 180px;
  overflow: hidden;
}

.research-project-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.research-project-body { padding: 20px; }

.research-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.research-project-body h3 {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.research-project-body p {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.research-project-foot {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  color: #94a3b8;
}

.research-filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
}

.research-filter-btn.active {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(16, 185, 129, 0.15);
  color: #ecfdf5;
}

.research-announce-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.85);
  transition: transform 0.25s ease;
}

.research-announce-card:hover { transform: translateY(-4px); }

.research-announce-media {
  position: relative;
  height: 192px;
}

.research-announce-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.research-announce-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(2, 6, 23, 0.75);
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-announce-body { padding: 18px; }
.research-announce-body h3 { margin-top: 8px; font-size: 1.05rem; font-weight: 700; color: #fff; }
.research-announce-body p { margin-top: 10px; font-size: 0.875rem; line-height: 1.6; color: #94a3b8; }

.research-article-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.75);
  padding: 20px;
  transition: border-color 0.25s ease;
}

.research-article-card:hover { border-color: rgba(34, 211, 238, 0.35); }

.research-article-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.7rem;
  color: #94a3b8;
}

.research-article-field {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5eead4;
}

.research-article-card h3 { margin-top: 10px; font-size: 1.15rem; font-weight: 800; color: #fff; }
.research-article-authors { margin-top: 8px; font-size: 0.85rem; color: #cbd5e1; }
.research-article-journal { margin-top: 4px; font-size: 0.75rem; color: #64748b; font-style: italic; }
.research-article-excerpt { margin-top: 10px; font-size: 0.875rem; line-height: 1.6; color: #94a3b8; }

.research-doi-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22d3ee;
}

.research-articles-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.research-article-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: start;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.78);
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.research-article-row:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(15, 23, 42, 0.95);
}

.research-article-row-index {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #5eead4;
  padding-top: 4px;
}

.research-article-row-body {
  min-width: 0;
}

.research-article-row-body h3 {
  margin-top: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}

.research-article-row .research-doi-link {
  margin-top: 4px;
  align-self: center;
}

@media (max-width: 640px) {
  .research-article-row {
    grid-template-columns: 36px 1fr;
  }
  .research-article-row .research-doi-link {
    grid-column: 2;
  }
}

.research-join-shell {
  background: radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.12), transparent 40%),
    rgba(15, 23, 42, 0.92);
}

.research-join-visual {
  position: relative;
  min-height: 420px;
}

.research-join-image {
  border-radius: 20px;
  filter: drop-shadow(0 24px 40px rgba(16, 185, 129, 0.18));
}

.research-join-tab {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
}

.research-join-tab.active {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(16, 185, 129, 0.18);
  color: #ecfdf5;
}

.research-form-panel .research-input {
  margin-top: 6px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.55);
  padding: 10px 12px;
  font-size: 0.875rem;
  color: #f8fafc;
  outline: none;
}

.research-form-panel .research-input:focus { border-color: rgba(52, 211, 153, 0.45); }

.research-empty {
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 2rem;
  text-align: center;
  color: #94a3b8;
}

.research-admin-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

@media (max-width: 1100px) {
  .research-admin-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .research-reveal, .research-hero-scan { animation: none !important; opacity: 1; transform: none; }
}

/* —— Verilişlər (Shows) —— */
.shows-hero {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(239, 68, 68, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(6, 182, 212, 0.14), transparent 50%),
    linear-gradient(180deg, #0a0e18 0%, #07090f 100%);
}

.shows-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.shows-hero-beam {
  position: absolute;
  top: -20%;
  left: 40%;
  width: 28%;
  height: 140%;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.18), transparent 70%);
  filter: blur(48px);
  transform: rotate(18deg);
  pointer-events: none;
  animation: showsBeam 8s ease-in-out infinite alternate;
}

@keyframes showsBeam {
  from { opacity: 0.45; transform: rotate(18deg) translateX(-12px); }
  to { opacity: 0.85; transform: rotate(22deg) translateX(18px); }
}

.shows-featured-shell {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .shows-featured-shell {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.shows-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fca5a5;
}

.shows-live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: showsPulse 1.8s ease-out infinite;
}

@keyframes showsPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.shows-featured-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 10;
  background: #0b1220;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.shows-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.shows-featured-visual:hover img { transform: scale(1.06); }

.shows-featured-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 15, 0.85));
  pointer-events: none;
}

.shows-day-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.shows-day-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.55);
  padding: 0.85rem 0.75rem;
  text-align: left;
  color: #cbd5e1;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.shows-day-tab:hover { border-color: rgba(255, 255, 255, 0.22); transform: translateY(-1px); }
.shows-day-tab.active {
  border-color: rgba(248, 113, 113, 0.55);
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.22), rgba(15, 23, 42, 0.8));
  color: #fff;
}
.shows-day-tab.is-today:not(.active) { border-color: rgba(34, 211, 238, 0.35); }
.shows-day-short { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #94a3b8; }
.shows-day-tab.active .shows-day-short { color: #fecaca; }
.shows-day-full { font-size: 0.78rem; font-weight: 600; line-height: 1.25; }
.shows-day-count {
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: #64748b;
}

@media (max-width: 900px) {
  .shows-day-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .shows-day-full { display: none; }
}

@media (max-width: 520px) {
  .shows-day-tabs { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .shows-day-tab { align-items: center; padding: 0.65rem 0.25rem; }
  .shows-day-count { display: none; }
}

.shows-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shows-schedule-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  padding: 1rem 1.15rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.shows-schedule-row:hover {
  border-color: rgba(248, 113, 113, 0.35);
  transform: translateX(2px);
}

.shows-schedule-time span {
  display: inline-flex;
  min-width: 4.5rem;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.45rem 0.7rem;
  font-family: 'Space Grotesk', 'Noto Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #a5f3fc;
}

.shows-schedule-copy h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.shows-schedule-copy p {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.shows-schedule-show {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

@media (max-width: 720px) {
  .shows-schedule-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.shows-catalog-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .shows-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .shows-catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.show-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(8, 12, 22, 0.95));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.show-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 113, 113, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.show-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1220;
}

.show-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.show-card:hover .show-card-media img { transform: scale(1.05); }

.show-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 15, 0.75));
  pointer-events: none;
}

.show-card-badge {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 23, 0.65);
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
  backdrop-filter: blur(8px);
}

.show-play-fab {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(239, 68, 68, 0.92);
  color: #fff;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.show-card:hover .show-play-fab,
.shows-featured-visual:hover .show-play-fab,
.show-play-fab-lg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.show-play-fab-lg {
  width: 4.4rem;
  height: 4.4rem;
  opacity: 0.95;
}

.show-play-fab span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.show-card-body { padding: 1.1rem 1.15rem 1.25rem; }
.show-card-body h3 { font-size: 1.15rem; font-weight: 800; color: #fff; }
.show-card-tagline { margin-top: 0.3rem; font-size: 0.85rem; color: #67e8f9; }
.show-card-desc {
  margin-top: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

.show-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: #64748b;
}

.show-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.show-watch-btn {
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #ef4444, #f97316);
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.2s ease;
}

.show-watch-btn:hover:not(:disabled) { opacity: 0.9; }
.show-watch-btn:disabled {
  background: rgba(148, 163, 184, 0.2);
  color: #94a3b8;
  cursor: not-allowed;
}

.show-card-slot {
  font-size: 0.72rem;
  color: #94a3b8;
}

.show-watch-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(10px);
}

.show-watch-modal.is-open { display: flex; }

.show-watch-dialog {
  position: relative;
  width: min(960px, 100%);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b1220;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.show-watch-meta { padding: 1.25rem 1.35rem 0.75rem; }
.show-watch-meta h2 { margin-top: 0.55rem; font-size: 1.45rem; font-weight: 800; color: #fff; }
.show-watch-meta p { margin-top: 0.35rem; font-size: 0.9rem; color: #94a3b8; }
.show-watch-desc { margin-top: 0.55rem !important; line-height: 1.65; }

.show-watch-player {
  margin: 0.5rem 1rem 1rem;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.show-watch-player iframe,
.show-watch-player img {
  width: 100%;
  height: 100%;
  border: 0;
}

.shows-admin-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

@media (max-width: 1100px) {
  .shows-admin-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .shows-hero-beam, .shows-live-dot { animation: none !important; }
}

/* —— Layihələrimiz (Site Projects) —— */
.projects-hero {
  background:
    radial-gradient(ellipse 70% 55% at 12% 15%, rgba(245, 158, 11, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 25%, rgba(34, 211, 238, 0.12), transparent 50%),
    linear-gradient(180deg, #0a0e18 0%, #06080f 100%);
}

.projects-hero-orbit {
  position: absolute;
  inset: -10% auto auto 55%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(245, 158, 11, 0.18);
  box-shadow: inset 0 0 60px rgba(34, 211, 238, 0.08);
  animation: projectsOrbit 18s linear infinite;
  pointer-events: none;
}

.projects-hero-orbit::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.8);
  transform: translateX(-50%);
}

.projects-hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 22px,
    rgba(255, 255, 255, 0.015) 22px,
    rgba(255, 255, 255, 0.015) 23px
  );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
  pointer-events: none;
}

@keyframes projectsOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.projects-stats-panel {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  padding: 1.35rem;
  backdrop-filter: blur(14px);
}

.projects-stat {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.45);
  padding: 0.9rem;
}

.projects-field-bar {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.72rem;
  color: #94a3b8;
}

.projects-field-bar i {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.projects-field-bar i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b, #22d3ee);
}

.projects-timeline {
  display: grid;
  gap: 0.85rem;
}

.projects-timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: stretch;
}

.projects-timeline-dates {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(6, 182, 212, 0.08);
  padding: 0.85rem;
  font-family: Outfit, 'Noto Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #a5f3fc;
}

.projects-timeline-dates small {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: #64748b;
}

.projects-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(8, 12, 22, 0.98));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.projects-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.35);
}

.projects-card-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 160px;
}

.projects-card-media {
  position: relative;
  overflow: hidden;
  background: #0b1220;
}

.projects-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-card-body { padding: 1.1rem 1.2rem; }
.projects-card-body h3 { font-size: 1.15rem; font-weight: 800; color: #fff; }
.projects-card-body p {
  margin-top: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

.projects-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.projects-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.projects-chip.is-ongoing {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(245, 158, 11, 0.14);
  color: #fde68a;
}

.projects-chip.is-open {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(6, 182, 212, 0.12);
  color: #a5f3fc;
}

.projects-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.projects-join-btn {
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #f59e0b, #22d3ee);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
}

.projects-join-btn:hover { opacity: 0.92; }

.projects-ongoing-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.projects-ongoing-card {
  scroll-snap-align: start;
  border-radius: 26px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background:
    linear-gradient(160deg, rgba(245, 158, 11, 0.12), transparent 45%),
    rgba(15, 23, 42, 0.85);
  padding: 1.2rem;
  min-height: 220px;
}

.projects-ongoing-card h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.projects-ongoing-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

.projects-progress {
  margin-top: 1rem;
}

.projects-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.projects-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b, #22d3ee);
}

.projects-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  color: #64748b;
}

.projects-catalog-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.1rem;
}

@media (min-width: 900px) {
  .projects-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.projects-catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.8);
}

.projects-catalog-card .projects-card-media {
  aspect-ratio: 16 / 9;
}

.projects-join-shell {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(245, 158, 11, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(34, 211, 238, 0.12), transparent 50%),
    rgba(10, 14, 24, 0.9);
}

.projects-input {
  margin-top: 6px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.55);
  padding: 10px 12px;
  font-size: 0.875rem;
  color: #f8fafc;
  outline: none;
}

.projects-input:focus { border-color: rgba(251, 191, 36, 0.45); }

.projects-admin-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 900px) {
  .projects-timeline-item,
  .projects-card-inner { grid-template-columns: 1fr; }
  .projects-card-media { min-height: 160px; }
  .projects-admin-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .projects-hero-orbit { animation: none !important; }
}
