/* Transmission pages */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  background: #050505;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.container {
  width: 100%;
  max-width: 640px;
  padding: clamp(32px, 6vw, 80px) clamp(20px, 5vw, 40px);
  position: relative;
  z-index: 1;
}

.trans-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(60px, 10vw, 120px);
}

.trans-nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.trans-nav a:hover {
  color: rgba(255,255,255,0.6);
}

.trans-nav .trans-id {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.1);
}

.trans-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.transmission-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
  text-align: left;
}

.transmission-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

/* Legacy index list styles */
.transmissions {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.transmission {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.transmission:hover {
  opacity: 1;
}

.trans-name {
  text-align: left;
  margin-right: 20px;
}

.trans-date {
  text-align: right;
  opacity: 0.5;
}
