/* YouTube Channel Showcase & Analytics Styles */

.yt-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px dashed var(--border);
}

.yt-profile-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .yt-profile-card {
    flex-direction: row;
    align-items: center;
  }
}

.yt-profile-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.yt-profile-avatar-container {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  margin: 0 auto;
}

.yt-profile-avatar-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 3px;
  background: var(--accent, #22c55e);
  clip-path: polygon(
    28% 0%, 72% 0%,
    72% 4%, 82% 4%, 82% 8%, 90% 8%, 90% 16%, 96% 16%, 96% 28%, 100% 28%,
    100% 72%, 96% 72%, 96% 84%, 90% 84%, 90% 92%, 82% 92%, 82% 96%, 72% 96%,
    72% 100%, 28% 100%,
    28% 96%, 18% 96%, 18% 92%, 10% 92%, 10% 84%, 4% 84%, 4% 72%, 0% 72%,
    0% 28%, 4% 28%, 4% 16%, 10% 16%, 10% 8%, 18% 8%, 18% 4%, 28% 4%
  );
  filter: drop-shadow(0 0 14px rgba(34, 197, 94, 0.45));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.yt-profile-avatar-wrap:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.65));
}

.yt-profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  object-fit: cover;
  display: block;
  clip-path: polygon(
    28% 0%, 72% 0%,
    72% 4%, 82% 4%, 82% 8%, 90% 8%, 90% 16%, 96% 16%, 96% 28%, 100% 28%,
    100% 72%, 96% 72%, 96% 84%, 90% 84%, 90% 92%, 82% 92%, 82% 96%, 72% 96%,
    72% 100%, 28% 100%,
    28% 96%, 18% 96%, 18% 92%, 10% 92%, 10% 84%, 4% 84%, 4% 72%, 0% 72%,
    0% 28%, 4% 28%, 4% 16%, 10% 16%, 10% 8%, 18% 8%, 18% 4%, 28% 4%
  );
}

.yt-live-indicator {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #cc0000;
  color: #fff;
  font-size: 0.48rem;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-weight: bold;
  font-family: var(--font-pixel, monospace);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  z-index: 10;
}

.yt-profile-details {
  flex-grow: 1;
}

.yt-profile-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.yt-profile-name {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 0;
}

.yt-profile-handle {
  font-size: 0.6rem;
  color: #ff4444;
  font-family: var(--font-mono);
}

.yt-profile-desc {
  font-size: 0.58rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.yt-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 255, 65, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  padding: 2px 6px;
  border-radius: 2px;
}

.yt-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.yt-profile-actions .btn {
  width: auto !important;
  padding: 0.6rem 1.2rem !important;
  font-family: var(--font-pixel);
  font-size: 0.6rem !important;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.btn-youtube {
  background: #cc0000 !important;
  color: #fff !important;
  border: 1px solid #ff0000 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-youtube:hover {
  background: #ff0000 !important;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  color: #fff !important;
}

.btn-yt-sub {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.btn-yt-sub:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #fff !important;
}

.btn-yt-channel {
  background: transparent !important;
  color: var(--text-secondary) !important;
  border: 1px dashed var(--border) !important;
}

.btn-yt-channel:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* Standby & Live Status Banners */
#youtube-live-status-section {
  margin-bottom: 2rem;
}

.yt-live-standby-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 255, 65, 0.3);
  padding: 1rem 1.2rem;
  box-shadow: inset 0 0 15px rgba(0, 255, 65, 0.03);
}

.yt-live-standby-info {
  flex: 1;
  min-width: 260px;
}

.yt-live-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.4rem;
}

.yt-live-idle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.yt-live-status-title {
  font-family: var(--font-pixel);
  font-size: 0.68rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.yt-live-status-badge {
  font-size: 0.5rem;
  padding: 1px 6px;
  background: rgba(0, 255, 65, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-mono);
}

.yt-live-standby-desc {
  font-size: 0.58rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.btn-live-direct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #cc0000 !important;
  color: #fff !important;
  border: 1px solid #ff0033 !important;
  padding: 0.6rem 1.2rem !important;
  font-family: var(--font-pixel);
  font-size: 0.6rem !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-live-direct:hover {
  background: #ff0033 !important;
  box-shadow: 0 0 15px rgba(255, 0, 51, 0.6);
  color: #fff !important;
}

.yt-pulse-btn {
  animation: pulseButton 1.5s infinite alternate;
}

@keyframes pulseButton {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 0, 51, 0.4); }
  100% { transform: scale(1.02); box-shadow: 0 0 20px rgba(255, 0, 51, 0.8); }
}

.yt-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .yt-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yt-stat-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.yt-stat-box:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.yt-stat-number {
  font-size: 0.85rem;
  color: var(--accent-bright);
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.yt-stat-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.yt-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .yt-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .yt-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Clickable Stream Card Component */
.yt-video-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.yt-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 255, 65, 0.15), 0 0 15px rgba(0, 0, 0, 0.8);
}

.yt-video-thumb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.yt-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yt-video-card:hover .yt-video-thumb {
  transform: scale(1.06);
}

.yt-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.52rem;
  padding: 2px 6px;
  border-radius: 2px;
  font-family: var(--font-mono);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.yt-video-stream-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(204, 0, 0, 0.9);
  color: #fff;
  font-size: 0.48rem;
  padding: 2px 6px;
  font-family: var(--font-pixel);
  letter-spacing: 0.05em;
  border-radius: 2px;
  z-index: 2;
}

.yt-video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #fff;
  z-index: 3;
}

.yt-video-play-circle {
  width: 44px;
  height: 44px;
  padding: 2px;
  background: var(--accent, #22c55e);
  clip-path: polygon(
    28% 0%, 72% 0%,
    72% 4%, 82% 4%, 82% 8%, 90% 8%, 90% 16%, 96% 16%, 96% 28%, 100% 28%,
    100% 72%, 96% 72%, 96% 84%, 90% 84%, 90% 92%, 82% 92%, 82% 96%, 72% 96%,
    72% 100%, 28% 100%,
    28% 96%, 18% 96%, 18% 92%, 10% 92%, 10% 84%, 4% 84%, 4% 72%, 0% 72%,
    0% 28%, 4% 28%, 4% 16%, 10% 16%, 10% 8%, 18% 8%, 18% 4%, 28% 4%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.45));
}

.yt-video-play-inner {
  width: 100%;
  height: 100%;
  background: rgba(204, 0, 0, 0.95);
  clip-path: polygon(
    28% 0%, 72% 0%,
    72% 4%, 82% 4%, 82% 8%, 90% 8%, 90% 16%, 96% 16%, 96% 28%, 100% 28%,
    100% 72%, 96% 72%, 96% 84%, 90% 84%, 90% 92%, 82% 92%, 82% 96%, 72% 96%,
    72% 100%, 28% 100%,
    28% 96%, 18% 96%, 18% 92%, 10% 92%, 10% 84%, 4% 84%, 4% 72%, 0% 72%,
    0% 28%, 4% 28%, 4% 16%, 10% 16%, 10% 8%, 18% 8%, 18% 4%, 28% 4%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.yt-video-card:hover .yt-video-play-overlay {
  opacity: 1;
}

.yt-video-card:hover .yt-video-play-circle {
  transform: scale(1.1);
  filter: drop-shadow(0 0 16px rgba(34, 197, 94, 0.7));
}

.yt-video-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.yt-video-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.yt-stream-creator {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.yt-stream-avatar-wrap {
  width: 26px;
  height: 26px;
  padding: 2px;
  background: var(--accent, #22c55e);
  flex-shrink: 0;
  clip-path: polygon(
    28% 0%, 72% 0%,
    72% 4%, 82% 4%, 82% 8%, 90% 8%, 90% 16%, 96% 16%, 96% 28%, 100% 28%,
    100% 72%, 96% 72%, 96% 84%, 90% 84%, 90% 92%, 82% 92%, 82% 96%, 72% 96%,
    72% 100%, 28% 100%,
    28% 96%, 18% 96%, 18% 92%, 10% 92%, 10% 84%, 4% 84%, 4% 72%, 0% 72%,
    0% 28%, 4% 28%, 4% 16%, 10% 16%, 10% 8%, 18% 8%, 18% 4%, 28% 4%
  );
  filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.4));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.yt-video-card:hover .yt-stream-avatar-wrap {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
}

.yt-stream-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  object-fit: cover;
  display: block;
  clip-path: polygon(
    28% 0%, 72% 0%,
    72% 4%, 82% 4%, 82% 8%, 90% 8%, 90% 16%, 96% 16%, 96% 28%, 100% 28%,
    100% 72%, 96% 72%, 96% 84%, 90% 84%, 90% 92%, 82% 92%, 82% 96%, 72% 96%,
    72% 100%, 28% 100%,
    28% 96%, 18% 96%, 18% 92%, 10% 92%, 10% 84%, 4% 84%, 4% 72%, 0% 72%,
    0% 28%, 4% 28%, 4% 16%, 10% 16%, 10% 8%, 18% 8%, 18% 4%, 28% 4%
  );
}

.yt-stream-creator-name {
  font-family: var(--font-pixel, monospace);
  font-size: 0.56rem;
  color: var(--text-secondary, #9ca3af);
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yt-video-tag-pill {
  font-size: 0.48rem;
  font-family: var(--font-pixel);
  color: var(--accent);
  background: rgba(0, 255, 65, 0.1);
  padding: 2px 6px;
  border: 1px solid rgba(0, 255, 65, 0.3);
}

.yt-video-views {
  font-size: 0.52rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.yt-video-title {
  font-size: 0.72rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-family: var(--font-pixel);
  transition: color 0.2s ease;
}

.yt-video-card:hover .yt-video-title {
  color: var(--accent-bright);
}

.yt-video-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.52rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
}

.yt-video-desc {
  font-size: 0.56rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.yt-video-actions {
  margin-top: auto;
}

.yt-video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: var(--font-pixel);
  font-size: 0.58rem;
  color: var(--accent);
  background: rgba(0, 255, 65, 0.08);
  border: 1px solid var(--accent);
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
  text-align: center;
}

.yt-video-card:hover .yt-video-btn {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

/* Live Stream Spotlight & Pulsing Indicators */
.yt-live-spotlight {
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 2px solid #ff0033;
  box-shadow: 0 0 25px rgba(255, 0, 51, 0.35);
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  animation: borderGlowRed 2.5s infinite alternate;
}

@keyframes borderGlowRed {
  0% { border-color: #ff0033; box-shadow: 0 0 15px rgba(255, 0, 51, 0.25); }
  100% { border-color: #ff4444; box-shadow: 0 0 35px rgba(255, 0, 51, 0.6); }
}

.yt-live-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0033;
  color: #fff;
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  padding: 4px 10px;
  letter-spacing: 0.08em;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pulse-dot-red {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulseDot 1s infinite alternate;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.yt-live-hero-alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 0, 51, 0.12);
  border: 2px solid #ff0033;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}

.yt-live-hero-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  color: #fff;
}

.pulse-live-badge {
  display: inline-block;
  background: #ff0033;
  color: #fff;
  font-size: 0.45rem;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
  animation: pulseDot 1s infinite alternate;
}

/* Tab Switcher for Social Page */
.social-hub-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.social-hub-tab {
  padding: 0.5rem 1rem;
  font-size: 0.6rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.social-hub-tab:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.social-hub-tab.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-bright);
}

/* Identity Overview Extended Sections */
.identity-overview-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px dashed var(--border);
}

.section-heading-block {
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.section-main-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.section-lead-text {
  font-size: 0.65rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 900px;
}

.architecture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 850px) {
  .architecture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arch-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.arch-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.arch-card-header {
  margin-bottom: 1rem;
}

.arch-tag {
  display: inline-block;
  font-size: 0.48rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.arch-card h3 {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.arch-card-body {
  font-size: 0.58rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.arch-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-pill {
  font-size: 0.48rem;
  padding: 3px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font-mono);
}

/* Identity Overview Clean Architecture Styles */
.arch-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.arch-card-list li {
  font-size: 0.58rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  padding-left: 14px;
  font-family: var(--font-mono);
}

.arch-card-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Utilities replacing inline styles */
.pos-relative {
  position: relative !important;
}

.progress-init-0 {
  width: 0% !important;
}

.cmd-meta-text {
  font-family: var(--font-mono) !important;
  font-size: 0.6rem !important;
  color: var(--text-muted) !important;
}

.sort-heading {
  margin-top: 2rem !important;
}

.link-accent {
  color: var(--accent) !important;
  text-decoration: underline !important;
}

.client-loading-state {
  grid-column: 1 / -1 !important;
  padding: 2.5rem !important;
  text-align: center !important;
  font-family: var(--font-pixel) !important;
  font-size: 0.6rem !important;
  color: var(--text-muted) !important;
  border: 2px dashed var(--border) !important;
}

.client-loading-failed {
  grid-column: 1 / -1 !important;
  padding: 2.5rem !important;
  text-align: center !important;
  font-family: var(--font-pixel) !important;
  font-size: 0.6rem !important;
  color: var(--danger) !important;
  border: 2px dashed var(--danger) !important;
}

.social-load-more-container {
  text-align: center !important;
  margin-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.d-none {
  display: none !important;
}

.chatbot-quick-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  padding: 0.8rem 1rem !important;
  border-top: 2px dashed var(--border) !important;
}

.quick-action-btn {
  font-family: var(--font-pixel) !important;
  font-size: 0.5rem !important;
  padding: 0.5rem 0.7rem !important;
  background: var(--bg-secondary) !important;
  border: 2px solid var(--border) !important;
  color: var(--accent) !important;
  cursor: pointer !important;
  transition: all 0.1s !important;
  line-height: 1.8 !important;
}

.quick-action-btn:hover {
  background: var(--accent-glow) !important;
  border-color: var(--accent) !important;
}

.gitlab-loading {
  color: var(--accent) !important;
}

/* Language Badges */
.lang-color {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}
.lang-color.lang-python { background-color: #3776ab; }
.lang-color.lang-javascript { background-color: #f1e05a; }
.lang-color.lang-typescript { background-color: #2b7489; }
.lang-color.lang-html { background-color: #e34c26; }
.lang-color.lang-css { background-color: #563d7c; }
.lang-color.lang-java { background-color: #b07219; }
.lang-color.lang-c { background-color: #555555; }
.lang-color.lang-cpp { background-color: #f34b7d; }
.lang-color.lang-go { background-color: #00add8; }
.lang-color.lang-rust { background-color: #dea584; }
.lang-color.lang-ruby { background-color: #701516; }
.lang-color.lang-php { background-color: #4f5d95; }
.lang-color.lang-shell { background-color: #89e051; }
