/* ===================== BETRUTH (BeReal clone) ===================== */
#scene-betruth {
  background: #000;
  overflow: hidden;
}
.betruth-app {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #000; color: white;
  max-width: 430px; margin: 0 auto;
  position: relative;
}
.bt-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  position: relative; z-index: 10;
}
.bt-icon-btn {
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.bt-camera-area {
  flex: 1; position: relative;
  overflow: hidden; background: #111;
}
.bt-main-cam {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.bt-main-cam svg { position: absolute; inset: 0; }
.bt-photo-bg {
  width: 100%; height: 100%;
  overflow: hidden;
}
.bt-photo-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-cam-label {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  background: rgba(0,0,0,0.5);
  color: white; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.bt-selfie-overlay {
  position: absolute; bottom: 16px; right: 16px; z-index: 10;
  width: 90px; height: 90px;
  border-radius: 12px;
  border: 3px solid white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.bt-post-form {
  padding: 16px 20px 24px;
  background: #000;
  border-top: 1px solid #222;
}
.bt-post-scenario { margin-bottom: 14px; }
.bt-scenario-label {
  font-size: 12px; color: #888; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.bt-scenario-opts { display: flex; flex-direction: column; gap: 6px; }
.scenario-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #ccc; cursor: pointer;
  padding: 8px 12px; border-radius: 8px;
  transition: background 0.15s;
}
.scenario-opt:hover { background: rgba(255,255,255,0.06); }
.scenario-opt input { accent-color: white; }
.bt-caption {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px;
  color: white; font-size: 14px;
  line-height: 1.5;
  min-height: 80px;
  margin-bottom: 14px;
}
.bt-caption:focus { outline: none; border-color: rgba(255,255,255,0.4); }
.bt-post-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: white; color: black;
  font-size: 16px; font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  transition: all 0.2s;
}
.bt-post-btn:hover {
  background: #f0f0f0; transform: scale(1.02);
}
.bt-post-btn:active { transform: scale(0.98); }

/* ===================== PIXTAGRAM (Instagram clone) ===================== */
#scene-pixtagram {
  background: #fafafa;
  overflow: hidden;
}
.pixtagram-app {
  width: 100%; height: 100%;
  max-width: 470px; margin: 0 auto;
  background: #fff;
  display: flex; flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}
.px-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #dbdbdb;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
.px-back-btn {
  background: none; padding: 4px; border-radius: 50%;
  display: flex; align-items: center;
}
.px-icon-btn {
  background: none; padding: 4px;
  display: flex; align-items: center;
}
.px-new-post { padding: 16px; }
.px-new-post-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.px-new-avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.px-new-info { display: flex; flex-direction: column; }
.px-new-info strong { font-size: 14px; font-weight: 700; color: #262626; }
.px-new-info span { font-size: 12px; color: #8e8e8e; }
.px-photo-area {
  margin-bottom: 16px; position: relative;
}
.px-photo-frame {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 4px; overflow: hidden;
  position: relative; background: #f0f0f0;
}
.px-photo-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.5); color: white;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.px-scenario-select {
  margin-bottom: 12px;
}
.px-scenario-select p { font-size: 13px; color: #8e8e8e; margin-bottom: 6px; }
.px-scenario-select select {
  width: 100%; padding: 8px 12px;
  border: 1px solid #dbdbdb; border-radius: 8px;
  background: #fafafa; color: #262626;
  font-size: 14px; cursor: pointer;
}
.px-caption {
  width: 100%; min-height: 80px;
  border: none; outline: none;
  font-size: 14px; color: #262626;
  line-height: 1.6;
  background: transparent;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 12px; margin-bottom: 12px;
}
.px-tags {
  margin-bottom: 16px;
}
.px-tag-input {
  width: 100%; border: none; outline: none;
  font-size: 14px; color: #0095f6;
  background: transparent;
  padding: 6px 0;
}
.px-share-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #0095f6; color: white;
  font-size: 15px; font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.px-share-btn:hover { background: #0081d6; }
.px-share-btn:active { transform: scale(0.98); }

/* ===================== XCROSS (X/Twitter clone) ===================== */
#scene-xcross {
  background: #000;
  overflow: hidden;
}
.xcross-app {
  width: 100%; height: 100%;
  display: flex;
  max-width: 1280px; margin: 0 auto;
}
.xc-sidebar {
  width: 88px;
  padding: 12px 8px;
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid #2f3336;
  gap: 4px;
}
@media (min-width: 1024px) {
  .xc-sidebar { width: 260px; align-items: flex-start; padding: 12px 16px; }
}
.xc-logo {
  padding: 12px;
  border-radius: 50%;
  transition: background 0.15s;
  cursor: pointer;
}
.xc-logo:hover { background: rgba(255,255,255,0.1); }
.xc-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; width: 100%; }
.xc-nav-item {
  display: flex; align-items: center; gap: 18px;
  padding: 12px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 19px; font-weight: 400;
  color: #e7e9ea;
  transition: background 0.15s;
  white-space: nowrap;
}
.xc-nav-item:hover { background: rgba(255,255,255,0.1); }
.xc-nav-item.active { font-weight: 700; }
.xc-nav-item span { display: none; }
@media (min-width: 1024px) { .xc-nav-item span { display: inline; } }
.xc-post-btn-side {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: white; color: black;
  font-size: 15px; font-weight: 700;
  padding: 14px;
  border-radius: 50px;
  width: 50px; height: 50px;
  transition: all 0.2s;
}
@media (min-width: 1024px) { .xc-post-btn-side { width: 100%; height: auto; } }
.xc-post-btn-side:hover { background: #e6e6e6; }
.xc-post-btn-side span { display: none; }
@media (min-width: 1024px) { .xc-post-btn-side span { display: inline; } }
.xc-main {
  flex: 1; display: flex; flex-direction: column;
  border-right: 1px solid #2f3336;
  overflow-y: auto; max-width: 600px;
}
.xc-compose-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; font-size: 20px; font-weight: 700;
  border-bottom: 1px solid #2f3336;
  position: sticky; top: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px); z-index: 10;
}
.xc-close-btn {
  background: none; padding: 8px; border-radius: 50%;
  transition: background 0.15s;
}
.xc-close-btn:hover { background: rgba(255,255,255,0.1); }
.xc-compose-area {
  display: flex; gap: 12px; padding: 16px;
  border-bottom: 1px solid #2f3336;
}
.xc-compose-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.xc-compose-content { flex: 1; min-width: 0; }
.xc-compose-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.xc-scenario-select { margin-bottom: 8px; }
.xc-scenario-select select {
  background: transparent; color: #1D9BF0;
  border: 1px solid #1D9BF0; border-radius: 20px;
  padding: 4px 12px; font-size: 13px; cursor: pointer;
  font-weight: 600;
}
.xc-scenario-select select option { background: #000; color: white; }
.xc-compose-textarea {
  width: 100%; min-height: 120px;
  background: transparent; border: none; outline: none;
  color: #e7e9ea; font-size: 20px;
  line-height: 1.5; resize: none;
  font-family: inherit;
}
.xc-compose-textarea::placeholder { color: #555; }
.xc-compose-footer {
  display: flex; align-items: center; gap: 8px;
  padding-top: 12px; border-top: 1px solid #2f3336;
  margin-top: 8px;
}
.xc-compose-tools { display: flex; gap: 4px; flex: 1; }
.xc-tool-btn {
  background: none; padding: 8px; border-radius: 50%;
  transition: background 0.15s;
}
.xc-tool-btn:hover { background: rgba(29,155,240,0.1); }
.xc-char-count {
  font-size: 15px; color: #1D9BF0;
  font-variant-numeric: tabular-nums;
}
.xc-submit-btn {
  background: #1D9BF0; color: white;
  font-size: 15px; font-weight: 700;
  padding: 8px 20px; border-radius: 50px;
  transition: background 0.15s;
}
.xc-submit-btn:hover { background: #1a8cd8; }
.xc-trending-sidebar {
  width: 350px; padding: 16px;
  display: none;
}
@media (min-width: 1280px) { .xc-trending-sidebar { display: block; } }
.xc-trending-box {
  background: #16181c; border-radius: 16px; padding: 16px;
}
.xc-trending-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.xc-trend-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 0; border-bottom: 1px solid #2f3336; cursor: pointer;
}
.xc-trend-item:last-child { border-bottom: none; }
.xc-trend-cat { font-size: 13px; color: #8b98a5; }
.xc-trend-item strong { font-size: 15px; }
.xc-trend-item span { font-size: 13px; color: #8b98a5; }

/* ===================== FLAME SCENE: POST DISPLAY ===================== */
/* BeTruth Post */
.flame-post-betruth {
  background: #000; border-radius: 12px; overflow: hidden;
  border: 1px solid #222; color: white;
}
.fp-bt-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
}
.fp-bt-avatar {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
}
.fp-bt-name { font-size: 14px; font-weight: 700; }
.fp-bt-time { font-size: 12px; color: #888; }
.fp-bt-cams {
  display: flex; gap: 3px;
  aspect-ratio: 4/3;
}
.fp-bt-cam-main, .fp-bt-cam-self {
  background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.fp-bt-cam-main { flex: 2; }
.fp-bt-cam-self { flex: 1; }
.fp-bt-caption { padding: 12px 14px; font-size: 14px; line-height: 1.4; }
.fp-bt-actions {
  display: flex; gap: 16px;
  padding: 8px 14px 14px;
}
.fp-bt-action {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: #888;
}

/* Pixtagram Post */
.flame-post-pixtagram {
  background: #fff; border-radius: 0; color: #262626;
  border: 1px solid #dbdbdb; border-radius: 8px; overflow: hidden;
}
.fp-px-header {
  display: flex; align-items: center; padding: 10px 12px; gap: 10px;
}
.fp-px-avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; }
.fp-px-name { font-size: 14px; font-weight: 700; color: #262626; flex: 1; }
.fp-px-more { color: #8e8e8e; font-size: 18px; }
.fp-px-image {
  width: 100%; aspect-ratio: 1;
  background: #f0f0f0;
}
.fp-px-actions {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px 6px;
}
.fp-px-action { display: flex; align-items: center; gap: 4px; color: #262626; }
.fp-px-bookmark { margin-left: auto; }
.fp-px-likes { padding: 0 12px 4px; font-size: 14px; font-weight: 700; color: #262626; }
.fp-px-caption { padding: 0 12px 4px; font-size: 14px; color: #262626; }
.fp-px-caption span { font-weight: 700; margin-right: 6px; }
.fp-px-comments { padding: 0 12px 12px; font-size: 14px; color: #8e8e8e; }
.fp-px-time { padding: 0 12px 12px; font-size: 11px; color: #c7c7c7; text-transform: uppercase; letter-spacing: 0.3px; }

/* Xcross Post */
.flame-post-xcross {
  background: #000; color: #e7e9ea;
  border: 1px solid #2f3336; border-radius: 12px; overflow: hidden;
}
.fp-xc-header {
  display: flex; gap: 12px; padding: 12px 14px 6px;
}
.fp-xc-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.fp-xc-info { flex: 1; }
.fp-xc-name { font-size: 15px; font-weight: 700; }
.fp-xc-handle { font-size: 15px; color: #8b98a5; }
.fp-xc-time { font-size: 15px; color: #8b98a5; }
.fp-xc-body { padding: 6px 14px 12px; font-size: 17px; line-height: 1.5; }
.fp-xc-actions {
  display: flex; justify-content: space-between;
  padding: 8px 14px 14px; border-top: 1px solid #2f3336;
}
.fp-xc-action {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: #8b98a5;
}
.fp-xc-action svg { transition: transform 0.15s; }

/* ===================== NEWS ITEMS ===================== */
/* Gahoo News */
.news-item-gahoo {
  background: #1a1a1a; border-radius: 10px; overflow: hidden;
  border: 1px solid #2a2a2a;
  animation: slideInRight 0.4s ease-out;
}
.gahoo-header {
  background: #e60026; padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
}
.gahoo-logo-text {
  font-size: 16px; font-weight: 900; color: white;
  letter-spacing: -0.5px;
}
.gahoo-breaking {
  background: white; color: #e60026;
  font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 3px;
}
.gahoo-article { padding: 12px 14px; }
.gahoo-article-img {
  width: 100%; height: 160px; object-fit: cover; display: block;
  margin-bottom: 10px; border-radius: 4px;
}
.gahoo-title { font-size: 15px; font-weight: 700; color: #e0e0e0; margin-bottom: 6px; line-height: 1.4; }
.gahoo-meta { font-size: 12px; color: #888; margin-bottom: 10px; }
.gahoo-body { font-size: 13px; color: #aaa; line-height: 1.6; }
.gahoo-reactions {
  display: flex; gap: 8px; padding: 10px 14px;
  border-top: 1px solid #2a2a2a; flex-wrap: wrap;
}
.gahoo-reaction {
  font-size: 12px; background: #222; padding: 4px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 4px;
}

/* なんGまとめ */
.news-item-nang {
  background: #fff; color: #333; border-radius: 8px; overflow: hidden;
  border: 1px solid #ddd;
  animation: slideInRight 0.4s ease-out;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Meiryo', sans-serif;
}
.nang-header {
  background: #2d5f8a; padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
}
.nang-logo { color: white; font-size: 14px; font-weight: 700; }
.nang-new-badge { background: #ff4500; color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }
.nang-article { padding: 12px; }
.nang-title {
  font-size: 15px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 10px; line-height: 1.5;
}
.nang-thread { font-size: 13px; line-height: 1.7; }
.nang-comment {
  padding: 6px 0; border-bottom: 1px solid #f0f0f0;
  display: flex; gap: 8px;
}
.nang-num { color: #2d5f8a; font-weight: 600; flex-shrink: 0; }
.nang-id { color: #999; font-size: 11px; flex-shrink: 0; }
.nang-text { color: #333; }
.nang-meta { padding: 8px 12px; font-size: 11px; color: #999; border-top: 1px solid #eee; }

/* Xcross Trend */
.news-item-xtrend {
  background: #16181c; border-radius: 10px; overflow: hidden;
  border: 1px solid #2f3336; color: white;
  animation: slideInRight 0.4s ease-out;
}
.xtrend-header {
  padding: 10px 14px; border-bottom: 1px solid #2f3336;
  display: flex; align-items: center; gap: 8px;
}
.xtrend-logo svg { display: block; }
.xtrend-label { font-size: 15px; font-weight: 700; }
.xtrend-item {
  padding: 12px 14px; border-bottom: 1px solid #2f3336;
}
.xtrend-rank { font-size: 13px; color: #8b98a5; margin-bottom: 2px; }
.xtrend-tag { font-size: 18px; font-weight: 700; }
.xtrend-count { font-size: 13px; color: #8b98a5; margin-top: 2px; }

/* ===================== WORKPLACE NOTIFICATIONS ===================== */
/* Slick (Slack clone) */
.wp-item-slick {
  background: #1a1d21; border-radius: 10px; overflow: hidden;
  border: 1px solid #2c2f33;
  animation: slideInRight 0.4s ease-out;
}
.slick-titlebar {
  background: #3f0e40; padding: 8px 14px;
  display: flex; align-items: center; gap: 10px;
}
.slick-logo {
  width: 24px; height: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.slick-logo-block { border-radius: 3px; }
.slick-workspace { color: white; font-size: 14px; font-weight: 700; }
.slick-workspace-status { color: rgba(255,255,255,0.5); font-size: 12px; }
.slick-body { display: flex; }
.slick-sidebar {
  width: 60px; background: #2c0d2d; padding: 12px 6px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.slick-channel {
  font-size: 12px; color: rgba(255,255,255,0.4);
  padding: 4px 6px; border-radius: 4px; cursor: pointer;
  width: 100%; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.slick-channel.active { background: rgba(255,255,255,0.15); color: white; }
.slick-chat {
  flex: 1; padding: 12px;
}
.slick-channel-header {
  font-size: 14px; font-weight: 700; color: white;
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.slick-channel-header span { color: #aaa; font-weight: 400; }
.slick-messages { display: flex; flex-direction: column; gap: 10px; }
.slick-msg {
  display: flex; gap: 10px;
}
.slick-msg-avatar {
  width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0; overflow: hidden;
}
.slick-msg-content { flex: 1; }
.slick-msg-header { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.slick-msg-name { font-size: 14px; font-weight: 700; color: white; }
.slick-msg-time { font-size: 11px; color: #888; }
.slick-msg-text { font-size: 14px; color: #d1d2d3; line-height: 1.5; }

/* Meems (Teams clone) */
.wp-item-meems {
  background: #201f1f; border-radius: 10px; overflow: hidden;
  border: 1px solid #292929;
  animation: slideInRight 0.4s ease-out;
}
.meems-titlebar {
  background: #464775; padding: 8px 14px;
  display: flex; align-items: center; gap: 10px;
}
.meems-logo {
  width: 24px; height: 24px;
}
.meems-workspace { color: white; font-size: 14px; font-weight: 600; }
.meems-body { display: flex; }
.meems-sidebar {
  width: 60px; background: #3b3a5c; padding: 12px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.meems-sidebar-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.meems-sidebar-icon.active { background: rgba(255,255,255,0.2); }
.meems-main { flex: 1; }
.meems-channel-header {
  padding: 10px 14px; border-bottom: 1px solid #333;
  font-size: 14px; font-weight: 600; color: white;
}
.meems-messages { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.meems-msg { display: flex; gap: 10px; }
.meems-msg-avatar { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; overflow: hidden; }
.meems-msg-content { flex: 1; }
.meems-msg-header { display: flex; gap: 8px; align-items: baseline; margin-bottom: 2px; }
.meems-msg-name { font-size: 14px; font-weight: 600; color: white; }
.meems-msg-time { font-size: 11px; color: #888; }
.meems-msg-text { font-size: 14px; color: #c8c8c8; line-height: 1.5; }

/* Outbok (Outlook clone) */
.wp-item-outbok {
  background: #fff; color: #333; border-radius: 10px; overflow: hidden;
  border: 1px solid #ddd;
  animation: slideInRight 0.4s ease-out;
}
.outbok-ribbon {
  background: #0072c6; padding: 8px 14px;
  display: flex; align-items: center; gap: 10px;
}
.outbok-logo { display: flex; align-items: center; gap: 8px; }
.outbok-logo-text { color: white; font-size: 15px; font-weight: 600; }
.outbok-body { display: flex; }
.outbok-folder-tree {
  width: 70px; background: #f3f3f3; border-right: 1px solid #ddd;
  padding: 10px 6px;
}
.outbok-folder {
  font-size: 11px; color: #666; padding: 4px 6px; border-radius: 4px;
  cursor: pointer;
}
.outbok-folder.active { background: #deecf9; color: #0072c6; font-weight: 600; }
.outbok-email-list { width: 120px; border-right: 1px solid #ddd; overflow: hidden; }
.outbok-email-item {
  padding: 8px 10px; border-bottom: 1px solid #f0f0f0; cursor: pointer;
}
.outbok-email-item.unread { background: #f8f9fa; }
.outbok-email-from { font-size: 12px; font-weight: 600; color: #333; }
.outbok-email-subject { font-size: 11px; color: #666; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.outbok-email-time { font-size: 10px; color: #999; }
.outbok-email-content { flex: 1; padding: 12px; }
.outbok-email-header-full { margin-bottom: 12px; }
.outbok-email-to { font-size: 12px; color: #666; margin-bottom: 2px; }
.outbok-email-sub-full { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 8px; }
.outbok-email-body { font-size: 13px; color: #333; line-height: 1.8; }

/* TV News Alert */
.news-item-tv {
  background: #0a0a0a; border-radius: 6px; overflow: hidden;
  border: 1px solid #1a1a1a;
  animation: slideInRight 0.35s ease-out;
}
.tv-alert-bar {
  display: flex; align-items: center; gap: 8px;
  background: #cc0000; padding: 7px 12px;
}
.tv-logo {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; color: white;
  letter-spacing: 0.5px;
}
.tv-breaking {
  background: white; color: #cc0000;
  font-size: 10px; font-weight: 900;
  padding: 1px 6px; border-radius: 2px;
  letter-spacing: 0.5px;
}
.tv-source {
  font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 600;
  margin-left: auto;
}
.tv-screen-area { position: relative; }
.tv-article-img {
  width: 100%; height: 130px; object-fit: cover; display: block;
  opacity: 0.88;
}
.tv-text {
  padding: 12px 14px;
  font-size: 13px; color: #ddd; line-height: 1.65;
  font-weight: 500;
}
