MediaWiki:Styles.css: Unterschied zwischen den Versionen
Erscheinungsbild
Die Seite wurde neu angelegt: „:root { --bg: #050509; --bg-elevated: #0c0c12; --accent: #7c5cff; --accent-soft: rgba(124, 92, 255, 0.16); --accent-strong: #00ff85; --text-main: #f5f5ff; --text-muted: #9b9bb5; --border-subtle: #1c1c2a; --danger: #ff4f6e; --radius-lg: 18px; --radius-pill: 999px; --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.65); --blur-bg: blur(16px); } * { box-sizing: border-box; margin: 0; padding: 0; } bod…“ |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
:root { | :root { | ||
--bg: #050509; | --bg: #050509 !important; | ||
--bg-elevated: #0c0c12; | --bg-elevated: #0c0c12 !important; | ||
--accent: #7c5cff; | --accent: #7c5cff !important; | ||
--accent-soft: rgba(124, 92, 255, 0.16); | --accent-soft: rgba(124, 92, 255, 0.16) !important; | ||
--accent-strong: #00ff85; | --accent-strong: #00ff85 !important; | ||
--text-main: #f5f5ff; | --text-main: #f5f5ff !important; | ||
--text-muted: #9b9bb5; | --text-muted: #9b9bb5 !important; | ||
--border-subtle: #1c1c2a; | --border-subtle: #1c1c2a !important; | ||
--danger: #ff4f6e; | --danger: #ff4f6e !important; | ||
--radius-lg: 18px; | --radius-lg: 18px !important; | ||
--radius-pill: 999px; | --radius-pill: 999px !important; | ||
--shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.65); | --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.65) !important; | ||
--blur-bg: blur(16px); | --blur-bg: blur(16px) !important; | ||
} | } | ||
* { | * { | ||
box-sizing: border-box; | box-sizing: border-box !important; | ||
margin: 0; | margin: 0 !important; | ||
padding: 0; | padding: 0 !important; | ||
} | } | ||
body { | body { | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; | ||
background: radial-gradient(circle at top left, #181827 0, #050509 45%); | background: radial-gradient(circle at top left, #181827 0, #050509 45%) !important; | ||
color: var(--text-main); | color: var(--text-main) !important; | ||
min-height: 100vh; | min-height: 100vh !important; | ||
display: flex; | display: flex !important; | ||
flex-direction: column; | flex-direction: column !important; | ||
justify-content: flex-start; | justify-content: flex-start !important; | ||
padding: 32px 16px; | padding: 32px 16px !important; | ||
} | } | ||
.page { | .page { | ||
width: 100%; | width: 100% !important; | ||
max-width: 1100px; | max-width: 1100px !important; | ||
display: grid; | display: grid !important; | ||
grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); | grid-template-columns: minmax(0, 3fr) minmax(0, 2fr) !important; | ||
gap: 28px; | gap: 28px !important; | ||
align-items: stretch; | align-items: stretch !important; | ||
margin: 0 auto; | margin: 0 auto !important; | ||
} | } | ||
@media (max-width: 860px) { | @media (max-width: 860px) { | ||
.page { | .page { | ||
grid-template-columns: minmax(0, 1fr); | grid-template-columns: minmax(0, 1fr) !important; | ||
} | } | ||
} | } | ||
.glass { | .glass { | ||
background: linear-gradient(145deg, rgba(12, 12, 18, 0.95), rgba(8, 8, 14, 0.96)); | background: linear-gradient(145deg, rgba(12, 12, 18, 0.95), rgba(8, 8, 14, 0.96)) !important; | ||
border-radius: 24px; | border-radius: 24px !important; | ||
border: 1px solid rgba(255, 255, 255, 0.04); | border: 1px solid rgba(255, 255, 255, 0.04) !important; | ||
box-shadow: var(--shadow-soft); | box-shadow: var(--shadow-soft) !important; | ||
backdrop-filter: var(--blur-bg); | backdrop-filter: var(--blur-bg) !important; | ||
-webkit-backdrop-filter: var(--blur-bg); | -webkit-backdrop-filter: var(--blur-bg) !important; | ||
position: relative; | position: relative !important; | ||
overflow: hidden; | overflow: hidden !important; | ||
} | } | ||
/* Linke Spalte: Hero / Content */ | /* Linke Spalte: Hero / Content */ | ||
.hero { | .hero { | ||
padding: 26px 26px 24px; | padding: 26px 26px 24px !important; | ||
display: flex; | display: flex !important; | ||
flex-direction: column; | flex-direction: column !important; | ||
gap: 20px; | gap: 20px !important; | ||
} | } | ||
.hero-top-row { | .hero-top-row { | ||
display: flex; | display: flex !important; | ||
align-items: center; | align-items: center !important; | ||
justify-content: space-between; | justify-content: space-between !important; | ||
gap: 16px; | gap: 16px !important; | ||
} | } | ||
.brand-pill { | .brand-pill { | ||
display: inline-flex; | display: inline-flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 8px; | gap: 8px !important; | ||
padding: 6px 12px; | padding: 6px 12px !important; | ||
border-radius: var(--radius-pill); | border-radius: var(--radius-pill) !important; | ||
background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.22), rgba(12, 12, 18, 0.9)); | background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.22), rgba(12, 12, 18, 0.9)) !important; | ||
border: 1px solid rgba(124, 92, 255, 0.5); | border: 1px solid rgba(124, 92, 255, 0.5) !important; | ||
font-size: 12px; | font-size: 12px !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.brand-dot { | .brand-dot { | ||
width: 8px; | width: 8px !important; | ||
height: 8px; | height: 8px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: var(--accent-strong); | background: var(--accent-strong) !important; | ||
box-shadow: 0 0 14px rgba(0, 255, 133, 0.9); | box-shadow: 0 0 14px rgba(0, 255, 133, 0.9) !important; | ||
} | } | ||
.live-tag { | .live-tag { | ||
display: inline-flex; | display: inline-flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 6px; | gap: 6px !important; | ||
padding: 4px 10px; | padding: 4px 10px !important; | ||
border-radius: var(--radius-pill); | border-radius: var(--radius-pill) !important; | ||
background: rgba(255, 79, 110, 0.12); | background: rgba(255, 79, 110, 0.12) !important; | ||
border: 1px solid rgba(255, 79, 110, 0.6); | border: 1px solid rgba(255, 79, 110, 0.6) !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
text-transform: uppercase; | text-transform: uppercase !important; | ||
letter-spacing: 0.09em; | letter-spacing: 0.09em !important; | ||
color: #ffc4cf; | color: #ffc4cf !important; | ||
} | } | ||
.live-dot { | .live-dot { | ||
width: 7px; | width: 7px !important; | ||
height: 7px; | height: 7px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: var(--danger); | background: var(--danger) !important; | ||
box-shadow: 0 0 14px rgba(255, 79, 110, 0.9); | box-shadow: 0 0 14px rgba(255, 79, 110, 0.9) !important; | ||
} | } | ||
.hero-main { | .hero-main { | ||
display: flex; | display: flex !important; | ||
flex-direction: column; | flex-direction: column !important; | ||
gap: 10px; | gap: 10px !important; | ||
} | } | ||
.eyebrow { | .eyebrow { | ||
font-size: 12px; | font-size: 12px !important; | ||
text-transform: uppercase; | text-transform: uppercase !important; | ||
letter-spacing: 0.16em; | letter-spacing: 0.16em !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
h1 { | h1 { | ||
font-size: clamp(32px, 4vw, 40px); | font-size: clamp(32px, 4vw, 40px) !important; | ||
line-height: 1.1; | line-height: 1.1 !important; | ||
letter-spacing: 0.02em; | letter-spacing: 0.02em !important; | ||
} | } | ||
.gradient-text { | .gradient-text { | ||
background: linear-gradient(90deg, #ffffff, #c7b9ff, #7c5cff); | background: linear-gradient(90deg, #ffffff, #c7b9ff, #7c5cff) !important; | ||
-webkit-background-clip: text; | -webkit-background-clip: text !important; | ||
background-clip: text; | background-clip: text !important; | ||
color: transparent; | color: transparent !important; | ||
} | } | ||
.hero-sub { | .hero-sub { | ||
font-size: 14px; | font-size: 14px !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
max-width: 520px; | max-width: 520px !important; | ||
} | } | ||
.hero-sub strong { | .hero-sub strong { | ||
color: #d2d2ff; | color: #d2d2ff !important; | ||
font-weight: 500; | font-weight: 500 !important; | ||
} | } | ||
.hero-cta-row { | .hero-cta-row { | ||
display: flex; | display: flex !important; | ||
flex-wrap: wrap; | flex-wrap: wrap !important; | ||
gap: 12px; | gap: 12px !important; | ||
margin-top: 6px; | margin-top: 6px !important; | ||
} | } | ||
.btn-primary { | .btn-primary { | ||
border: none; | border: none !important; | ||
outline: none; | outline: none !important; | ||
padding: 10px 18px; | padding: 10px 18px !important; | ||
border-radius: var(--radius-pill); | border-radius: var(--radius-pill) !important; | ||
background: linear-gradient(120deg, var(--accent), var(--accent-strong)); | background: linear-gradient(120deg, var(--accent), var(--accent-strong)) !important; | ||
color: #050509; | color: #050509 !important; | ||
font-weight: 600; | font-weight: 600 !important; | ||
font-size: 14px; | font-size: 14px !important; | ||
cursor: pointer; | cursor: pointer !important; | ||
display: inline-flex; | display: inline-flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 8px; | gap: 8px !important; | ||
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7); | box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7) !important; | ||
} | } | ||
.btn-primary span { | .btn-primary span { | ||
font-size: 18px; | font-size: 18px !important; | ||
} | } | ||
.btn-ghost { | .btn-ghost { | ||
border-radius: var(--radius-pill); | border-radius: var(--radius-pill) !important; | ||
padding: 10px 16px; | padding: 10px 16px !important; | ||
font-size: 13px; | font-size: 13px !important; | ||
border: 1px solid var(--border-subtle); | border: 1px solid var(--border-subtle) !important; | ||
background: rgba(5, 5, 10, 0.9); | background: rgba(5, 5, 10, 0.9) !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
display: inline-flex; | display: inline-flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 8px; | gap: 8px !important; | ||
cursor: pointer; | cursor: pointer !important; | ||
} | } | ||
.btn-ghost-dot { | .btn-ghost-dot { | ||
width: 8px; | width: 8px !important; | ||
height: 8px; | height: 8px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: var(--accent); | background: var(--accent) !important; | ||
box-shadow: 0 0 12px rgba(124, 92, 255, 0.9); | box-shadow: 0 0 12px rgba(124, 92, 255, 0.9) !important; | ||
} | } | ||
.meta-grid { | .meta-grid { | ||
display: grid; | display: grid !important; | ||
grid-template-columns: repeat(3, minmax(0, 1fr)); | grid-template-columns: repeat(3, minmax(0, 1fr)) !important; | ||
gap: 12px; | gap: 12px !important; | ||
margin-top: 12px; | margin-top: 12px !important; | ||
} | } | ||
.meta-card { | .meta-card { | ||
padding: 10px 12px; | padding: 10px 12px !important; | ||
border-radius: 14px; | border-radius: 14px !important; | ||
background: radial-gradient(circle at top, rgba(124, 92, 255, 0.12), rgba(5, 5, 9, 0.95)); | background: radial-gradient(circle at top, rgba(124, 92, 255, 0.12), rgba(5, 5, 9, 0.95)) !important; | ||
border: 1px solid rgba(255, 255, 255, 0.04); | border: 1px solid rgba(255, 255, 255, 0.04) !important; | ||
} | } | ||
.meta-label { | .meta-label { | ||
font-size: 11px; | font-size: 11px !important; | ||
text-transform: uppercase; | text-transform: uppercase !important; | ||
letter-spacing: 0.16em; | letter-spacing: 0.16em !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
margin-bottom: 4px; | margin-bottom: 4px !important; | ||
} | } | ||
.meta-value { | .meta-value { | ||
font-size: 14px; | font-size: 14px !important; | ||
} | } | ||
.meta-pill { | .meta-pill { | ||
display: inline-flex; | display: inline-flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 6px; | gap: 6px !important; | ||
padding: 3px 9px; | padding: 3px 9px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: rgba(5, 5, 9, 0.9); | background: rgba(5, 5, 9, 0.9) !important; | ||
border: 1px solid rgba(255, 255, 255, 0.08); | border: 1px solid rgba(255, 255, 255, 0.08) !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
margin-top: 6px; | margin-top: 6px !important; | ||
} | } | ||
.meta-pill-dot { | .meta-pill-dot { | ||
width: 6px; | width: 6px !important; | ||
height: 6px; | height: 6px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: var(--accent-strong); | background: var(--accent-strong) !important; | ||
} | } | ||
/* Sektion: Panels / Content */ | /* Sektion: Panels / Content */ | ||
.sections { | .sections { | ||
display: grid; | display: grid !important; | ||
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr); | grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr) !important; | ||
gap: 12px; | gap: 12px !important; | ||
margin-top: 10px; | margin-top: 10px !important; | ||
} | } | ||
@media (max-width: 960px) { | @media (max-width: 960px) { | ||
.sections { | .sections { | ||
grid-template-columns: minmax(0, 1fr); | grid-template-columns: minmax(0, 1fr) !important; | ||
} | } | ||
} | } | ||
.panel { | .panel { | ||
background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.12), rgba(5, 5, 9, 0.98)); | background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.12), rgba(5, 5, 9, 0.98)) !important; | ||
border-radius: 18px; | border-radius: 18px !important; | ||
border: 1px solid rgba(255, 255, 255, 0.04); | border: 1px solid rgba(255, 255, 255, 0.04) !important; | ||
padding: 13px 14px 12px; | padding: 13px 14px 12px !important; | ||
} | } | ||
.panel-header { | .panel-header { | ||
display: flex; | display: flex !important; | ||
align-items: center; | align-items: center !important; | ||
justify-content: space-between; | justify-content: space-between !important; | ||
gap: 8px; | gap: 8px !important; | ||
margin-bottom: 8px; | margin-bottom: 8px !important; | ||
} | } | ||
.panel-title { | .panel-title { | ||
font-size: 12px; | font-size: 12px !important; | ||
text-transform: uppercase; | text-transform: uppercase !important; | ||
letter-spacing: 0.16em; | letter-spacing: 0.16em !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.panel-tag { | .panel-tag { | ||
font-size: 11px; | font-size: 11px !important; | ||
padding: 4px 9px; | padding: 4px 9px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: rgba(5, 5, 9, 0.9); | background: rgba(5, 5, 9, 0.9) !important; | ||
border: 1px solid var(--border-subtle); | border: 1px solid var(--border-subtle) !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.panel-content { | .panel-content { | ||
font-size: 13px; | font-size: 13px !important; | ||
color: #c6c6dd; | color: #c6c6dd !important; | ||
line-height: 1.4; | line-height: 1.4 !important; | ||
} | } | ||
.chips { | .chips { | ||
display: flex; | display: flex !important; | ||
flex-wrap: wrap; | flex-wrap: wrap !important; | ||
gap: 6px; | gap: 6px !important; | ||
margin-top: 8px; | margin-top: 8px !important; | ||
} | } | ||
.chip { | .chip { | ||
padding: 4px 10px; | padding: 4px 10px !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: rgba(5, 5, 9, 0.95); | background: rgba(5, 5, 9, 0.95) !important; | ||
border: 1px solid var(--border-subtle); | border: 1px solid var(--border-subtle) !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.social-row { | .social-row { | ||
display: flex; | display: flex !important; | ||
flex-wrap: wrap; | flex-wrap: wrap !important; | ||
gap: 8px; | gap: 8px !important; | ||
margin-top: 10px; | margin-top: 10px !important; | ||
} | } | ||
.social-pill { | .social-pill { | ||
display: inline-flex; | display: inline-flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 8px; | gap: 8px !important; | ||
padding: 7px 11px; | padding: 7px 11px !important; | ||
border-radius: var(--radius-pill); | border-radius: var(--radius-pill) !important; | ||
background: rgba(5, 5, 9, 0.94); | background: rgba(5, 5, 9, 0.94) !important; | ||
border: 1px solid var(--border-subtle); | border: 1px solid var(--border-subtle) !important; | ||
font-size: 12px; | font-size: 12px !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
text-decoration: none; | text-decoration: none !important; | ||
} | } | ||
.social-icon { | .social-icon { | ||
width: 16px; | width: 16px !important; | ||
height: 16px; | height: 16px !important; | ||
border-radius: 5px; | border-radius: 5px !important; | ||
background: linear-gradient(135deg, #8b5cff, #00ffb3); | background: linear-gradient(135deg, #8b5cff, #00ffb3) !important; | ||
} | } | ||
/* Rechte Spalte: Card / Spotlight */ | /* Rechte Spalte: Card / Spotlight */ | ||
.side-card { | .side-card { | ||
padding: 20px 18px 16px; | padding: 20px 18px 16px !important; | ||
display: flex; | display: flex !important; | ||
flex-direction: column; | flex-direction: column !important; | ||
gap: 14px; | gap: 14px !important; | ||
} | } | ||
.side-badge-row { | .side-badge-row { | ||
display: flex; | display: flex !important; | ||
justify-content: space-between; | justify-content: space-between !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 8px; | gap: 8px !important; | ||
} | } | ||
.side-badge { | .side-badge { | ||
font-size: 11px; | font-size: 11px !important; | ||
padding: 4px 10px; | padding: 4px 10px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
border: 1px solid rgba(255, 255, 255, 0.04); | border: 1px solid rgba(255, 255, 255, 0.04) !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
background: rgba(5, 5, 9, 0.9); | background: rgba(5, 5, 9, 0.9) !important; | ||
} | } | ||
.avatar-row { | .avatar-row { | ||
display: flex; | display: flex !important; | ||
align-items: center; | align-items: center !important; | ||
gap: 12px; | gap: 12px !important; | ||
} | } | ||
.avatar { | .avatar { | ||
width: 52px; | width: 52px !important; | ||
height: 52px; | height: 52px !important; | ||
border-radius: 18px; | border-radius: 18px !important; | ||
background: radial-gradient(circle at top left, #ff4f6e, #7c5cff); | background: radial-gradient(circle at top left, #ff4f6e, #7c5cff) !important; | ||
position: relative; | position: relative !important; | ||
overflow: hidden; | overflow: hidden !important; | ||
} | } | ||
.avatar-inner { | .avatar-inner { | ||
position: absolute; | position: absolute !important; | ||
inset: 8px; | inset: 8px !important; | ||
border-radius: inherit; | border-radius: inherit !important; | ||
background: radial-gradient(circle at top, #222235, #06060a); | background: radial-gradient(circle at top, #222235, #06060a) !important; | ||
border: 1px solid rgba(255, 255, 255, 0.06); | border: 1px solid rgba(255, 255, 255, 0.06) !important; | ||
display: flex; | display: flex !important; | ||
align-items: center; | align-items: center !important; | ||
justify-content: center; | justify-content: center !important; | ||
font-size: 20px; | font-size: 20px !important; | ||
overflow: hidden; | overflow: hidden !important; | ||
} | } | ||
.avatar-inner img { | .avatar-inner img { | ||
width: 100%; | width: 100% !important; | ||
height: 100%; | height: 100% !important; | ||
object-fit: cover; | object-fit: cover !important; | ||
border-radius: inherit; | border-radius: inherit !important; | ||
} | } | ||
.avatar-name { | .avatar-name { | ||
font-size: 15px; | font-size: 15px !important; | ||
font-weight: 600; | font-weight: 600 !important; | ||
} | } | ||
.avatar-sub { | .avatar-sub { | ||
font-size: 12px; | font-size: 12px !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.side-main { | .side-main { | ||
font-size: 13px; | font-size: 13px !important; | ||
color: #d0d0e8; | color: #d0d0e8 !important; | ||
line-height: 1.45; | line-height: 1.45 !important; | ||
} | } | ||
.side-main strong { | .side-main strong { | ||
color: #ffffff; | color: #ffffff !important; | ||
} | } | ||
.pill-row { | .pill-row { | ||
display: flex; | display: flex !important; | ||
flex-wrap: wrap; | flex-wrap: wrap !important; | ||
gap: 6px; | gap: 6px !important; | ||
} | } | ||
.pill { | .pill { | ||
padding: 4px 9px; | padding: 4px 9px !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
background: rgba(5, 5, 9, 0.95); | background: rgba(5, 5, 9, 0.95) !important; | ||
border: 1px solid var(--border-subtle); | border: 1px solid var(--border-subtle) !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.Server { | .Server { | ||
margin-top: 6px; | margin-top: 6px !important; | ||
padding: 10px 11px; | padding: 10px 11px !important; | ||
border-radius: 14px; | border-radius: 14px !important; | ||
background: radial-gradient(circle at top, rgba(0, 255, 133, 0.12), rgba(5, 5, 9, 0.98)); | background: radial-gradient(circle at top, rgba(0, 255, 133, 0.12), rgba(5, 5, 9, 0.98)) !important; | ||
border: 1px solid rgba(0, 255, 133, 0.4); | border: 1px solid rgba(0, 255, 133, 0.4) !important; | ||
font-size: 12px; | font-size: 12px !important; | ||
color: #31f5f2; | color: #31f5f2 !important; | ||
} | } | ||
.schedule { | .schedule { | ||
margin-top: 6px; | margin-top: 6px !important; | ||
padding: 10px 11px; | padding: 10px 11px !important; | ||
border-radius: 14px; | border-radius: 14px !important; | ||
background: radial-gradient(circle at top, rgba(0, 255, 133, 0.12), rgba(5, 5, 9, 0.98)); | background: radial-gradient(circle at top, rgba(0, 255, 133, 0.12), rgba(5, 5, 9, 0.98)) !important; | ||
border: 1px solid rgba(0, 255, 133, 0.4); | border: 1px solid rgba(0, 255, 133, 0.4) !important; | ||
font-size: 12px; | font-size: 12px !important; | ||
color: #d8ffe8; | color: #d8ffe8 !important; | ||
} | } | ||
.schedule-title { | .schedule-title { | ||
text-transform: uppercase; | text-transform: uppercase !important; | ||
letter-spacing: 0.16em; | letter-spacing: 0.16em !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
margin-bottom: 4px; | margin-bottom: 4px !important; | ||
opacity: 0.9; | opacity: 0.9 !important; | ||
} | } | ||
.schedule-grid { | .schedule-grid { | ||
display: flex; | display: flex !important; | ||
flex-wrap: wrap; | flex-wrap: wrap !important; | ||
gap: 6px; | gap: 6px !important; | ||
margin-top: 6px; | margin-top: 6px !important; | ||
} | } | ||
.schedule-pill { | .schedule-pill { | ||
padding: 3px 9px; | padding: 3px 9px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
border: 1px solid rgba(216, 255, 232, 0.5); | border: 1px solid rgba(216, 255, 232, 0.5) !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
color: #e9ffee; | color: #e9ffee !important; | ||
} | } | ||
.side-footer { | .side-footer { | ||
display: flex; | display: flex !important; | ||
align-items: center; | align-items: center !important; | ||
justify-content: space-between; | justify-content: space-between !important; | ||
gap: 8px; | gap: 8px !important; | ||
margin-top: 6px; | margin-top: 6px !important; | ||
} | } | ||
.small-note { | .small-note { | ||
font-size: 11px; | font-size: 11px !important; | ||
color: var(--text-muted); | color: var(--text-muted) !important; | ||
} | } | ||
.side-cta { | .side-cta { | ||
padding: 7px 12px; | padding: 7px 12px !important; | ||
border-radius: var(--radius-pill); | border-radius: var(--radius-pill) !important; | ||
border: 1px solid rgba(124, 92, 255, 0.7); | border: 1px solid rgba(124, 92, 255, 0.7) !important; | ||
background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.4), rgba(5, 5, 9, 0.96)); | background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.4), rgba(5, 5, 9, 0.96)) !important; | ||
font-size: 12px; | font-size: 12px !important; | ||
color: #f5f5ff; | color: #f5f5ff !important; | ||
text-decoration: none; | text-decoration: none !important; | ||
} | } | ||
/* Footer */ | /* Footer */ | ||
footer { | footer { | ||
margin-top: 26px; | margin-top: 26px !important; | ||
width: 100%; | width: 100% !important; | ||
max-width: 1100px; | max-width: 1100px !important; | ||
margin-inline: auto; | margin-inline: auto !important; | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; | font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; | ||
} | } | ||
footer .footer-inner { | footer .footer-inner { | ||
border-top: 1px solid rgba(255, 255, 255, 0.06); | border-top: 1px solid rgba(255, 255, 255, 0.06) !important; | ||
padding: 14px 4px 0; | padding: 14px 4px 0 !important; | ||
display: flex; | display: flex !important; | ||
flex-wrap: wrap; | flex-wrap: wrap !important; | ||
justify-content: space-between; | justify-content: space-between !important; | ||
gap: 8px; | gap: 8px !important; | ||
font-size: 11px; | font-size: 11px !important; | ||
color: #9b9bb5; | color: #9b9bb5 !important; | ||
} | } | ||
footer a { | footer a { | ||
color: #c9c5ff; | color: #c9c5ff !important; | ||
text-decoration: none; | text-decoration: none !important; | ||
padding: 4px 10px; | padding: 4px 10px !important; | ||
border-radius: 999px; | border-radius: 999px !important; | ||
border: 1px solid #1c1c2a; | border: 1px solid #1c1c2a !important; | ||
background: rgba(5, 5, 9, 0.92); | background: rgba(5, 5, 9, 0.92) !important; | ||
} | } | ||
footer a:hover { | footer a:hover { | ||
text-decoration: underline; | text-decoration: underline !important; | ||
} | } | ||
Aktuelle Version vom 14. Februar 2026, 01:40 Uhr
:root {
--bg: #050509 !important;
--bg-elevated: #0c0c12 !important;
--accent: #7c5cff !important;
--accent-soft: rgba(124, 92, 255, 0.16) !important;
--accent-strong: #00ff85 !important;
--text-main: #f5f5ff !important;
--text-muted: #9b9bb5 !important;
--border-subtle: #1c1c2a !important;
--danger: #ff4f6e !important;
--radius-lg: 18px !important;
--radius-pill: 999px !important;
--shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.65) !important;
--blur-bg: blur(16px) !important;
}
* {
box-sizing: border-box !important;
margin: 0 !important;
padding: 0 !important;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
background: radial-gradient(circle at top left, #181827 0, #050509 45%) !important;
color: var(--text-main) !important;
min-height: 100vh !important;
display: flex !important;
flex-direction: column !important;
justify-content: flex-start !important;
padding: 32px 16px !important;
}
.page {
width: 100% !important;
max-width: 1100px !important;
display: grid !important;
grid-template-columns: minmax(0, 3fr) minmax(0, 2fr) !important;
gap: 28px !important;
align-items: stretch !important;
margin: 0 auto !important;
}
@media (max-width: 860px) {
.page {
grid-template-columns: minmax(0, 1fr) !important;
}
}
.glass {
background: linear-gradient(145deg, rgba(12, 12, 18, 0.95), rgba(8, 8, 14, 0.96)) !important;
border-radius: 24px !important;
border: 1px solid rgba(255, 255, 255, 0.04) !important;
box-shadow: var(--shadow-soft) !important;
backdrop-filter: var(--blur-bg) !important;
-webkit-backdrop-filter: var(--blur-bg) !important;
position: relative !important;
overflow: hidden !important;
}
/* Linke Spalte: Hero / Content */
.hero {
padding: 26px 26px 24px !important;
display: flex !important;
flex-direction: column !important;
gap: 20px !important;
}
.hero-top-row {
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
gap: 16px !important;
}
.brand-pill {
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
padding: 6px 12px !important;
border-radius: var(--radius-pill) !important;
background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.22), rgba(12, 12, 18, 0.9)) !important;
border: 1px solid rgba(124, 92, 255, 0.5) !important;
font-size: 12px !important;
color: var(--text-muted) !important;
}
.brand-dot {
width: 8px !important;
height: 8px !important;
border-radius: 999px !important;
background: var(--accent-strong) !important;
box-shadow: 0 0 14px rgba(0, 255, 133, 0.9) !important;
}
.live-tag {
display: inline-flex !important;
align-items: center !important;
gap: 6px !important;
padding: 4px 10px !important;
border-radius: var(--radius-pill) !important;
background: rgba(255, 79, 110, 0.12) !important;
border: 1px solid rgba(255, 79, 110, 0.6) !important;
font-size: 11px !important;
text-transform: uppercase !important;
letter-spacing: 0.09em !important;
color: #ffc4cf !important;
}
.live-dot {
width: 7px !important;
height: 7px !important;
border-radius: 999px !important;
background: var(--danger) !important;
box-shadow: 0 0 14px rgba(255, 79, 110, 0.9) !important;
}
.hero-main {
display: flex !important;
flex-direction: column !important;
gap: 10px !important;
}
.eyebrow {
font-size: 12px !important;
text-transform: uppercase !important;
letter-spacing: 0.16em !important;
color: var(--text-muted) !important;
}
h1 {
font-size: clamp(32px, 4vw, 40px) !important;
line-height: 1.1 !important;
letter-spacing: 0.02em !important;
}
.gradient-text {
background: linear-gradient(90deg, #ffffff, #c7b9ff, #7c5cff) !important;
-webkit-background-clip: text !important;
background-clip: text !important;
color: transparent !important;
}
.hero-sub {
font-size: 14px !important;
color: var(--text-muted) !important;
max-width: 520px !important;
}
.hero-sub strong {
color: #d2d2ff !important;
font-weight: 500 !important;
}
.hero-cta-row {
display: flex !important;
flex-wrap: wrap !important;
gap: 12px !important;
margin-top: 6px !important;
}
.btn-primary {
border: none !important;
outline: none !important;
padding: 10px 18px !important;
border-radius: var(--radius-pill) !important;
background: linear-gradient(120deg, var(--accent), var(--accent-strong)) !important;
color: #050509 !important;
font-weight: 600 !important;
font-size: 14px !important;
cursor: pointer !important;
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7) !important;
}
.btn-primary span {
font-size: 18px !important;
}
.btn-ghost {
border-radius: var(--radius-pill) !important;
padding: 10px 16px !important;
font-size: 13px !important;
border: 1px solid var(--border-subtle) !important;
background: rgba(5, 5, 10, 0.9) !important;
color: var(--text-muted) !important;
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
cursor: pointer !important;
}
.btn-ghost-dot {
width: 8px !important;
height: 8px !important;
border-radius: 999px !important;
background: var(--accent) !important;
box-shadow: 0 0 12px rgba(124, 92, 255, 0.9) !important;
}
.meta-grid {
display: grid !important;
grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
gap: 12px !important;
margin-top: 12px !important;
}
.meta-card {
padding: 10px 12px !important;
border-radius: 14px !important;
background: radial-gradient(circle at top, rgba(124, 92, 255, 0.12), rgba(5, 5, 9, 0.95)) !important;
border: 1px solid rgba(255, 255, 255, 0.04) !important;
}
.meta-label {
font-size: 11px !important;
text-transform: uppercase !important;
letter-spacing: 0.16em !important;
color: var(--text-muted) !important;
margin-bottom: 4px !important;
}
.meta-value {
font-size: 14px !important;
}
.meta-pill {
display: inline-flex !important;
align-items: center !important;
gap: 6px !important;
padding: 3px 9px !important;
border-radius: 999px !important;
background: rgba(5, 5, 9, 0.9) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
font-size: 11px !important;
color: var(--text-muted) !important;
margin-top: 6px !important;
}
.meta-pill-dot {
width: 6px !important;
height: 6px !important;
border-radius: 999px !important;
background: var(--accent-strong) !important;
}
/* Sektion: Panels / Content */
.sections {
display: grid !important;
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr) !important;
gap: 12px !important;
margin-top: 10px !important;
}
@media (max-width: 960px) {
.sections {
grid-template-columns: minmax(0, 1fr) !important;
}
}
.panel {
background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.12), rgba(5, 5, 9, 0.98)) !important;
border-radius: 18px !important;
border: 1px solid rgba(255, 255, 255, 0.04) !important;
padding: 13px 14px 12px !important;
}
.panel-header {
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
gap: 8px !important;
margin-bottom: 8px !important;
}
.panel-title {
font-size: 12px !important;
text-transform: uppercase !important;
letter-spacing: 0.16em !important;
color: var(--text-muted) !important;
}
.panel-tag {
font-size: 11px !important;
padding: 4px 9px !important;
border-radius: 999px !important;
background: rgba(5, 5, 9, 0.9) !important;
border: 1px solid var(--border-subtle) !important;
color: var(--text-muted) !important;
}
.panel-content {
font-size: 13px !important;
color: #c6c6dd !important;
line-height: 1.4 !important;
}
.chips {
display: flex !important;
flex-wrap: wrap !important;
gap: 6px !important;
margin-top: 8px !important;
}
.chip {
padding: 4px 10px !important;
font-size: 11px !important;
border-radius: 999px !important;
background: rgba(5, 5, 9, 0.95) !important;
border: 1px solid var(--border-subtle) !important;
color: var(--text-muted) !important;
}
.social-row {
display: flex !important;
flex-wrap: wrap !important;
gap: 8px !important;
margin-top: 10px !important;
}
.social-pill {
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
padding: 7px 11px !important;
border-radius: var(--radius-pill) !important;
background: rgba(5, 5, 9, 0.94) !important;
border: 1px solid var(--border-subtle) !important;
font-size: 12px !important;
color: var(--text-muted) !important;
text-decoration: none !important;
}
.social-icon {
width: 16px !important;
height: 16px !important;
border-radius: 5px !important;
background: linear-gradient(135deg, #8b5cff, #00ffb3) !important;
}
/* Rechte Spalte: Card / Spotlight */
.side-card {
padding: 20px 18px 16px !important;
display: flex !important;
flex-direction: column !important;
gap: 14px !important;
}
.side-badge-row {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
gap: 8px !important;
}
.side-badge {
font-size: 11px !important;
padding: 4px 10px !important;
border-radius: 999px !important;
border: 1px solid rgba(255, 255, 255, 0.04) !important;
color: var(--text-muted) !important;
background: rgba(5, 5, 9, 0.9) !important;
}
.avatar-row {
display: flex !important;
align-items: center !important;
gap: 12px !important;
}
.avatar {
width: 52px !important;
height: 52px !important;
border-radius: 18px !important;
background: radial-gradient(circle at top left, #ff4f6e, #7c5cff) !important;
position: relative !important;
overflow: hidden !important;
}
.avatar-inner {
position: absolute !important;
inset: 8px !important;
border-radius: inherit !important;
background: radial-gradient(circle at top, #222235, #06060a) !important;
border: 1px solid rgba(255, 255, 255, 0.06) !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 20px !important;
overflow: hidden !important;
}
.avatar-inner img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
border-radius: inherit !important;
}
.avatar-name {
font-size: 15px !important;
font-weight: 600 !important;
}
.avatar-sub {
font-size: 12px !important;
color: var(--text-muted) !important;
}
.side-main {
font-size: 13px !important;
color: #d0d0e8 !important;
line-height: 1.45 !important;
}
.side-main strong {
color: #ffffff !important;
}
.pill-row {
display: flex !important;
flex-wrap: wrap !important;
gap: 6px !important;
}
.pill {
padding: 4px 9px !important;
font-size: 11px !important;
border-radius: 999px !important;
background: rgba(5, 5, 9, 0.95) !important;
border: 1px solid var(--border-subtle) !important;
color: var(--text-muted) !important;
}
.Server {
margin-top: 6px !important;
padding: 10px 11px !important;
border-radius: 14px !important;
background: radial-gradient(circle at top, rgba(0, 255, 133, 0.12), rgba(5, 5, 9, 0.98)) !important;
border: 1px solid rgba(0, 255, 133, 0.4) !important;
font-size: 12px !important;
color: #31f5f2 !important;
}
.schedule {
margin-top: 6px !important;
padding: 10px 11px !important;
border-radius: 14px !important;
background: radial-gradient(circle at top, rgba(0, 255, 133, 0.12), rgba(5, 5, 9, 0.98)) !important;
border: 1px solid rgba(0, 255, 133, 0.4) !important;
font-size: 12px !important;
color: #d8ffe8 !important;
}
.schedule-title {
text-transform: uppercase !important;
letter-spacing: 0.16em !important;
font-size: 11px !important;
margin-bottom: 4px !important;
opacity: 0.9 !important;
}
.schedule-grid {
display: flex !important;
flex-wrap: wrap !important;
gap: 6px !important;
margin-top: 6px !important;
}
.schedule-pill {
padding: 3px 9px !important;
border-radius: 999px !important;
border: 1px solid rgba(216, 255, 232, 0.5) !important;
font-size: 11px !important;
color: #e9ffee !important;
}
.side-footer {
display: flex !important;
align-items: center !important;
justify-content: space-between !important;
gap: 8px !important;
margin-top: 6px !important;
}
.small-note {
font-size: 11px !important;
color: var(--text-muted) !important;
}
.side-cta {
padding: 7px 12px !important;
border-radius: var(--radius-pill) !important;
border: 1px solid rgba(124, 92, 255, 0.7) !important;
background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.4), rgba(5, 5, 9, 0.96)) !important;
font-size: 12px !important;
color: #f5f5ff !important;
text-decoration: none !important;
}
/* Footer */
footer {
margin-top: 26px !important;
width: 100% !important;
max-width: 1100px !important;
margin-inline: auto !important;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
footer .footer-inner {
border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
padding: 14px 4px 0 !important;
display: flex !important;
flex-wrap: wrap !important;
justify-content: space-between !important;
gap: 8px !important;
font-size: 11px !important;
color: #9b9bb5 !important;
}
footer a {
color: #c9c5ff !important;
text-decoration: none !important;
padding: 4px 10px !important;
border-radius: 999px !important;
border: 1px solid #1c1c2a !important;
background: rgba(5, 5, 9, 0.92) !important;
}
footer a:hover {
text-decoration: underline !important;
}