:root {
  --bg: #070c18;
  --bg2: #0d1526;
  --bg3: #111d35;
  --accent: #00d4ff;
  --accent2: #0088cc;
  --red: #ff3355;
  --red2: #cc1133;
  --orange: #ff8c00;
  --yellow: #ffd700;
  --green: #00ff88;
  --green2: #00cc66;
  --purple: #9b59ff;
  --text: #d0ddf0;
  --text2: #7899bb;
  --border: rgba(0, 212, 255, 0.15);
  --card: rgba(13, 21, 38, 0.9);
  --glow: 0 0 20px rgba(0, 212, 255, 0.3);
  --glow-red: 0 0 20px rgba(255, 51, 85, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

body {
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter';
  font-size: 13px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  padding: 18px 22px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(13, 21, 38, 0.95), rgba(7, 12, 24, 0.98));
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--glow);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.shield-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 8px var(--accent));
}

.header-title {
  font-size: 20px;
  font-weight: 700;
  color: #ff4562;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h3{color:#ff4562;}

.header-sub {
  font-size: 11px;
  color: var(--text2);
  margin-top: 5px;
  max-width: 60%;
}

@media screen and (max-width: 900px) {
  .header-sub {
    max-width: 100%;
  }
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 51, 85, 0.15);
  border: 1px solid var(--red);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.update-time {
  font-size: 13px;
  color: var(--text2);
}

.source-badge {
  font-size: 10px;
  color: var(--accent2);
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 10px;
  padding: 4px 10px;
}

/* STAT CARDS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 10px 10px 0 0;
}

.stat-card.accent::before {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.stat-card.red::before {
  background: linear-gradient(90deg, var(--red), var(--red2));
}

.stat-card.orange::before {
  background: linear-gradient(90deg, var(--orange), #cc7000);
}

.stat-card.green::before {
  background: linear-gradient(90deg, var(--green), var(--green2));
}

.stat-card.purple::before {
  background: linear-gradient(90deg, var(--purple), #6633cc);
}

.stat-card.yellow::before {
  background: linear-gradient(90deg, var(--yellow), #cc9900);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.stat-val {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1;
}

.stat-card.accent .stat-val {
  color: var(--accent);
}

.stat-card.red .stat-val {
  color: var(--red);
}

.stat-card.orange .stat-val {
  color: var(--orange);
}

.stat-card.green .stat-val {
  color: var(--green);
}

.stat-card.purple .stat-val {
  color: var(--purple);
}

.stat-card.yellow .stat-val {
  color: var(--yellow);
}

.stat-label {
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-icon {
  font-size: 18px;
  margin-bottom: 6px;
}

/* MAIN GRID */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 16px;
  margin-bottom: 16px;
}

.section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

/* Scrollable variant for cards with very long content */
.section-card.scrollable {
  max-height: 520px;
  overflow-y: auto;
  position: relative;
}

.section-card.scrollable::-webkit-scrollbar {
  width: 8px;
}

.section-card.scrollable::-webkit-scrollbar-track {
  background: rgba(9, 30, 66, 0.8);
}

.section-card.scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--purple));
  border-radius: 10px;
}

.section-card.scrollable::after {
  content: 'Scroll \2022';
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 10px;
  font-size: 10px;
  text-align: right;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--text2);
  pointer-events: none;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.04);
}

.section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff4562;
}

.section-body {
  padding: 18px;
}

/* MAP */
.map-svg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.map-wrap {
  overflow: hidden;
  margin-bottom: 0;
  line-height: 0;
}

.map-wrap+.map-legend {
  margin-top: 0;
}

.attack-line {
  stroke-dasharray: 8 4;
  animation: dash 2s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -48;
  }
}

.pulse-ring {
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    r: 8;
    opacity: 0.8
  }

  100% {
    r: 22;
    opacity: 0
  }
}

.map-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 16px 0;
  border-top: 1px solid var(--border);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text2);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot-ring {
  box-sizing: border-box;
}

.map-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 16px 6px;
  font-size: 12px;
  color: var(--text2);
}

.map-stat strong {
  color: var(--accent);
  font-weight: 600;
}

.map-stat-sep {
  color: rgba(0, 212, 255, 0.35);
  user-select: none;
}

.map-takeaway {
  padding: 10px 16px 8px;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.map-takeaway-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.map-takeaway-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text2);
  margin: 0;
}

.map-threat-sector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 8px 16px 8px;
  font-size: 11px;
  color: var(--text2);
  border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.map-threat-level {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.map-threat-sector .map-last-updated {
  margin-left: auto;
  color: rgba(150, 170, 200, 0.6);
  font-size: 10px;
}


.map-threat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.map-threat-dot.elevated {
  background: rgba(255, 200, 100, 0.9);
  box-shadow: 0 0 8px rgba(255, 200, 100, 0.4);
}

.map-sectors {
  color: rgba(180, 200, 220, 0.7);
}

/* CHART */
.chart-container {
  position: relative;
  height: 260px;
  padding: 0 0 10px 0;
}

/* BOTTOM GRID */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding: 10px 0 0 0;
}

.tl-spine {
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--purple), var(--red));
}

.tl-item {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.tl-date {
  width: 88px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: #ff4562;
  line-height: 1.2;
  flex-shrink: 0;
  padding-top: 2px;
}

.tl-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 4px;
  border: 2px solid;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.tl-node.kinetic {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 8px var(--red);
}

.tl-node.cyber {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.tl-node.hacktivist {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 8px var(--orange);
}

.tl-node.russian {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

.tl-content {
  flex: 1;
}

.tl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tl-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag.red {
  background: rgba(255, 51, 85, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 51, 85, 0.3);
}

.tag.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.tag.orange {
  background: rgba(255, 140, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.tag.green {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.tag.purple {
  background: rgba(155, 89, 255, 0.1);
  color: var(--purple);
  border: 1px solid rgba(155, 89, 255, 0.3);
}

/* APT TABLE */
.apt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.apt-table th {
  background: rgba(0, 212, 255, 0.07);
  color: var(--accent2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}

.apt-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
  line-height: 1.4;
}

.apt-table tr:hover td {
  background: rgba(0, 212, 255, 0.04);
}

.apt-name {
  font-weight: 700;
  color: var(--red);
  font-size: 12px;
}

.apt-alias {
  font-size: 12px;
  color: var(--text2);
  margin-top: 2px;
}

.risk-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.risk-critical {
  background: rgba(255, 51, 85, 0.2);
  color: var(--red);
  border: 1px solid rgba(255, 51, 85, 0.4);
}

.risk-high {
  background: rgba(255, 140, 0, 0.15);
  color: var(--orange);
  border: 1px solid rgba(255, 140, 0, 0.35);
}

.risk-medium {
  background: rgba(255, 215, 0, 0.1);
  color: var(--yellow);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* HACKTIVIST CARDS */
.hacktivist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}

.hc-card {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.hc-card.russian {
  border-color: rgba(155, 89, 255, 0.3);
}

.hc-card.russian:hover {
  box-shadow: 0 0 15px rgba(155, 89, 255, 0.2);
}

.hc-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.hc-card.russian .hc-name {
  color: var(--purple);
  font-size: 12px;
}

.hc-origin {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 5px;
}

.hc-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 5px;
}

.hc-method {
  font-size: 10px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  color: var(--orange);
  padding: 1px 5px;
  border-radius: 3px;
}

.hc-card.russian .hc-method {
  background: rgba(155, 89, 255, 0.08);
  border-color: rgba(155, 89, 255, 0.2);
  color: var(--purple);
  font-size: 10px;
}

.hc-targets {
  font-size: 12px;
  color: var(--text2);
}

/* TELEGRAM SCREENSHOTS */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

.tg-card {
  background: rgba(7, 12, 24, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid var(--border);
}

.tg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 700;
}

.tg-info {
  flex: 1;
}

.tg-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.tg-date {
  font-size: 13px;
  color: var(--text2);
}

.tg-category {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}

.tg-body {
  padding: 12px;
}

.tg-msg {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 8px;
}

.tg-claim {
  background: rgba(255, 51, 85, 0.07);
  border-left: 3px solid var(--red);
  padding: 8px 10px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
}

.tg-screenshot {
  background: rgba(13, 21, 38, 0.8);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
  font-family: 'Inter';
  font-size: 10px;
  color: #fff;
  line-height: 1.5;
}

.tg-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tg-tag {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
}

/* RECOMMENDATIONS */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rec-card {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.rec-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rec-item {
  display: flex;
  gap: 6px;
  margin-bottom: 7px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.4;
}

.rec-item::before {
  content: '\2022';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 16px;
  color: var(--text2);
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent2);
  border-radius: 3px;
}

.section-badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.section-badge.red {
  background: rgba(255, 51, 85, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 51, 85, 0.3);
}

.section-badge.blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.25);
}

.section-badge.orange {
  background: rgba(255, 140, 0, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.threat-bar-container {
  margin-bottom: 8px;
}

.threat-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
  font-size: 10px;
}

.threat-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.threat-bar-fill {
  height: 100%;
  border-radius: 3px;
}

@media screen and (max-width: 1100px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}



.main-tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  background: rgba(13, 21, 38, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
}

.main-tab-btn {
  flex: 1;
  padding: 10px 18px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: transparent;
  color: var(--text2);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.main-tab-btn:hover {
  background: rgba(0, 212, 255, 0.07);
  color: var(--text);
}

.main-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 136, 204, 0.1));
  color: #ff4562;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.main-tab-btn.active.red-tab {
  background: linear-gradient(135deg, rgba(255, 51, 85, 0.15), rgba(200, 20, 60, 0.1));
  color: var(--red);
  border: 1px solid rgba(255, 51, 85, 0.3);
  box-shadow: 0 0 12px rgba(255, 51, 85, 0.15);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s infinite;
}

@media screen and (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .rec-grid {
    grid-template-columns: 1fr;
  }

  .main-tab-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(13, 21, 38, 0.5);
    padding: 8px;
    overflow-x: visible;
  }

  .main-tab-bar::-webkit-scrollbar {
    display: none;
  }

  .main-tab-btn {
    flex: none;
    width: 100%;
    min-height: 50px;
    padding: 10px 8px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
    flex-direction: column;
    gap: 4px;
    line-height: 1.2;
  }

  .main-tab-btn:nth-child(5) {
    grid-column: span 2;
  }

  /* Intelligence Dashboard full-width on mobile (edge-to-edge within page) */
  #tab-dashboard.tab-panel {
    width: calc(100% + 28px);
    max-width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
    box-sizing: border-box;
  }

  /* Threat Landscape Mobile Optimizations */
  .responsive-row {
    flex-direction: column !important;
    height: auto !important;
    gap: 20px !important;
  }

  /* Heatmap: mobilde explicit yÃƒÆ’Ã‚Â¼kseklik ver, flex:1 ÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â¶kÃƒÆ’Ã‚Â¼yor */
  .heatmap-wrapper {
    position: relative !important;
    overflow: hidden !important;
    height: 320px !important;
    min-height: 320px !important;
    flex: none !important;
  }

  #target-heatmap {
    width: 100% !important;
    height: 320px !important;
    min-height: 320px !important;
  }

  .country-chart-container,
  .country-chart-labels {
    margin-left: 0 !important;
  }

  #tab-analysis .country-label {
    position: static !important;
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 4px;
    padding-top: 10px;
    display: block !important;
  }

  .org-card-set {
    display: flex;
    gap: 14px;
  }

  @media screen and (max-width: 768px) {
    #tab-analysis .org-card-set {
      flex-wrap: nowrap !important;
    }
  }

  .country-chart-labels [style*="position: absolute; left: -110px"] {
    display: none !important;
  }

  .org-header-row {
     margin-left: 10px !important;
  }

  .org-carousel-container {
    height: auto !important;
    overflow: hidden !important;
  }
}


.tab-count-badge {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}


.tg-feed-layout {
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  gap: 12px;
  height: 82vh;
  min-height: 620px;
}

.tg-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tg-panel-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  color: #ff4562;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Channel list */
.channel-list {
  overflow-y: auto;
  flex: 1;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.channel-item:hover,
.channel-item.active {
  background: rgba(0, 212, 255, 0.06);
}

.channel-item.active {
  border-left: 2px solid var(--accent);
}

.ch-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
  position: relative;
}

.ch-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--bg2);
}

.ch-online.on {
  background: var(--green);
}

.ch-online.off {
  background: var(--text2);
}

.ch-info {
  flex: 1;
  min-width: 0;
}

.ch-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ch-preview {
  font-size: 9px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.ch-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

.ch-time {
  font-size: 8px;
  color: var(--text2);
}

.ch-unread {
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

.ch-unread.orange {
  background: var(--orange);
}

.ch-unread.blue {
  background: var(--accent2);
}

/* Live message feed */
.feed-toolbar {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.feed-filter {
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text2);
  transition: all 0.2s;
  font-weight: 600;
  text-transform: uppercase;
}

.feed-filter.active,
.feed-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
}

.feed-filter.red.active {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255, 51, 85, 0.08);
}

.feed-filter.orange.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 140, 0, 0.08);
}

.feed-filter.purple {
  border-color: rgba(155, 89, 255, 0.3);
  color: var(--purple);
}

.feed-filter.purple:hover,
.feed-filter.purple.active {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(155, 89, 255, 0.12);
}

.feed-search {
  flex: 1;
  min-width: 80px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 10px;
  font-size: 9px;
  color: var(--text);
  outline: none;
}

.feed-search::placeholder {
  color: var(--text2);
}

.feed-toolbar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 12px 8px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.feed-tag-chip {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text2);
  transition: all 0.2s;
  font-weight: 600;
  text-transform: uppercase;
}

.feed-tag-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
}

.feed-tag-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
}

.msg-stream {
  overflow-y: auto;
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg-item {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px 14px;
  animation: msgIn 0.4s ease;
  border-left: 3px solid transparent;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.msg-item.ddos {
  border-left-color: var(--accent);
}

.msg-item.leak {
  border-left-color: var(--red);
}

.msg-item.claim {
  border-left-color: var(--orange);
}

.msg-item.ics {
  border-left-color: var(--yellow);
}

.msg-item.russian {
  border-left-color: var(--purple);
}

.msg-item.alert {
  border-left-color: var(--green);
  background: rgba(0, 255, 136, 0.04);
}

.msg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.msg-ch-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.msg-ch-name {
  font-size: 12px;
  font-weight: 700;
  flex: 1;
}

.msg-time {
  font-size: 12px;
  color: var(--text2);
}

.msg-type-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.matched-highlight {
  color: var(--red);
  font-weight: 600;
}

.msg-body {
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
}

.msg-body .code {
  font-family: 'Inter';
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 4px;
  padding: 6px 8px;
  display: block;
  margin-top: 6px;
  font-size: 9.5px;
  color: var(--green);
  white-space: pre;
  overflow-x: auto;
}

.msg-body .arabic {
  font-size: 12px;
  direction: rtl;
  text-align: right;
  color: rgba(255, 200, 100, 0.85);
  margin-top: 4px;
}

.msg-fwd {
  font-size: 9px;
  color: var(--accent2);
  margin-bottom: 4px;
  border-left: 2px solid var(--accent2);
  padding-left: 6px;
  font-style: italic;
}

.msg-reactions {
  display: flex;
  gap: 6px;
  margin-top: 7px;
  flex-wrap: wrap;
}

.msg-reaction {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 2px 7px;
}

/* Stats panel */
.stats-feed {
  overflow-y: auto;
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-counter {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.sf-val {
  font-size: 24px;
  font-weight: 800;
}

.sf-label {
  font-size: 9px;
  color: var(--text2);
  text-transform: uppercase;
  margin-top: 2px;
}

.sf-mini {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}

.sf-mini-title {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.sf-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-bottom: 4px;
}

.sf-row span:last-child {
  font-weight: 700;
}

.activity-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 3px;
  transition: width 0.5s;
}

.pulse-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: var(--green);
  font-weight: 700;
}

.pulse-ring-sm {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 0.8s infinite;
}

/* Telegram: mobile channel bar (hidden on desktop) */
.tg-feed-mobile-channel-bar {
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 8px 0;
}

.tg-channels-trigger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}

.tg-channels-trigger-btn:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.35);
}

.tg-channels-trigger-icon {
  font-size: 18px;
}

.tg-channels-trigger-label {
  flex: 1;
}

.tg-channels-trigger-label strong {
  color: #ff4562;
}

.tg-channels-trigger-chevron {
  font-size: 10px;
  color: var(--text2);
}

/* Telegram: channel selection modal */
.tg-channels-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

.tg-channels-modal.tg-channels-modal-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tg-channels-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.tg-channels-modal-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: 85vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tg-channels-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.04);
  flex-shrink: 0;
}

.tg-channels-modal-title {
  font-size: 14px;
  font-weight: 700;
  color: #ff4562;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.tg-channels-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.tg-channels-modal-close:hover {
  background: rgba(255, 51, 85, 0.15);
  border-color: var(--red);
  color: var(--red);
}

.tg-channels-modal-subtitle {
  padding: 10px 16px;
  font-size: 11px;
  color: var(--text2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.tg-channels-modal-subtitle strong {
  color: var(--accent);
}

.tg-channels-modal-list {
  overflow-y: auto;
  flex: 1;
  min-height: 200px;
  padding: 8px;
}

#tab-feed>.tg-feed-layout {
  filter: blur(6px) !important;
  pointer-events: none;
}


#tab-twitter {
  position: relative;
}

#tab-twitter>.twitter-feed-layout {
  filter: blur(12px) !important;
  pointer-events: none;
}

#tab-twitter.hidden-blur>.twitter-feed-layout {
  filter: none !important;
  pointer-events: auto;
}

.twitter-cta-overlay.hidden {
  display: none;
}

#tab-twitter.tab-panel.active {
  display: flex;
  flex-direction: column;
  min-height: 82vh;
}

.twitter-feed-layout {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.twitter-feed-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}

.twitter-feed-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.twitter-feed-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.twitter-feed-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.twitter-feed-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--text2);
  margin-left: auto;
}

.twitter-pulse {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-weight: 700;
}

.twitter-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 0.8s infinite;
}

.twitter-feed-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.twitter-feed-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  min-height: 0;
  overflow: hidden;
  padding: 12px;
}

.twitter-feed-columns.category-iran-israel .twitter-column,
.twitter-feed-columns.category-ddos-attack .twitter-column,
.twitter-feed-columns.category-data-leak .twitter-column,
.twitter-feed-columns.category-op-israel .twitter-column {
  display: none;
}

.twitter-feed-columns.category-iran-israel .twitter-column[data-col="iran-israel"],
.twitter-feed-columns.category-ddos-attack .twitter-column[data-col="ddos-attack"],
.twitter-feed-columns.category-data-leak .twitter-column[data-col="data-leak"],
.twitter-feed-columns.category-op-israel .twitter-column[data-col="op-israel"] {
  display: flex;
  grid-column: 1 / -1;
}

/* Twitter category + tag filter buttons row (2 columns on mobile/tablet) */
.twitter-filter-buttons-row {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 12px 8px;
  flex-shrink: 0;
}

/* Twitter category bar + modal (like Telegram) */
/* Category select only on mobile/tablet; desktop shows 4 columns */
.twitter-category-bar {
  display: none;
  padding: 0;
  flex-shrink: 0;
}

.twitter-category-trigger-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}

.twitter-category-trigger-btn:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.35);
}

.twitter-category-trigger-icon {
  font-size: 16px;
}

.twitter-category-trigger-label {
  flex: 1;
}

.twitter-category-trigger-label strong {
  color: #ff4562;
}

.twitter-category-trigger-chevron {
  font-size: 10px;
  color: var(--text2);
}

.twitter-category-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

.twitter-category-modal.twitter-category-modal-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.twitter-category-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.twitter-category-modal-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: 85vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.twitter-category-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.04);
  flex-shrink: 0;
}

.twitter-category-modal-title {
  font-size: 14px;
  font-weight: 700;
  color: #ff4562;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.twitter-category-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.twitter-category-modal-close:hover {
  background: rgba(255, 51, 85, 0.15);
  border-color: var(--red);
  color: var(--red);
}

.twitter-category-modal-subtitle {
  padding: 10px 16px;
  font-size: 11px;
  color: var(--text2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.twitter-category-modal-subtitle strong {
  color: var(--accent);
}

.twitter-category-modal-list {
  overflow-y: auto;
  flex: 1;
  min-height: 180px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.twitter-category-item {
  padding: 12px 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.twitter-category-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.35);
}

.twitter-category-item.twitter-category-item-active {
  background: rgba(0, 212, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* Twitter tag filter: button + modal only on mobile/tablet; desktop shows chip row */
.twitter-tag-filter-bar {
  display: none;
  padding: 0;
  flex-shrink: 0;
}

.twitter-tag-trigger-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}

.twitter-tag-trigger-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.35);
}

.twitter-tag-trigger-icon {
  font-size: 16px;
}

.twitter-tag-trigger-label {
  flex: 1;
}

.twitter-tag-trigger-label strong {
  color: #ff4562;
}

.twitter-tag-trigger-chevron {
  font-size: 10px;
  color: var(--text2);
}

@media screen and (max-width: 992px) {
  .twitter-filter-buttons-row {
    display: grid;
  }
  .twitter-category-bar {
    display: block;
  }
  .twitter-tag-filter-bar {
    display: block;
  }
  .twitter-category-trigger-btn,
  .twitter-tag-trigger-btn {
    max-width: none;
  }
  .twitter-tag-bar-chips {
    display: none !important;
  }
}

.twitter-tag-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

.twitter-tag-modal.twitter-tag-modal-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.twitter-tag-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.twitter-tag-modal-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: 85vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.twitter-tag-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.04);
  flex-shrink: 0;
}

.twitter-tag-modal-title {
  font-size: 14px;
  font-weight: 700;
  color: #ff4562;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.twitter-tag-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.twitter-tag-modal-close:hover {
  background: rgba(255, 51, 85, 0.15);
  border-color: var(--red);
  color: var(--red);
}

.twitter-tag-modal-subtitle {
  padding: 10px 16px;
  font-size: 11px;
  color: var(--text2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.twitter-tag-modal-subtitle strong {
  color: var(--accent);
}

.twitter-tag-modal-hint {
  font-size: 10px;
  font-weight: normal;
  color: var(--text2);
  opacity: 0.9;
}

.twitter-tag-modal-list {
  overflow-y: auto;
  flex: 1;
  min-height: 200px;
  max-height: 50vh;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.twitter-tag-item {
  padding: 10px 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.twitter-tag-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.35);
}

.twitter-tag-item.twitter-tag-item-active {
  background: rgba(0, 212, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.twitter-stats-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.twitter-stats-panel .tg-panel-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  color:  #ff4562;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.twitter-stats-panel .stats-feed {
  overflow-y: auto;
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.twitter-column {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(7, 12, 24, 0.6);
  overflow: hidden;
}

.twitter-column-header {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ff4562;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.twitter-tweet-list {
  overflow-y: auto;
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.twitter-tweet-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s;
  animation: msgIn 0.4s ease;
}

.twitter-tweet-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
}

.twitter-tweet-header {
  margin-bottom: 8px;
}

.twitter-tweet-header .msg-type-badge {
  font-size: 8px;
  padding: 3px 8px;
  border-radius: 4px;
}

.twitter-tweet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.twitter-tweet-tags .tag {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text2);
}

.twitter-tweet-body {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
  word-break: break-word;
}

.twitter-tweet-body .matched-highlight {
  color: var(--red);
  font-weight: 600;
}

.twitter-tweet-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 10px;
  color: var(--text2);
}

.twitter-tweet-date {
  color: var(--text2);
}

.twitter-tweet-date-label {
  color: var(--text2);
  opacity: 0.9;
  margin-right: 4px;
}

.twitter-tweet-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.twitter-tweet-link:hover {
  text-decoration: underline;
}

.twitter-empty {
  padding: 16px;
  text-align: center;
  color: var(--text2);
  font-size: 11px;
}

/* ===== TELEGRAM & TWITTER RESPONSIVE ===== */
@media screen and (max-width: 992px) {
  .tg-feed-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 60vh;
    height: auto;
  }

  .tg-feed-mobile-channel-bar {
    display: block;
  }

  .tg-panel-channels {
    display: none !important;
  }

  .tg-feed-layout .tg-panel:nth-child(3) {
    min-height: 320px;
  }

  .tg-feed-layout .tg-panel:nth-child(4) {
    min-height: 0;
  }

  .feed-toolbar {
    padding: 8px 10px;
    gap: 6px;
  }

  .feed-filter {
    font-size: 11px;
    padding: 2px 8px;
  }

  .feed-search {
    min-width: 0;
    width: 100%;
  }

  .twitter-feed-body {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }

  .twitter-feed-columns {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    gap: 10px;
  }

  .twitter-feed-header {
    display: flex;
  }

  .twitter-column-header {
    font-size: 11px;
    padding: 8px 10px;
  }

  .twitter-tweet-card {
    padding: 10px 12px;
  }

  .twitter-tweet-body {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .tg-feed-layout {
    min-height: 50vh;
  }

  .msg-stream {
    min-height: 280px;
  }

  .twitter-feed-columns {
    grid-template-columns: 1fr;
  }

  .twitter-stats-panel .stats-feed {
    padding: 8px;
  }

  .twitter-feed-title {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .tg-channels-modal-box {
    max-height: 90vh;
    margin: 8px;
  }

  .tg-channels-modal-list .channel-item {
    padding: 10px 12px;
  }

  .tg-channels-modal-list .ch-name {
    font-size: 12px;
  }

  .feed-toolbar {
    flex-wrap: wrap;
  }

  .feed-filter {
    font-size: 10px;
    padding: 2px 6px;
  }

  .twitter-feed-header {
    padding: 10px 12px;
    flex-wrap: wrap;
  }

  .twitter-feed-title {
    font-size: 12px;
  }

  .twitter-column-header {
    font-size: 10px;
  }
}

/* ===== HEADER LAYOUT (GROUP RIGHT FIX) ===== */

.header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* LEFT: take remaining space */
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header-titles {
  min-width: 0;
}

/* RIGHT: content-width group, pinned to far right */
.header-right {
  margin-left: auto;
  /* critical: push whole group to far right */
  display: flex;
  align-items: end;
  gap: 16px;
  flex-wrap: nowrap;
  /* keep meta + logo on same row */
  text-align: right;
}

/* Stack 3 items vertically */
.header-right-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* right align */
  gap: 6px;
  min-width: 0;
}

/* Keep the long update line under control */
.header-right .update-time {
  order: 2;
  max-width: 520px;
  /* adjust 420ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ680px if needed */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

/* LOGO: just a fixed block on the far right (no auto margins here) */
.header-logo {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 0;
  text-decoration: none;
  flex: 0 0 auto;
}

/* Override any inline SVG centering like margin:0 auto */
.header-logo svg {
  display: block;
  margin: 0 !important;
  height: 30px;
  width: auto;
  max-width: 160px;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .page {
    padding: 12px 14px;
  }

  .header {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
  }

  .header-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .header-right {
    margin-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }

  .header-logo {
    order: 2;
    margin: 0;
    padding: 0;
  }

  .header-right-meta {
    order: 1;
    width: auto;
    align-items: flex-start;
    text-align: left;
    flex-shrink: 0;
  }

  .header-right-meta .live-badge {
    margin-bottom: 4px;
  }

  .header-right .update-time {
    order: 3;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    font-size: 8px;
    line-height: 1.35;
    color: var(--text2);
    margin-bottom: 0;
    display: block;
    box-sizing: border-box;
  }

  .header-logo svg {
    height: 24px;
    max-width: 120px;
  }

  .map-wrap {
    border-radius: 0;
  }

  .map-svg {
    min-height: 200px;
    max-height: 50vh;
    object-fit: contain;
  }

  .section-card {
    border-radius: 8px;
  }

  .section-body {
    padding: 12px;
  }

  .section-header {
    padding: 10px 12px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .section-title {
    font-size: 11px;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(7, 12, 24, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  cursor: pointer;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::before {
  content: '\2022';
  color: var(--accent);
  font-size: 12px;
  transform: translateY(-1px);
}

.faq-item[open] .faq-q::before {
  content: '\25BE'; /* ▾ */
  /*content: 'ÃƒÂ¢Ã¢â‚¬â€œÃ‚Â¾';*/
}

.faq-a {
  padding: 0 14px 14px 14px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* TELEGRAM FEED CTA */

#tab-feed {
  position: relative;
}

#tab-feed.hidden-blur>.tg-feed-layout {
  filter: none !important;
  pointer-events: auto;
}

.feed-cta-overlay.hidden {
  display: none;
}

/* Telegram + Twitter: overlay sekme alanÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Å¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±na gÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶re sabit, iÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§erikten %15 aÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸aÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Å¾ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Å¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±da */
.feed-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15%;
  z-index: 10;
  pointer-events: none;
  background: rgba(7, 12, 24, 0.4);
  padding: 15% 16px 16px;
  box-sizing: border-box;
}

.feed-cta-box {
  text-align: center;
  background: rgba(10, 18, 32, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 10px;
  padding: 26px 34px;
  max-width: 360px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.feed-cta-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.feed-cta-text {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 16px;
}

.feed-cta-btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #00d4ff, #0088cc);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #001018;
  text-decoration: none;
  transition: all .2s;
}

.feed-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.feed-cta-box,
.feed-cta-box a,
.feed-cta-box input,
.feed-cta-box button {
  pointer-events: auto;
}

@media screen and (max-width: 480px) {
  .page {
    padding: 10px 12px;
  }

  #tab-dashboard.tab-panel {
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .section-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hello-bar-inner {
    padding: 8px 12px;
    gap: 8px;
  }

  .hello-bar-text {
    font-size: 12px;
  }

  .hello-bar-btn {
    font-size: 11px;
    padding: 6px 12px;
    white-space: nowrap;
  }

  .header-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
  }

  .header-sub {
    display: none;
  }

  .feed-cta-overlay {
    padding: 12px;
  }

  .feed-cta-box {
    padding: 20px 24px;
    max-width: 100%;
  }

  .feed-cta-title {
    font-size: 15px;
  }

  .feed-cta-text {
    font-size: 12px;
  }

  .header-sub {
    max-width: 98%;
  }

  .header-left {
    order: 1;
  }

  .header-right-meta {
    order: 2;
  }

  .header-logo {
    order: 1;
    margin: 0;
    padding: 0;
  }

  .header-logo svg {
    height: 28px !important;
    max-width: 100px;
  }

  .header-right .update-time {
    font-size: 8px;
  }

  .section-card>.map-legend {
    display: none;
  }

  .section-card>.map-stats {
    display: none;
  }

  .header-left {
    padding-top: 0px !important;
  }

  .main-tab-bar {
    background: rgb(255, 69, 98);
    padding: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-tab-btn.active {
    background: #0a0b1e;
    color: white;
    box-shadow: none;
    border: 0;
  }

  .main-tab-btn.active span {
    display: block;
  }

  .main-tab-btn {
    background-color: rgba(10, 11, 30, 0.9);
    font-size: 10px;
    min-height: auto;
    color: #d6d6d6;
    padding: 12px 10px;
  }

  .main-tab-btn #tab-actors-count,
  .main-tab-btn #tl_id,
  .main-tab-btn #tai_id,
  .main-tab-btn #ltf_id,
  .main-tab-btn .tab-live-dot,
  .main-tab-btn #tab-msg-count,
  .main-tab-btn #tab-twitter-count,
  .main-tab-btn #id_id,
  .main-tab-btn #mtf_id {
    display: none;
  }

  .main-tab-bar>.red-tab {
    background-color: #0a0b1e;
  }

  .main-tab-btn.active.red-tab {
    background-color: #0a0b1e;
    color: white;
  }

  .main-tab-bar .menu-card {
    position: relative;
    padding: 12px 36px 12px 12px;
    cursor: pointer;
  }

  .main-tab-bar .menu-card::after {
    content: "\203A";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    display: none;
  }

  .main-tab-bar .main-tab-btn.active.menu-card::after {
    display: block;
  }
}

.feed-auth-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.feed-password-input {
  width: 100%;
  max-width: 220px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 8px;
  outline: none;
}

.feed-password-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.feed-auth-error {
  font-size: 12px;
  color: var(--red);
  min-height: 18px;
  margin-top: 0px;
  font-weight: bold;
}


.feed-auth-info {
  font-size: 12px;
  color: white;
  min-height: 18px;
  padding-bottom: 10px;
}



/* HELLO BAR */

.hello-bar {
  width: 100%;
  background: linear-gradient(90deg, #001a2e, #002b45);
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.hello-bar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-wrap: wrap;

  font-size: 13px;
  color: var(--text);
}

.hello-bar-text strong {
  color: #ff4562;
}

.hello-bar-btn {
  padding: 4px 10px;
  border-radius: 4px;

  background: #ff4562;
  color: #001018;
  font-weight: 700;
  font-size: 12px;

  text-decoration: none;
  transition: .2s;
  color: white;
}

.hello-bar-btn:hover {
  background: #ff4562;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

/* MAP BRIEF (ABOVE REGIONAL OPERATIONS MAP) */
.map-brief {
  margin: 20px 0px 24px 0px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13, 21, 38, 0.85), rgba(7, 12, 24, 0.90));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.08);
}

.tlp-strip {
  background: rgba(255, 215, 0, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  text-align: center;
}

.brief-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 10px 14px;
}

.brief-title {
  font-size: 16px;
  font-weight: 800;
  color: #ff4562;
}

.brief-sub {
  margin-top: 2px;
  font-size: 11px;
  color: var(--text2);
}

.brief-right {
  text-align: right;
  min-width: 220px;
}

.brief-meta-label {
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.brief-meta-date {
  font-size: 14px;
  font-weight: 800;
  color: #ff4562;
  margin-top: 2px;
}

.brief-meta-sub {
  font-size: 10px;
  color: var(--text2);
  margin-top: 2px;
}

.brief-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 14px 12px 14px;
}

.kpi-chip {
  background: rgba(7, 12, 24, 0.55);
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-radius: 8px;
  padding: 10px 10px;
}

.kpi-label {
  font-size: 10px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.kpi-value {
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
}

.kpi-value.accent {
  color: var(--accent);
}

.kpi-value.critical {
  color: var(--red);
}

.exec-strip {
  margin: 0 14px 14px 14px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 51, 85, 0.30);
  background: rgba(255, 51, 85, 0.08);
  color: var(--text2);
  line-height: 1.55;
  font-size: 12px;
}

.exec-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-right: 6px;
}

/* Responsive */
@media screen and (max-width: 1100px) {
  .brief-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brief-right {
    min-width: 180px;
  }
}

@media screen and (max-width: 768px) {
  .brief-top {
    flex-direction: column;
  }

  .brief-right {
    text-align: left;
  }

  .brief-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* hide-on-scroll */

.hello-bar,
.header {
  transition: transform .25s ease, opacity .2s ease;
}

.hide-on-scroll {
  transform: translateY(-100%);
  opacity: 0;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ TAB ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â THREAT ACTOR INTELLIGENCE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ */

.ta-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ta-toggle-bar {
  display: flex;
  gap: 6px;
  background: rgba(7, 12, 24, 0.8);
  padding: 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
  width: fit-content;
}

.ta-toggle {
  padding: 7px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  background: transparent;
  color: var(--text2);
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ta-toggle:hover {
  color: var(--text);
}

.ta-toggle.iran.active {
  background: rgba(255, 51, 85, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 51, 85, 0.35);
}

.ta-toggle.israel.active {
  background: rgba(0, 212, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.ta-toggle.all.active {
  background: rgba(155, 89, 255, 0.12);
  color: var(--purple);
  border: 1px solid rgba(155, 89, 255, 0.3);
}

.ta-section-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 0 8px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}


.ta-card {
  background: rgba(7, 12, 24, 0.85);
  border-radius: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ta-card:hover {
  transform: translateY(-3px);
}

.ta-card.iran {
  border-left: 3px solid var(--red);
}

.ta-card.israel {
  border-left: 3px solid var(--accent);
}


.ta-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.ta-card-flag {
  font-size: 18px;
}

.ta-card-name {
  font-size: 12px;
  font-weight: 700;
  flex: 1;
}

.ta-card.iran .ta-card-name {
  color: var(--red);
}

.ta-card.israel .ta-card-name {
  color: var(--accent);
}

.ta-card-alias {
  font-size: 8px;
  color: var(--text2);
  margin-top: 1px;
}


.ta-cat-badge {
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.ta-cat-badge.apt {
  background: rgba(155, 89, 255, 0.15);
  color: var(--purple);
  border: 1px solid rgba(155, 89, 255, 0.35);
}

.ta-cat-badge.ransomware {
  background: rgba(255, 51, 85, 0.15);
  color: var(--red);
  border: 1px solid rgba(255, 51, 85, 0.35);
}

.ta-cat-badge.hacktivist {
  background: rgba(255, 140, 0, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.ta-desc {
  font-size: 10px;
  color: var(--text2);
  line-height: 1.45;
  margin-bottom: 6px;
}

.ta-targets-label {
  font-size: 8px;
  color: var(--text2);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}

.ta-targets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.ta-tgt {
  font-size: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
}



@media only screen and (min-width:992px) {
  .feed-cta-box {
    top: 45px;
    display: block;
    position: absolute;
    max-width: 525px;
  }


}

/* Actor Carousel Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.actor-carousel-track:hover {
  animation-play-state: paused !important;
}

.actor-chip {
  transition: all 0.2s ease;
  cursor: default;
}

.actor-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  filter: brightness(1.2);
}

/* PREMIUM CTI DASHBOARD CLASSES */
.cti-section {
  margin-bottom: 60px;
  position: relative;
  margin-top: 30px;
}

.cti-section-header {
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  position: relative;
}

.cti-section-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.cti-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.cti-subtitle {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
  opacity: 0.8;
}

.cti-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cti-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

.cti-card.threat {
  background: linear-gradient(135deg, rgba(255, 51, 85, 0.05), rgba(0, 0, 0, 0.2));
  border-color: rgba(255, 51, 85, 0.2);
}

.cti-card.threat:hover {
  border-color: rgba(255, 51, 85, 0.4);
  box-shadow: 0 8px 32px rgba(255, 51, 85, 0.1);
}

.cti-kpi-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}

/* ANIMATIONS */
@keyframes cti-pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 85, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 51, 85, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 85, 0);
  }
}

.pulse-red {
  animation: cti-pulse-red 2s infinite;
}

@keyframes cti-scanline {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.scanline-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.1;
  animation: cti-scanline 4s linear infinite;
  pointer-events: none;
}

.cti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* NAV SIDEBAR FOR DEEP-DIVE */
.cti-side-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  background: rgba(13, 21, 38, 0.8);
  backdrop-filter: blur(8px);
  padding: 12px;
  border-radius: 30px;
  border: 1px solid var(--border);
}

.cti-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text3);
  opacity: 0.5;
  transition: all 0.2s;
  cursor: pointer;
}

.cti-nav-dot:hover {
  opacity: 1;
  background: var(--accent);
  transform: scale(1.3);
}

.cti-nav-dot.active {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 10px var(--accent);
}

/* ADVANCED CTI POLISHING EXTENSIONS */
.cti-hex-bg {
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 20px 20px;
  position: relative;
}

.cti-hex-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(13, 21, 38, 0) 0%, rgba(13, 21, 38, 0.4) 100%);
  pointer-events: none;
}

.cti-campaign-card {
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
  padding: 16px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s;
}

.cti-campaign-card:hover {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  transform: translateX(4px);
}

.cti-campaign-status {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

.cti-terminal-note {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text2);
  padding: 16px;
  background: rgba(0, 212, 255, 0.03);
  border: 1px dashed rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  position: relative;
}

.cti-terminal-note::before {
  content: "INTEL_COMM_SECURE";
  position: absolute;
  top: -8px;
  left: 12px;
  background: #0d1526;
  padding: 0 6px;
  font-size: 8px;
  color: var(--accent);
  font-weight: 800;
}

.cti-chart-bar-glow {
  box-shadow: 0 0 15px var(--accent);
  position: relative;
}

.cti-chart-bar-glow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 10px #fff;
}

#grid-apt>div>a {
  text-decoration: none;
}
