/* ============================================================
   contact.css — Page-specific styles for contact.html
   Sithean.Space — "OPEN CHANNEL / TRANSMISSION" theme
============================================================ */

/* ============================================================
   TRANSMISSION HEADER BLOCK
============================================================ */
.txHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #330044;
  border-left: 4px solid #7a00aa;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.txHeader::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to left, rgba(122,0,170,0.1), transparent);
  pointer-events: none;
}

.txHeaderLeft {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.txHeaderLabel {
  font-size: 9px;
  letter-spacing: 3px;
  color: #5544aa;
  text-transform: uppercase;
}

.txHeaderTitle {
  font-size: 14px;
  color: #d4c8ff;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #aa66ff;
}

/* ============================================================
   CHANNEL STATUS INDICATOR
============================================================ */
.channelStatus {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #33ff88;
}

.channelDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #33ff88;
  flex-shrink: 0;
  animation: channelPulse 1.8s ease-in-out infinite;
}

@keyframes channelPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(51, 255, 136, 0.8);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px rgba(51, 255, 136, 0);
    opacity: 0.75;
  }
}

/* ============================================================
   SIGNAL STRENGTH BAR
============================================================ */
.signalRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #1e0030;
  font-size: 10px;
  color: #4a3a66;
  letter-spacing: 1.5px;
}

.signalLabel {
  color: #5544aa;
  letter-spacing: 2px;
  white-space: nowrap;
}

.signalBars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.signalBar {
  width: 5px;
  background: #7a00aa;
  border-radius: 1px;
  transition: background 0.3s;
}

.signalBar:nth-child(1) { height: 4px;  background: #33ff88; }
.signalBar:nth-child(2) { height: 7px;  background: #33ff88; }
.signalBar:nth-child(3) { height: 10px; background: #33ff88; }
.signalBar:nth-child(4) { height: 13px; background: #33ff88; }
.signalBar:nth-child(5) { height: 16px; background: #33ff88; }

.signalText {
  color: #33ff88;
  letter-spacing: 1px;
}

.signalPing {
  margin-left: auto;
  color: #3a2a55;
  letter-spacing: 1px;
}

.signalPingVal {
  color: #33ff88;
}

/* ============================================================
   CONTACT CARDS
============================================================ */
.contactCard {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #440066;
  border-left: 4px solid #7a00aa;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.contactCard::before {
  content: attr(data-proto);
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 2px;
  color: #2a0040;
  text-transform: uppercase;
}

.contactCard:hover {
  border-color: #cc00ff;
  box-shadow: 0 0 18px rgba(180, 0, 255, 0.28);
  background: rgba(40, 0, 60, 0.45);
  color: inherit;
}

/* Icon column */
.cIcon {
  font-size: 30px;
  min-width: 44px;
  text-align: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(120, 0, 200, 0.4));
}

/* Info column */
.cInfo {
  flex: 1;
}

.cInfo h3 {
  color: #d4c8ff;
  font-size: 13px;
  margin: 0 0 2px 0;
  letter-spacing: 1.5px;
  border: none;
  padding: 0;
}

.cHandle {
  font-size: 12px;
  color: #7a00aa;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.cInfo p {
  font-size: 11px;
  color: #7766aa;
  margin: 0;
  line-height: 1.6;
}

/* Arrow column */
.cArrow {
  margin-left: auto;
  color: #5500aa;
  font-size: 18px;
  flex-shrink: 0;
  transition: color 0.2s, text-shadow 0.2s, transform 0.2s;
}

.contactCard:hover .cArrow {
  color: #ff66ff;
  text-shadow: 0 0 8px #ff66ff;
  transform: translateX(3px);
}

/* ============================================================
   NOTE BOX
============================================================ */
.noteBox {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed #330044;
  padding: 14px 18px;
  font-size: 12px;
  color: #6655aa;
  margin-top: 18px;
  line-height: 1.75;
  position: relative;
}

.noteBox::before {
  content: 'SYS.NOTE';
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #440066;
  margin-bottom: 8px;
}

/* ============================================================
   TRANSMISSION FOOTER LINE
============================================================ */
.txFooter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 0;
  border-top: 1px solid #1e0030;
  font-size: 10px;
  color: #3a2a55;
  letter-spacing: 1.5px;
}

.txFooterDivider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #1e0030, transparent);
}
