<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Poster I: The Vertical Bypass</title> <style> body { background-color: #0F0F0F; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; font-family: 'Helvetica Neue', Helvetica, sans-serif; } .poster-container { width: 450px; height: 675px; background-color: #1A1A1A; box-shadow: 0 15px 35px rgba(0,0,0,0.9); } .pitch { stroke: #F3F2ED; stroke-width: 1.5; fill: none; opacity: 0.2; } .emerald-node { fill: #008F56; } .ivory-node { fill: #F3F2ED; } .gold-path { stroke: #D4AF37; stroke-width: 3.5; fill: none; stroke-dasharray: 8, 6; } .title { fill: #F3F2ED; font-size: 16px; font-weight: 800; letter-spacing: 2px; } .subtitle { fill: #F3F2ED; font-size: 10px; opacity: 0.6; letter-spacing: 1.5px; } </style> </head> <body> <div class="poster-container"> <svg width="100%" height="100%" viewBox="0 0 450 675"> <!-- Pitch Map --> <rect x="30" y="30" width="390" height="615" class="pitch" /> <line x1="30" y1="337.5" x2="420" y2="337.5" class="pitch" /> <circle cx="225" cy="337.5" r="50" class="pitch" /> <rect x="110" y="30" width="230" height="95" class="pitch" /> <path d="M 160 125 A 60 60 0 0 0 290 125" class="pitch" /> <rect x="110" y="550" width="230" height="95" class="pitch" /> <path d="M 160 550 A 60 60 0 0 1 290 550" class="pitch" /> <!-- Midfield Trap --> <circle cx="210" cy="400" r="7" class="emerald-node" /> <circle cx="240" cy="420" r="7" class="emerald-node" /> <circle Mehr sehen