body {
  font-family: 'MS Gothic', monospace;
  background-color: #000022;
  color: #00ffcc;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-image: repeating-linear-gradient(
    0deg, #000022, #000022 1px,
    #000020 1px, #000020 2px
  );
  filter: contrast(1.2) brightness(1.1);
}

nav {
  background: #111144;
  border-bottom: 2px solid #00ffcc;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: bold;
}

nav a {
  color: #00ffcc;
  text-decoration: none;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #00ffcc;
}

h1, h2 {
  text-align: center;
  margin-top: 20px;
}

section {
  margin: 30px auto;
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  border: 1px solid #00ffcc;
  background-color: rgba(0, 0, 64, 0.7);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  color: #00ffcc;
}

th, td {
  border: 1px solid #00ffcc;
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: #001144;
}

footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #00ffcc;
  margin-top: 40px;
  font-size: 0.9em;
  color: #006666;
}

/* Enhanced CRT filter effect */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;

  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0, 255, 255, 0.07) 4px,
      rgba(0, 255, 255, 0.07) 5px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 255, 255, 0.02),
      rgba(0, 255, 255, 0.05) 1px,
      rgba(0, 255, 255, 0.02) 2px
    );

  mix-blend-mode: screen;
  animation: crt-flicker 0.15s infinite alternate;
  filter: contrast(1.2) brightness(1.1);
}

@keyframes crt-flicker {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}

.transfers-feed {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 1rem;
  border: 2px solid #aaa;
  box-shadow: 0 0 5px #00ffe0;
  font-family: 'MS Gothic', monospace;
}

.transfer-item {
  padding: 0.5rem;
  border-bottom: 1px dashed #66ffff;
  color: #ffffff;
  text-shadow: 0 0 2px #33ffff;
}

.transfer-item:last-child {
  border-bottom: none;
}

.team-name {
  color: #ffccff;
  font-weight: bold;
}

.player-name {
  color: #00ffcc;
  font-style: italic;
}

.action {
  color: #ffcc00;
}


