.track-section { border: 3px solid #2b2119; background-color: #f4ecdb; box-shadow: 6px 6px 0 rgba(43, 33, 25, 0.85); margin-bottom: 24px; }
.track-section .track-header { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; padding: 14px 16px; border-bottom: 3px solid #2b2119; background-color: #c8371f; color: #f4ecdb; }
.track-section .track-title { font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.track-section .track-distance { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #f6d7c9; }
.track-section .track { position: relative; overflow: hidden; background-image: linear-gradient(180deg, #dfe9ee 0%, #eef1e6 55%, #e6ddc4 100%); }
.track-section .track-lanes { position: relative; }
.track-section .lane { position: relative; height: 44px; border-bottom: 1px dashed rgba(43, 33, 25, 0.25); }
.track-section .lane:last-child { border-bottom: none; }
.track-section .lane-number { position: absolute; left: 6px; top: 50%; margin-top: -11px; width: 22px; height: 22px; border: 2px solid #2b2119; background-color: #f4ecdb; color: #2b2119; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; z-index: 2; }
.track-section .lane-name { position: absolute; left: 34px; top: 50%; margin-top: -7px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(43, 33, 25, 0.45); z-index: 1; }
.track-section .pigeon { position: absolute; left: 0; top: 50%; margin-top: -16px; width: 52px; height: 34px; will-change: transform; z-index: 3; }
.track-section .pigeon svg { width: 100%; height: 100%; overflow: visible; }
.track-section .pigeon .wing { transform-box: fill-box; transform-origin: 90% 95%; }
.track-section .track.racing .pigeon .wing { animation: pigeon-flap 0.26s ease-in-out infinite alternate; }
.track-section .lane:nth-child(2n) .pigeon .wing { animation-duration: 0.22s; }
.track-section .lane:nth-child(3n) .pigeon .wing { animation-duration: 0.3s; }
.track-section .track.racing .pigeon svg { animation: pigeon-bob 0.5s ease-in-out infinite alternate; }
.track-section .lane:nth-child(2n) .pigeon svg { animation-duration: 0.42s; }
.track-section .lane:nth-child(5n) .pigeon svg { animation-duration: 0.58s; }
.track-section .pigeon.stalled { filter: saturate(0.4); }
.track-section .pigeon.picked-bird .pick-ring { display: block; }
.track-section .pigeon .pick-ring { display: none; }
.track-section .finish-post { position: absolute; top: 0; bottom: 0; right: 44px; width: 10px; background-image: repeating-linear-gradient(45deg, #2b2119 0px, #2b2119 7px, #f4ecdb 7px, #f4ecdb 14px); z-index: 4; }
.track-section .finish-post-flag { position: absolute; top: -1px; left: -6px; width: 0; height: 0; border-top: 10px solid #c8371f; border-right: 11px solid rgba(0, 0, 0, 0); border-left: 11px solid rgba(0, 0, 0, 0); }
.track-section .finish-post-label { position: absolute; top: 50%; left: 14px; transform: rotate(90deg); transform-origin: 0 0; font-size: 9px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(43, 33, 25, 0.5); white-space: nowrap; }
.track-section .track-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; background-color: rgba(43, 33, 25, 0.55); z-index: 5; transition: opacity 0.3s ease; }
.track-section .track-overlay.hidden { opacity: 0; pointer-events: none; }
.track-section .overlay-inner { background-color: #f4ecdb; border: 3px solid #2b2119; box-shadow: 5px 5px 0 rgba(43, 33, 25, 0.9); padding: 18px 22px; max-width: 340px; text-align: center; margin: 0 14px; }
.track-section .overlay-kicker { font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: #c8371f; margin-bottom: 6px; }
.track-section .overlay-message { font-size: 14px; line-height: 1.45; }
.track-section .overlay-countdown { font-size: 64px; font-weight: 900; color: #c8371f; line-height: 1; }
.track-section .commentary { display: flex; align-items: center; gap: 10px; border-top: 3px solid #2b2119; background-color: #2b2119; color: #f4ecdb; padding: 10px 14px; min-height: 44px; }
.track-section .commentary-mic { width: 20px; height: 20px; flex-shrink: 0; }
.track-section .commentary-mic svg { width: 100%; height: 100%; }
.track-section .commentary-mic svg path, .track-section .commentary-mic svg line { stroke: #f4ecdb; }
.track-section .commentary-text { font-size: 13px; font-style: italic; line-height: 1.35; }
@keyframes pigeon-flap { 0% { transform: rotate(-8deg); } 100% { transform: rotate(38deg); } }
@keyframes pigeon-bob { 0% { transform: translateY(-2px); } 100% { transform: translateY(2px); } }
@media (min-width: 768px) {
  .track-section .track-header { flex-direction: row; justify-content: space-between; align-items: center; }
  .track-section .lane { height: 50px; }
  .track-section .pigeon { width: 60px; height: 39px; margin-top: -19px; }
  .track-section .lane-name { font-size: 11px; }
  .track-section .finish-post { right: 60px; }
  .track-section .commentary-text { font-size: 15px; }
}
