style: stronger glow, bigger LED, fix vertical alignment, tighter spacing

This commit is contained in:
Ronny
2026-04-12 12:39:23 +02:00
parent c6c167abb3
commit b2ca2c733a
+14 -12
View File
@@ -32,15 +32,15 @@
transform: scale(1.01);
}
/* Radial glow behind the teams — stronger, like Stitch */
/* Radial glow behind the teams — strong stadium light */
.heroGlow {
position: absolute;
top: 45%;
top: 50%;
left: 50%;
width: 320px;
height: 280px;
width: 400px;
height: 350px;
transform: translate(-50%, -50%);
background: radial-gradient(circle at center, rgba(75, 183, 248, 0.15) 0%, transparent 70%);
background: radial-gradient(circle at center, rgba(75, 183, 248, 0.2) 0%, rgba(75, 183, 248, 0.08) 35%, transparent 65%);
pointer-events: none;
z-index: 0;
}
@@ -101,13 +101,15 @@
.heroLED {
font-family: 'DSEG7', 'Courier New', monospace;
font-size: 24px;
font-size: 28px;
color: #FECC4C;
letter-spacing: 0.04em;
letter-spacing: -0.02em;
word-spacing: -0.3em;
text-shadow:
0 0 4px rgba(254, 174, 50, 0.9),
0 0 12px rgba(254, 174, 50, 0.5),
0 0 24px rgba(254, 174, 50, 0.25);
0 0 12px rgba(254, 174, 50, 0.6),
0 0 28px rgba(254, 174, 50, 0.35),
0 0 48px rgba(254, 174, 50, 0.15);
}
.heroGroup {
@@ -121,9 +123,9 @@
.heroTeams {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 24px;
margin: 12px 0 20px;
align-items: center;
gap: 12px;
margin: 16px 0 20px;
position: relative;
z-index: 1;
}