:root {
--bg:        #0d1017;
--bg-2:      #121722;
--panel:     #191f2e;
--panel-2:   #212a3d;
--panel-3:   #2a344b;
--line:      #2f3a55;
--line-soft: #232c40;
--text:      #e9edf6;
--text-2:    #b9c3da;
--muted:     #8794b1;
--dim:       #5f6a85;
--gold:      #f0b429;
--gold-2:    #ffd166;
--gold-dim:  #7a5c17;
--green:     #3ddc84;
--green-dim: #1c5f39;
--red:       #ff5f6b;
--red-dim:   #6d2029;
--blue:      #4aa3ff;
--blue-dim:  #1d4a7a;
--purple:    #a97bff;
--cyan:      #34d3d3;
--orange:    #ff9c3f;
--r-sm: 8px;
--r-md: 14px;
--r-lg: 20px;
--r-xl: 28px;
--shadow: 0 10px 30px rgba(0, 0, 0, .45);
--shadow-sm: 0 3px 10px rgba(0, 0, 0, .35);
--sat: env(safe-area-inset-top, 0px);
--sab: env(safe-area-inset-bottom, 0px);
--sal: env(safe-area-inset-left, 0px);
--sar: env(safe-area-inset-right, 0px);
--ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
--tap: 46px;
}
* { box-sizing: border-box; }
*, *::before, *::after {
-webkit-tap-highlight-color: transparent;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
background: var(--bg);
color: var(--text);
font-family: var(--ui);
font-size: 16px;
line-height: 1.45;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
overscroll-behavior: none;
-webkit-font-smoothing: antialiased;
}
body {
position: fixed;
inset: 0;
touch-action: manipulation;
user-select: none;
-webkit-user-select: none;
}
#sg-kulisse {
position: fixed;
inset: 0;
z-index: 0;
pointer-events: none;
}
#app {
position: absolute;
inset: 0;
z-index: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
input, textarea {
user-select: text;
-webkit-user-select: text;
font-family: inherit;
font-size: 16px;
}
button {
font-family: inherit;
font-size: inherit;
color: inherit;
background: none;
border: 0;
margin: 0;
padding: 0;
cursor: pointer;
touch-action: manipulation;
}
h1, h2, h3, h4 { margin: 0; font-weight: 650; line-height: 1.2; }
p { margin: 0 0 .7em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 .7em; padding-left: 1.3em; }
li { margin: .2em 0; }
strong { font-weight: 650; color: var(--text); }
code, kbd { font-family: var(--mono); font-size: .92em; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--panel-3); border-radius: 5px; }
#sg-boot {
position: absolute;
inset: 0;
display: grid;
place-items: center;
background: var(--bg);
z-index: 9999;
transition: opacity .28s ease;
}
#sg-boot.gone { opacity: 0; pointer-events: none; }
.sg-boot-inner { text-align: center; }
.sg-boot-cane {
width: 54px; height: 74px; margin: 0 auto 18px;
border: 6px solid var(--gold);
border-radius: 30px 30px 0 0;
border-bottom: 0;
position: relative;
}
.sg-boot-cane::after {
content: ""; position: absolute;
right: -6px; top: 30px; width: 6px; height: 52px;
background: var(--gold); border-radius: 3px;
}
.sg-boot-name { font-size: 19px; font-weight: 650; letter-spacing: .01em; }
.sg-boot-hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
#sg-boot .sg-help {
position: absolute;
inset: 0;
display: grid;
place-items: center;
padding: calc(16px + var(--sat)) 16px calc(16px + var(--sab));
background: var(--bg);
overflow: auto;
-webkit-overflow-scrolling: touch;
opacity: 0;
visibility: hidden;
animation: sg-help-in 0s linear 3s forwards;
}
html.js #sg-boot .sg-help { animation: none; }
@keyframes sg-help-in { to { opacity: 1; visibility: visible; } }
.sg-help-card {
width: 100%;
max-width: 520px;
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--r-lg);
padding: 22px 22px 20px;
text-align: left;
font: 15px/1.5 var(--ui);
color: var(--text-2);
}
.sg-help-ic {
width: 40px; height: 40px; margin-bottom: 12px;
border-radius: 50%;
background: var(--gold);
color: #1a1204;
font: 700 24px/40px var(--ui);
text-align: center;
}
.sg-help-card h1 {
margin: 0 0 10px;
font-size: 20px; font-weight: 700; line-height: 1.25;
color: var(--text);
}
.sg-help-card p { margin: 0 0 14px; }
.sg-help-card b { color: var(--text); font-weight: 650; }
.sg-help-steps {
background: var(--bg-2);
border: 1px solid var(--line-soft);
border-radius: var(--r-md);
padding: 14px 16px 14px 6px;
margin-bottom: 14px;
}
.sg-help-h {
margin: 0 0 8px 12px;
font-size: 13px; font-weight: 700; letter-spacing: .04em;
text-transform: uppercase;
color: var(--gold);
}
.sg-help-steps ol { margin: 0; padding-left: 26px; }
.sg-help-steps li { margin-bottom: 7px; }
.sg-help-steps li:last-child { margin-bottom: 0; }
.sg-help-alt { font-size: 13.5px; color: var(--muted); margin-bottom: 0 !important; }
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: var(--tap);
padding: 0 18px;
border-radius: var(--r-md);
background: var(--panel-2);
color: var(--text);
font-weight: 600;
font-size: 15px;
border: 1px solid var(--line);
transition: transform .08s ease, background .15s ease, border-color .15s ease;
white-space: nowrap;
}
.btn:active { transform: scale(.965); background: var(--panel-3); }
.btn.primary {
background: linear-gradient(180deg, var(--gold-2), var(--gold));
color: #241a04; border-color: #c8901c;
}
.btn.primary:active { background: var(--gold); }
.btn.good { background: var(--green-dim); border-color: #2c8a55; color: #d8ffe9; }
.btn.bad  { background: var(--red-dim);  border-color: #9a3140; color: #ffdde1; }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--text-2); }
.btn.ghost:active { background: var(--panel); }
.btn.sm { min-height: 36px; padding: 0 12px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn.wide { width: 100%; }
.btn[disabled], .btn.off {
opacity: .42; pointer-events: none;
}
.btn .ico { font-size: 17px; line-height: 1; }
.chip {
display: inline-flex; align-items: center; gap: 6px;
height: 32px; padding: 0 12px; border-radius: 16px;
background: var(--panel); border: 1px solid var(--line-soft);
font-size: 13px; color: var(--text-2); font-weight: 550;
white-space: nowrap;
}
.chip.on { background: var(--gold); border-color: var(--gold); color: #241a04; }
.chip:active { transform: scale(.96); }
.card {
background: var(--panel);
border: 1px solid var(--line-soft);
border-radius: var(--r-md);
padding: 14px;
}
.row { display: flex; align-items: center; gap: 10px; }
.row.wrap { flex-wrap: wrap; }
.spacer { flex: 1 1 auto; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.tiny { font-size: 11.5px; }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.center { text-align: center; }
.hidden { display: none !important; }
.sr {
position: absolute; width: 1px; height: 1px; overflow: hidden;
clip: rect(0 0 0 0); white-space: nowrap;
}
.bar {
height: 8px; border-radius: 4px; background: var(--panel-3);
overflow: hidden; position: relative;
}
.bar > i {
display: block; height: 100%; background: var(--gold);
border-radius: 4px; transition: width .25s ease;
}
.bar.green > i { background: var(--green); }
.bar.red > i { background: var(--red); }
.bar.blue > i { background: var(--blue); }
.toggle {
position: relative; width: 52px; height: 31px; flex: 0 0 auto;
border-radius: 16px; background: var(--panel-3);
border: 1px solid var(--line); transition: background .18s ease;
}
.toggle::after {
content: ""; position: absolute; top: 2px; left: 2px;
width: 25px; height: 25px; border-radius: 50%;
background: #cfd6e8; transition: transform .18s ease, background .18s ease;
}
.toggle.on { background: var(--green-dim); border-color: #2c8a55; }
.toggle.on::after { transform: translateX(21px); background: var(--green); }
@keyframes sg-pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes sg-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sg-up { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
body.reduced * {
animation-duration: .001s !important;
transition-duration: .001s !important;
}
@media (prefers-reduced-motion: reduce) {
* { animation-duration: .001s !important; transition-duration: .001s !important; }
}
.topbar {
flex: 0 0 auto;
display: flex;
align-items: center;
gap: 10px;
padding: calc(var(--sat) + 10px) calc(var(--sar) + 14px) 10px calc(var(--sal) + 14px);
background: linear-gradient(180deg, #131926, #0f141f);
border-bottom: 1px solid var(--line-soft);
min-height: calc(var(--sat) + 60px);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark {
width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px;
background: linear-gradient(160deg, #1d2333, #11151f);
border: 1px solid var(--line);
position: relative; overflow: hidden;
}
.brand-mark::before {
content: ""; position: absolute; left: 9px; top: 7px;
width: 13px; height: 12px;
border: 3px solid var(--gold); border-bottom: 0; border-radius: 8px 8px 0 0;
}
.brand-mark::after {
content: ""; position: absolute; left: 18px; top: 11px;
width: 3px; height: 16px; background: var(--gold); border-radius: 2px;
}
.brand-text { min-width: 0; }
.brand-title {
font-size: 16px; font-weight: 680; letter-spacing: .005em;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-sub { font-size: 11px; color: var(--dim); margin-top: -2px; }
.topbar .btn { padding: 0 14px; }
.topbar-actions { display: flex; gap: 8px; align-items: center; }
@media (max-width: 640px) {
.brand-sub { display: none; }
.topbar .btn .lbl { display: none; }
.topbar .btn { padding: 0 12px; }
}
.screen {
flex: 1 1 auto;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding: 16px calc(var(--sar) + 16px) calc(var(--sab) + 28px) calc(var(--sal) + 16px);
}
.screen.plain { padding: 0; overflow: hidden; }
.wrap-1000 { max-width: 1000px; margin: 0 auto; }
.wrap-780 { max-width: 780px; margin: 0 auto; }
.hub-tools {
display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px;
}
.search {
display: flex; align-items: center; gap: 10px;
height: var(--tap); padding: 0 14px;
background: var(--panel); border: 1px solid var(--line-soft);
border-radius: var(--r-md);
}
.search input {
flex: 1; background: none; border: 0; outline: none;
color: var(--text); font-size: 16px;
}
.search input::placeholder { color: var(--dim); }
.search .ico { color: var(--dim); font-size: 16px; }
.filters {
display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px;
scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.sec-head {
display: flex; align-items: baseline; gap: 10px;
margin: 22px 2px 10px;
}
.sec-head:first-child { margin-top: 4px; }
.sec-head h2 { font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); }
.sec-head .count { font-size: 12px; color: var(--dim); }
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
gap: 12px;
}
@media (min-width: 700px) { .grid { grid-template-columns: repeat(auto-fill, minmax(176px, 1fr)); gap: 14px; } }
.tile {
position: relative;
display: block;
text-align: left;
background: var(--panel);
border: 1px solid var(--line-soft);
border-radius: var(--r-md);
overflow: hidden;
transition: transform .1s ease, border-color .15s ease;
animation: sg-up .25s ease both;
}
.tile:active { transform: scale(.97); border-color: var(--line); }
.tile canvas { display: block; width: 100%; aspect-ratio: 16 / 10; background: #0b0e15; }
.tile-body { padding: 9px 11px 11px; }
.tile-name {
font-size: 14.5px; font-weight: 620; line-height: 1.25;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tile-meta {
font-size: 11.5px; color: var(--dim); margin-top: 3px;
display: flex; align-items: center; gap: 6px;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tile-badges {
position: absolute; top: 7px; right: 7px; display: flex; gap: 4px;
}
.badge {
font-size: 10px; font-weight: 700; letter-spacing: .04em;
padding: 3px 6px; border-radius: 6px;
background: rgba(9, 12, 19, .82); color: var(--text-2);
backdrop-filter: blur(4px);
}
.badge.online { background: rgba(29, 74, 122, .9); color: #bcdcff; }
.badge.tycoon { background: rgba(122, 92, 23, .92); color: #ffe2a0; }
.badge.best { background: rgba(9, 12, 19, .82); color: var(--gold); }
.fav {
position: absolute; top: 4px; left: 4px;
width: 34px; height: 34px; display: grid; place-items: center;
font-size: 16px; color: rgba(255, 255, 255, .35);
text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
}
.fav.on { color: var(--gold); }
.empty {
text-align: center; color: var(--muted); padding: 46px 20px;
}
.empty .big { font-size: 34px; margin-bottom: 10px; opacity: .5; }
.modal-back {
position: absolute; inset: 0; z-index: 500;
background: rgba(5, 7, 12, .72);
display: grid; place-items: center;
padding: calc(var(--sat) + 16px) 16px calc(var(--sab) + 16px);
animation: sg-fade .16s ease;
backdrop-filter: blur(3px);
}
.modal {
width: min(560px, 100%);
max-height: 100%;
display: flex; flex-direction: column;
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--r-lg);
box-shadow: var(--shadow);
animation: sg-pop .18s ease;
overflow: hidden;
}
.modal.wide { width: min(760px, 100%); }
.modal-head {
display: flex; align-items: center; gap: 10px;
padding: 15px 16px 12px; border-bottom: 1px solid var(--line-soft);
flex: 0 0 auto;
}
.modal-head h3 { font-size: 17px; }
.modal-body {
padding: 16px; overflow-y: auto; -webkit-overflow-scrolling: touch;
overscroll-behavior: contain; flex: 1 1 auto;
}
.modal-foot {
display: flex; gap: 10px; padding: 12px 16px calc(14px);
border-top: 1px solid var(--line-soft); flex: 0 0 auto;
}
.modal-foot .btn { flex: 1; }
.x-btn {
width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
background: var(--panel-2); color: var(--text-2); font-size: 17px; flex: 0 0 auto;
}
.x-btn:active { background: var(--panel-3); }
.set-row {
display: flex; align-items: center; gap: 12px;
padding: 12px 0; border-bottom: 1px solid var(--line-soft);
}
.set-row:last-child { border-bottom: 0; }
.set-row .txt { flex: 1; min-width: 0; }
.set-row .txt b { display: block; font-size: 14.5px; font-weight: 600; }
.set-row .txt span { font-size: 12.5px; color: var(--muted); }
.seg {
display: inline-flex; background: var(--panel-2); border-radius: 10px;
padding: 3px; gap: 3px; border: 1px solid var(--line-soft);
}
.seg button {
padding: 6px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
color: var(--muted);
}
.seg button.on { background: var(--panel-3); color: var(--text); }
.code-box {
width: 100%; min-height: 92px; resize: vertical;
background: #0b0e15; border: 1px solid var(--line);
border-radius: var(--r-sm); padding: 10px;
font-family: var(--mono); font-size: 12px; color: var(--text-2);
word-break: break-all;
}
.toasts {
position: absolute; left: 50%; bottom: calc(var(--sab) + 22px);
transform: translateX(-50%); z-index: 900;
display: flex; flex-direction: column; gap: 8px; align-items: center;
pointer-events: none; width: max-content; max-width: 92%;
}
.toast {
background: rgba(20, 26, 40, .96);
border: 1px solid var(--line);
border-radius: 999px; padding: 9px 18px;
font-size: 14px; font-weight: 550;
box-shadow: var(--shadow-sm);
animation: sg-up .2s ease;
}
.toast.good { border-color: #2c8a55; color: #ccffe3; }
.toast.bad { border-color: #9a3140; color: #ffdbe0; }
.hero {
text-align: center; padding: 26px 16px 20px;
}
.hero .big-ico { font-size: 46px; margin-bottom: 8px; }
.hero h1 { font-size: 24px; margin-bottom: 8px; }
.hero p { color: var(--text-2); max-width: 520px; margin: 0 auto .7em; }
.steps { counter-reset: st; margin: 18px 0 0; }
.step {
display: flex; gap: 14px; padding: 14px 0;
border-bottom: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: 0; }
.step .n {
counter-increment: st; flex: 0 0 auto;
width: 30px; height: 30px; border-radius: 50%;
background: var(--panel-2); border: 1px solid var(--line);
display: grid; place-items: center; font-weight: 700; font-size: 14px;
color: var(--gold);
}
.step .n::before { content: counter(st); }
.step .t { flex: 1; }
.step .t b { display: block; font-size: 15px; margin-bottom: 2px; }
.step .t span { font-size: 13.5px; color: var(--muted); }
.notice {
border-radius: var(--r-md); padding: 12px 14px;
font-size: 13.5px; line-height: 1.5;
background: rgba(74, 163, 255, .1);
border: 1px solid rgba(74, 163, 255, .3);
color: #cfe4ff;
}
.notice.warn {
background: rgba(240, 180, 41, .1);
border-color: rgba(240, 180, 41, .32);
color: #ffe6ae;
}
.notice.bad {
background: rgba(255, 95, 107, .1);
border-color: rgba(255, 95, 107, .32);
color: #ffd3d7;
}
.notice.good {
background: rgba(61, 220, 132, .09);
border-color: rgba(61, 220, 132, .3);
color: #c8f3da;
}
.way-head {
display: flex; align-items: center; gap: 12px;
margin-bottom: 4px;
}
.way-ic {
flex: 0 0 auto; width: 42px; height: 42px; border-radius: var(--r-md);
background: var(--panel-2); border: 1px solid var(--line);
display: grid; place-items: center; font-size: 21px;
}
.way-head h3 { margin: 0; font-size: 17px; }
.way-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.way-tag {
margin-left: auto; flex: 0 0 auto;
padding: 4px 9px; border-radius: 999px;
background: rgba(240, 180, 41, .14);
border: 1px solid rgba(240, 180, 41, .38);
color: var(--gold-2);
font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
text-transform: uppercase;
}
.room-code {
font-family: var(--mono); font-size: 34px; font-weight: 700;
letter-spacing: .22em; text-align: center; color: var(--gold);
padding: 14px 0 6px; user-select: text; -webkit-user-select: text;
}
.code-input {
width: 100%; height: 62px; text-align: center;
font-family: var(--mono); font-size: 27px; letter-spacing: .2em;
text-transform: uppercase;
background: #0b0e15; border: 1px solid var(--line);
border-radius: var(--r-md); color: var(--text); outline: none;
}
.code-input:focus { border-color: var(--gold); }
.player-row {
display: flex; align-items: center; gap: 10px;
padding: 10px 12px; border-radius: var(--r-sm);
background: var(--panel-2); margin-bottom: 8px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--dim); flex: 0 0 auto; }
.dot.on { background: var(--green); }
.dot.me { background: var(--gold); }
.net-pill {
position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
z-index: 60; font-size: 11.5px; padding: 4px 12px; border-radius: 999px;
background: rgba(11, 14, 21, .9); border: 1px solid var(--line);
color: var(--muted); pointer-events: none;
}
.net-pill.bad { border-color: var(--red-dim); color: #ffc9ce; }
.net-pill.good { border-color: var(--green-dim); color: #c8f3dc; }
.gate {
position: absolute; inset: 0;
display: grid; place-items: center;
padding: calc(var(--sat) + 20px) 18px calc(var(--sab) + 20px);
overflow: auto; -webkit-overflow-scrolling: touch;
background: radial-gradient(120% 90% at 50% 0%,
rgba(20, 26, 40, .8) 0%, rgba(13, 16, 23, .9) 70%);
}
.gate-box {
width: 100%; max-width: 380px; text-align: center;
}
.gate-cane {
width: 44px; height: 62px; margin: 0 auto 18px;
border: 6px solid var(--gold); border-radius: 26px 26px 0 0; border-bottom: 0;
position: relative;
}
.gate-cane::after {
content: ""; position: absolute; right: -6px; top: 26px;
width: 6px; height: 42px; background: var(--gold); border-radius: 3px;
}
.gate-box h1 { font-size: 21px; margin: 0 0 4px; }
.gate-sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.gate-msg { min-height: 20px; font-size: 13.5px; margin-top: 10px; color: var(--red); }
.gate-fuss { color: var(--dim); font-size: 12.5px; margin-top: 22px; line-height: 1.5; }
.gate-strafe {
position: absolute; inset: 0; z-index: 1200;
display: grid; place-items: center; align-content: center;
gap: 14px; padding: 20px;
background: #06080d;
animation: sg-fade .2s ease;
}
.gate-strafe-kopf {
font-size: 19px; font-weight: 700; color: var(--red);
letter-spacing: .04em; text-transform: uppercase;
}
.gate-bild {
width: min(78vw, 380px); max-height: 58vh;
object-fit: contain;
border-radius: var(--r-lg);
border: 1px solid var(--line);
}
.gate-zaehler {
font-family: var(--mono); font-size: 30px; font-weight: 700;
color: var(--gold); font-variant-numeric: tabular-nums;
}
.btn.gold {
background: var(--gold); border-color: var(--gold); color: #1a1204;
}
.btn.gold:active { background: var(--gold-2); }
.willk {
position: absolute; inset: 0; z-index: 800;
display: grid; place-items: center; align-content: center; gap: 6px;
background: radial-gradient(120% 90% at 50% 30%, #161d2e 0%, var(--bg) 70%);
transition: opacity .3s ease;
}
.willk.weg { opacity: 0; }
.willk-bild { width: 200px; height: 246px; }
.willk-text { text-align: center; opacity: 0; transform: translateY(10px);
transition: opacity .5s ease, transform .5s ease; }
.willk-text.an { opacity: 1; transform: none; }
.willk-klein { font-size: 14px; letter-spacing: .18em; text-transform: uppercase;
color: var(--muted); }
.willk-name { font-size: 30px; font-weight: 750; color: var(--gold-2); margin-top: 4px; }
.willk-tipp { font-size: 12px; color: var(--dim); margin-top: 26px;
opacity: 0; transition: opacity .5s ease; }
.willk-tipp.an { opacity: 1; }
.tile.zu { opacity: .42; }
.tile.zu canvas { filter: grayscale(1); }
.tile.durchgestrichen { position: relative; }
.tile.durchgestrichen::after {
content: ""; position: absolute; inset: 0; pointer-events: none;
background:
linear-gradient(to bottom right, transparent calc(50% - 1px),
rgba(255, 95, 107, .75) calc(50% - 1px), rgba(255, 95, 107, .75) calc(50% + 1px),
transparent calc(50% + 1px)),
linear-gradient(to bottom left, transparent calc(50% - 1px),
rgba(255, 95, 107, .75) calc(50% - 1px), rgba(255, 95, 107, .75) calc(50% + 1px),
transparent calc(50% + 1px));
}
.badge.wartung { background: rgba(255, 156, 63, .92); color: #24170a; }
.badge.kreis { background: rgba(169, 123, 255, .92); color: #1a1030; }
.ansage {
border-radius: var(--r-md); padding: 14px 16px; margin-bottom: 14px;
background: rgba(74, 163, 255, .1); border: 1px solid rgba(74, 163, 255, .3);
animation: sg-up .3s ease both;
}
.ansage.warnung { background: rgba(255, 156, 63, .12); border-color: rgba(255, 156, 63, .38); }
.ansage.fest { background: rgba(240, 180, 41, .12); border-color: rgba(240, 180, 41, .38); }
.an-text { font-size: 15.5px; line-height: 1.5; color: var(--text); }
.an-fuss { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.an-von { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.an-zu {
width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
background: rgba(255, 255, 255, .06); color: var(--muted); font-size: 13px;
}
.sperrgitter {
display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
gap: 8px; margin-top: 10px;
}
.sperrbtn {
display: block; text-align: left; padding: 10px 11px;
background: var(--panel-2); border: 1px solid var(--line-soft);
border-radius: var(--r-sm); color: var(--text-2);
}
.sperrbtn .sn { font-size: 13.5px; font-weight: 620; color: var(--text);
white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sperrbtn .ss { font-size: 11.5px; color: var(--dim); margin-top: 2px; }
.sperrbtn.an { background: rgba(255, 95, 107, .16); border-color: var(--red); }
.sperrbtn.an .ss { color: var(--red); }
.sperrbtn.wartung { background: rgba(255, 156, 63, .16); border-color: var(--orange); }
.sperrbtn.wartung .ss { color: var(--orange); }
.sperrbtn.kreis { background: rgba(169, 123, 255, .16); border-color: var(--purple); }
.sperrbtn.kreis .ss { color: var(--purple); }
.rollenwahl { display: grid; gap: 8px; margin-top: 8px; }
.rollebtn {
display: block; text-align: left; padding: 12px 14px;
background: var(--panel-2); border: 1px solid var(--line-soft);
border-radius: var(--r-md); color: var(--text-2);
}
.rollebtn.an { background: rgba(240, 180, 41, .12); border-color: var(--gold); }
.rollebtn .ri { font-size: 19px; }
.rollebtn .rn { font-weight: 650; color: var(--text); margin-top: 2px; }
.rollebtn .rt { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.pin-punkte {
display: flex; justify-content: center; gap: 16px; margin: 6px 0 4px;
}
.pin-punkt {
width: 16px; height: 16px; border-radius: 50%;
border: 2px solid var(--line); background: transparent;
transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.pin-punkt.voll {
background: var(--gold); border-color: var(--gold);
transform: scale(1.15);
box-shadow: 0 0 14px rgba(240, 180, 41, .55);
}
.pin-punkte.falsch { animation: pin-wackeln .42s ease; }
.pin-punkte.falsch .pin-punkt { border-color: var(--red); background: var(--red);
box-shadow: 0 0 14px rgba(255, 95, 107, .5); }
@keyframes pin-wackeln {
0%, 100% { transform: translateX(0); }
15% { transform: translateX(-9px); }
30% { transform: translateX(8px); }
45% { transform: translateX(-6px); }
60% { transform: translateX(5px); }
80% { transform: translateX(-2px); }
}
.pinfeld {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 12px; margin: 18px auto 0; max-width: 300px;
}
.pintaste {
aspect-ratio: 1 / 0.82;
display: grid; place-items: center;
font-size: 26px; font-weight: 600;
font-variant-numeric: tabular-nums;
color: var(--text);
background: linear-gradient(180deg, #1e2534, #161c29);
border: 1px solid var(--line);
border-radius: 16px;
box-shadow: 0 2px 0 rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
-webkit-user-select: none; user-select: none;
transition: transform .07s ease, background .12s ease, border-color .12s ease;
}
.pintaste.gedrueckt {
transform: translateY(2px);
background: linear-gradient(180deg, var(--gold), #d99f1c);
border-color: var(--gold-2);
color: #1a1204;
box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 22px rgba(240, 180, 41, .5);
}
.pintaste.neben {
font-size: 19px; color: var(--muted);
background: linear-gradient(180deg, #171d2a, #12161f);
}
.pintaste.neben.gedrueckt { color: #1a1204; }
.gate-einladung {
display: block; margin: 18px auto 0; padding: 8px 14px;
font-size: 13px; color: var(--muted);
background: none; border: 1px solid var(--line-soft); border-radius: 999px;
}
.btn.kreis {
background: rgba(169, 123, 255, .18); border-color: rgba(169, 123, 255, .5);
color: #d9c6ff;
}
.btn.kreis:active { background: rgba(169, 123, 255, .3); }
.chat-schirm {
display: flex; flex-direction: column; padding: 0;
}
.chatliste {
flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding: 16px calc(var(--sar) + 14px) 10px calc(var(--sal) + 14px);
display: flex; flex-direction: column; gap: 10px;
}
.chat-laedt { text-align: center; color: var(--dim); font-size: 13px; padding: 20px; }
.chat-msg {
max-width: min(520px, 86%); align-self: flex-start;
background: var(--panel); border: 1px solid var(--line-soft);
border-radius: 14px 14px 14px 4px; padding: 9px 12px 10px;
animation: sg-up .2s ease both;
}
.chat-msg.selbst {
align-self: flex-end;
background: rgba(169, 123, 255, .14); border-color: rgba(169, 123, 255, .34);
border-radius: 14px 14px 4px 14px;
}
.chat-kopf { font-size: 11.5px; color: var(--muted); margin-bottom: 3px; font-weight: 600; }
.chat-text { font-size: 15px; line-height: 1.45; white-space: pre-wrap; word-break: break-word; }
.chat-leiste {
flex: 0 0 auto; display: flex; gap: 8px; align-items: flex-end;
padding: 10px calc(var(--sar) + 12px) calc(var(--sab) + 10px) calc(var(--sal) + 12px);
border-top: 1px solid var(--line-soft); background: var(--bg-2);
}
.chat-feld {
flex: 1; min-height: 44px; max-height: 120px; resize: none;
background: #0b0e15; border: 1px solid var(--line); border-radius: 12px;
color: var(--text); padding: 11px 12px; outline: none;
font: 16px/1.35 var(--ui);
}
.chat-senden {
width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
display: grid; place-items: center; font-size: 17px;
background: var(--purple); color: #1a1030;
}
.chat-senden:active { background: #bb96ff; }
.an-banner {
position: fixed; left: 50%; top: 0; z-index: 1100;
width: min(560px, calc(100% - 20px));
transform: translate(-50%, calc(-100% - 20px));
margin-top: calc(var(--sat) + 10px);
display: flex; align-items: flex-start; gap: 12px;
padding: 12px 14px 10px;
background: linear-gradient(180deg, #1d2534, #161c29);
border: 1px solid rgba(74, 163, 255, .45);
border-radius: var(--r-md);
box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
transition: transform .34s cubic-bezier(.2, .9, .3, 1.2), opacity .2s ease;
cursor: grab; touch-action: none;
-webkit-user-select: none; user-select: none;
}
.an-banner.an-offen { transform: translate(-50%, 0); }
.an-banner.warnung { border-color: rgba(255, 156, 63, .55); }
.an-banner.fest { border-color: rgba(240, 180, 41, .55); }
.an-banner .an-griff {
position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
width: 34px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .16);
}
.an-banner .an-inhalt { flex: 1; min-width: 0; }
.an-banner .an-kopf {
font-size: 11.5px; font-weight: 700; color: var(--gold);
letter-spacing: .03em; margin-bottom: 3px;
}
.an-banner.warnung .an-kopf { color: var(--orange); }
.an-banner .an-text {
font-size: 14.5px; line-height: 1.45; color: var(--text);
padding-bottom: 6px;
}
.an-banner .an-hinweis {
flex: 0 0 auto; font-size: 10.5px; color: var(--dim);
align-self: center; text-align: right; max-width: 74px; line-height: 1.3;
}
.stufe-chip {
position: relative;
padding-bottom: 9px !important;
border-color: var(--gold-dim) !important;
}
.stufe-chip .ico { filter: saturate(1.1); }
.stufe-bar {
position: absolute;
left: 8px; right: 8px; bottom: 4px;
height: 3px;
border-radius: 2px;
background: rgba(255, 255, 255, .12);
overflow: hidden;
}
.stufe-bar i {
display: block;
height: 100%;
background: linear-gradient(90deg, var(--gold-dim), var(--gold-2));
transition: width .5s cubic-bezier(.2, .8, .3, 1);
}
.pf-kopf {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
padding: 20px;
margin-bottom: 16px;
background: var(--panel);
border: 1px solid var(--line-soft);
border-radius: var(--r-lg);
}
.pf-ring { position: relative; width: 132px; height: 132px; flex: none; }
.xp-ring { display: block; }
.pf-ring-in {
position: absolute; inset: 0;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
gap: 2px;
}
.pf-stufe { font-size: 42px; font-weight: 800; line-height: 1; color: var(--gold); }
.pf-stufe-k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pf-wer { flex: 1 1 260px; min-width: 0; }
.pf-name { font-size: 26px; font-weight: 700; }
.pf-rang { font-size: 15px; color: var(--gold-2); margin-top: 2px; }
.pf-xp { font-size: 13.5px; color: var(--text-2); margin-top: 10px; }
.pf-balken {
height: 9px;
margin-top: 6px;
border-radius: 5px;
background: rgba(255, 255, 255, .08);
overflow: hidden;
}
.pf-balken-in {
height: 100%;
border-radius: 5px;
background: linear-gradient(90deg, var(--gold-dim), var(--gold-2));
transition: width .6s cubic-bezier(.2, .8, .3, 1);
}
.pf-gesamt { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.pf-zahlen {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
gap: 10px;
margin-bottom: 16px;
}
.pf-zahl {
padding: 12px 10px;
text-align: center;
background: var(--bg-2);
border: 1px solid var(--line-soft);
border-radius: var(--r-md);
}
.pf-zahl .ic { font-size: 18px; }
.pf-zahl .v { font-size: 20px; font-weight: 700; margin-top: 2px; }
.pf-zahl .k { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.pf-hinweis {
padding: 11px 14px;
margin-bottom: 18px;
font-size: 13.5px;
color: var(--text-2);
background: var(--bg-2);
border: 1px solid var(--line-soft);
border-left: 3px solid var(--gold);
border-radius: var(--r-sm);
}
.pf-h { margin: 4px 0 10px; font-size: 19px; }
.pf-filter { margin-bottom: 12px; }
.pf-erfolge { display: flex; flex-direction: column; gap: 7px; }
.pf-gruppe {
display: flex;
align-items: baseline;
gap: 10px;
margin: 14px 2px 2px;
}
.pf-gruppe .t { font-size: 14px; font-weight: 700; color: var(--text-2); }
.pf-gruppe .z { font-size: 12px; color: var(--muted); }
.pf-erfolg {
display: flex;
align-items: center;
gap: 12px;
padding: 11px 14px;
background: var(--panel);
border: 1px solid var(--line-soft);
border-radius: var(--r-md);
}
.pf-erfolg .ic {
width: 38px; height: 38px; flex: none;
display: flex; align-items: center; justify-content: center;
font-size: 20px;
background: var(--panel-2);
border-radius: 10px;
}
.pf-erfolg .tx { flex: 1; min-width: 0; }
.pf-erfolg .tx .t { font-size: 14.5px; font-weight: 600; }
.pf-erfolg .tx .d { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.pf-erfolg .xp {
flex: none;
font-size: 13px;
font-weight: 700;
color: var(--gold);
}
.pf-erfolg.zu { opacity: .58; }
.pf-erfolg.zu .ic { filter: grayscale(1); opacity: .7; }
.pf-erfolg.zu .xp { color: var(--dim); }
.xp-flug {
position: fixed;
left: 50%;
bottom: calc(24px + var(--sab, 0px));
z-index: 640;
display: flex;
align-items: baseline;
gap: 8px;
padding: 7px 15px;
background: rgba(13, 16, 23, .93);
border: 1px solid var(--gold-dim);
border-radius: 999px;
box-shadow: var(--shadow-sm);
opacity: 0;
transform: translate(-50%, 14px);
transition: opacity .3s ease, transform .3s cubic-bezier(.2, .8, .3, 1);
pointer-events: none;
}
.xp-flug.an { opacity: 1; transform: translate(-50%, 0); }
.xp-flug .b { font-size: 15px; font-weight: 800; color: var(--gold-2); }
.xp-flug .g { font-size: 12px; color: var(--muted); }
.pf-karte {
position: fixed;
left: 50%;
top: calc(14px + var(--sat, 0px));
z-index: 650;
width: min(420px, calc(100vw - 28px));
display: flex;
align-items: center;
gap: 13px;
padding: 13px 16px;
background: linear-gradient(135deg, #1b2233, #141a27);
border: 1px solid var(--gold-dim);
border-radius: var(--r-md);
box-shadow: var(--shadow);
opacity: 0;
transform: translate(-50%, -18px) scale(.96);
transition: opacity .3s ease, transform .34s cubic-bezier(.2, .9, .3, 1);
pointer-events: none;
}
.pf-karte.an { opacity: 1; transform: translate(-50%, 0) scale(1); }
.pf-karte .ic {
width: 46px; height: 46px; flex: none;
display: flex; align-items: center; justify-content: center;
font-size: 24px;
background: rgba(240, 180, 41, .13);
border: 1px solid var(--gold-dim);
border-radius: 12px;
}
.pf-karte .tx { flex: 1; min-width: 0; }
.pf-karte .tx .k {
font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
color: var(--gold);
}
.pf-karte .tx .t { font-size: 16px; font-weight: 700; margin-top: 1px; }
.pf-karte .tx .d { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.pf-karte .xp { flex: none; font-size: 15px; font-weight: 800; color: var(--gold-2); }
.pf-karte.stufe {
border-color: var(--gold);
box-shadow: var(--shadow), 0 0 26px rgba(240, 180, 41, .22);
}
@media (prefers-reduced-motion: reduce) {
.xp-flug, .pf-karte, .pf-balken-in, .stufe-bar i { transition: none; }
}
.feld {
width: 100%; min-height: 46px;
background: #0b0e15; border: 1px solid var(--line); border-radius: 10px;
color: var(--text); padding: 11px 12px; outline: none;
font: 16px/1.35 var(--ui);
margin-bottom: 8px;
}
.feld:focus { border-color: var(--blue); }
.feld.hoch { min-height: 84px; resize: vertical; }
.chat-extra {
width: 40px; height: 44px; flex: 0 0 auto; border-radius: 12px;
display: grid; place-items: center; font-size: 19px;
background: var(--panel-2); border: 1px solid var(--line);
color: var(--text-2);
}
.chat-extra:active { background: var(--panel-3); }
.chat-haltbar { cursor: context-menu; }
.chat-msg.chat-weg {
background: transparent; border: 1px dashed var(--line);
align-self: center; max-width: 90%;
}
.chat-msg.chat-weg .chat-text {
font-size: 12.5px; color: var(--dim); font-style: italic; text-align: center;
}
.chat-bild {
position: relative; margin-top: 6px; width: min(280px, 100%);
height: 0; border-radius: 10px; overflow: hidden;
background: #0b0e15; border: 1px solid var(--line-soft);
}
.chat-bild img {
position: absolute; inset: 0; width: 100%; height: 100%;
object-fit: cover; opacity: 0; transition: opacity .2s ease;
}
.chat-bild.da img { opacity: 1; }
.chat-bild.kaputt { display: flex; height: auto; padding: 14px; }
.chat-bild-fehler {
position: absolute; inset: 0; display: grid; place-items: center;
font-size: 12px; color: var(--dim);
}
.bild-voll {
position: fixed; inset: 0; z-index: 2000;
background: rgba(3, 5, 9, .93);
display: flex; flex-direction: column; align-items: center; justify-content: center;
padding: calc(var(--sat) + 16px) 16px calc(var(--sab) + 16px);
animation: sg-fade .16s ease both;
}
.voll-bild {
max-width: 100%; max-height: calc(100% - 40px);
object-fit: contain; border-radius: 10px;
}
.bild-voll-fuss {
margin-top: 10px; font-size: 12.5px; color: var(--muted);
}
.umfrage {
margin-top: 8px; padding: 10px 11px 9px;
background: rgba(74, 163, 255, .07);
border: 1px solid rgba(74, 163, 255, .28);
border-radius: 12px;
}
.umfrage.zu { background: rgba(255, 255, 255, .03); border-color: var(--line); }
.umfrage-frage {
font-size: 14.5px; font-weight: 700; margin-bottom: 8px; line-height: 1.35;
}
.umfrage-opt {
position: relative; display: block; width: 100%; text-align: left;
background: rgba(255, 255, 255, .04); border: 1px solid var(--line-soft);
border-radius: 9px; padding: 7px 9px; margin-bottom: 5px;
color: var(--text); font: inherit; overflow: hidden;
}
.umfrage-opt.an { border-color: var(--blue); background: rgba(74, 163, 255, .13); }
.umfrage-opt[disabled] { opacity: .85; }
.umfrage-balken { position: absolute; inset: 0; }
.umfrage-balken i {
display: block; height: 100%; background: rgba(74, 163, 255, .17);
transition: width .35s cubic-bezier(.2, .8, .2, 1);
}
.umfrage-zeile {
position: relative; display: flex; align-items: center; gap: 7px;
font-size: 14px;
}
.umfrage-haken { color: var(--blue); font-size: 12px; width: 12px; }
.umfrage-text { flex: 1; }
.umfrage-zahl { font-weight: 700; color: var(--text-2); font-variant-numeric: tabular-nums; }
.umfrage-namen {
position: relative; font-size: 11px; color: var(--dim);
margin: 2px 0 0 19px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.umfrage-fuss { font-size: 11.5px; color: var(--muted); margin-top: 6px; }
.umfrage-bau .feld { margin-bottom: 6px; }
.adminraum {
flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column;
padding: 0 calc(var(--sar) + 14px) 0 calc(var(--sal) + 14px);
}
.adminraum > .tabs { margin: 10px 0 8px; flex: 0 0 auto; }
.adminraum-inhalt {
flex: 1 1 auto; min-height: 0; overflow-y: auto;
-webkit-overflow-scrolling: touch; padding-bottom: calc(var(--sab) + 12px);
display: flex; flex-direction: column;
}
.chat-schirm.im-reiter {
flex: 1 1 auto; min-height: 320px;
border: 1px solid var(--line-soft); border-radius: var(--r-md);
overflow: hidden; background: var(--bg-2);
}
.chat-schirm.im-reiter .chatliste { padding: 12px; }
.chat-schirm.im-reiter .chat-leiste { padding: 8px; }
.proto-box { display: flex; flex-direction: column; }
.proto-liste { display: flex; flex-direction: column; }
.proto-tag {
font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
color: var(--dim); margin: 14px 0 6px;
}
.proto-zeile {
display: flex; gap: 10px; align-items: flex-start;
padding: 8px 10px; border-radius: 10px;
border-left: 2px solid var(--line);
background: rgba(255, 255, 255, .02);
margin-bottom: 4px;
}
.proto-ic { font-size: 15px; width: 20px; text-align: center; flex: 0 0 auto; }
.proto-haupt { min-width: 0; flex: 1; }
.proto-text { font-size: 13.5px; line-height: 1.4; word-break: break-word; }
.proto-meta { font-size: 11px; color: var(--dim); margin-top: 2px; }
.antrag-liste { display: flex; flex-direction: column; }
.antrag {
border: 1px solid var(--line); border-radius: var(--r-md);
padding: 11px 12px; margin-bottom: 8px; background: var(--panel);
}
.antrag.offen { border-left: 3px solid var(--gold); }
.antrag.erledigt { opacity: .65; }
.antrag.rot.offen { border-left-color: var(--red); }
.antrag.gelb.offen { border-left-color: var(--orange); }
.antrag.blau.offen { border-left-color: var(--blue); }
.antrag-kopf { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.antrag-ic { font-size: 15px; }
.antrag-art { font-size: 12.5px; font-weight: 700; }
.antrag-status { font-size: 11px; color: var(--muted); }
.antrag.offen .antrag-status { color: var(--gold); font-weight: 700; }
.antrag-ziel { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.antrag-grund {
font-size: 13.5px; line-height: 1.45; color: var(--text-2);
white-space: pre-wrap; word-break: break-word;
}
.antrag-von { font-size: 11px; color: var(--dim); margin-top: 6px; }
.antrag-knoepfe { display: flex; gap: 8px; margin-top: 10px; }
.antrag-knoepfe .btn { flex: 1; }
.schirm-gitter {
display: grid; gap: 12px; margin: 10px 0;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.schirm-kachel {
border: 1px solid var(--line); border-radius: var(--r-md);
overflow: hidden; background: var(--panel);
}
.schirm-kachel:active { border-color: var(--blue); }
.schirm-rahmen {
position: relative; aspect-ratio: 4 / 3; background: #05070c;
display: grid; place-items: center;
}
.schirm-platz { color: var(--dim); font-size: 20px; }
.schirm-bild {
position: absolute; inset: 0; width: 100%; height: 100%;
object-fit: contain; opacity: 0; transition: opacity .2s ease;
}
.schirm-bild.da { opacity: 1; }
.schirm-fuss { padding: 7px 9px 8px; }
.schirm-name {
font-size: 13px; font-weight: 700;
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.schirm-ort {
font-size: 11px; color: var(--muted);
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bann-box { text-align: center; }
.bann-zeichen { font-size: 54px; line-height: 1; margin-bottom: 8px; }
.bann-grund {
font-size: 15px; color: var(--text); margin: 10px 0 4px; line-height: 1.4;
}
.bann-von { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.gate-bann { gap: 4px; }
.thumb.rot { background: rgba(255, 95, 107, .16); }
.schirm-beobachter-popup {
position: fixed;
top: 14px;
left: 14px;
z-index: 2147483000;
display: none;
align-items: center;
gap: 8px;
background: rgba(18, 22, 32, 0.94);
color: #ffcc00;
border: 1px solid rgba(255, 204, 0, 0.45);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 204, 0, 0.25);
border-radius: 999px;
padding: 7px 16px 7px 11px;
font: 600 13px/1.2 var(--ui);
pointer-events: none;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
animation: pulseBeobachter 2.2s infinite ease-in-out;
}
.schirm-beobachter-popup.aktiv {
display: flex;
}
.schirm-beobachter-popup .sb-icon {
font-size: 16px;
line-height: 1;
}
@keyframes pulseBeobachter {
0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 204, 0, 0.2); }
50% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 18px rgba(255, 204, 0, 0.45); }
}
.tarnung { display: none !important; }
.tarn-bild { position: absolute; inset: 0; background: #fff; }
.tarn-bild img {
position: absolute; inset: 0;
width: 100%; height: 100%; object-fit: cover; object-position: top center;
display: none;
}
.tarn-bild img.an { display: block; }
.tarn-dok {
position: absolute; inset: 0; overflow: hidden;
background: #f2f3f5;
display: flex; flex-direction: column;
}
.td-leiste {
flex: 0 0 auto; display: flex; align-items: center; gap: 12px;
padding: max(10px, var(--sat)) 16px 10px;
background: #ffffff; border-bottom: 1px solid #d8dce2;
font: 13px/1 var(--ui); color: #3c4655;
}
.td-zurueck { font-size: 20px; color: #2a6df5; line-height: 1; }
.td-name {
font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.td-spacer { flex: 1; }
.td-seite { color: #7b8698; font-variant-numeric: tabular-nums; }
.td-werkzeug { color: #2a6df5; font-size: 16px; }
.td-seite-blatt {
flex: 1 1 auto; overflow: hidden;
background: #fff; margin: 14px auto; padding: 30px 34px;
width: min(760px, calc(100% - 28px));
box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
font-family: Georgia, "Times New Roman", serif;
color: #14181f;
}
.td-kapitel {
font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
color: #7b8698; margin-bottom: 6px; font-family: var(--ui);
}
.td-seite-blatt h1 { font-size: 22px; margin: 0 0 12px; line-height: 1.25; }
.td-seite-blatt h2 { font-size: 15px; margin: 16px 0 6px; }
.td-seite-blatt p { font-size: 14px; line-height: 1.65; margin: 0 0 10px; text-align: justify; }
.td-kasten {
border-left: 3px solid #2a6df5; background: #eef3ff;
padding: 10px 12px; margin: 12px 0; font-size: 13.5px; line-height: 1.55;
}
.td-kasten-titel {
font-family: var(--ui); font-size: 11px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase; color: #2a6df5;
margin-bottom: 4px;
}
.td-bild { margin: 14px 0; }
.td-bild-flaeche {
height: 120px; border: 1px solid #d8dce2; border-radius: 4px;
background:
radial-gradient(circle at 30% 60%, rgba(42, 109, 245, .18) 0 22%, transparent 22%),
radial-gradient(circle at 68% 40%, rgba(240, 160, 40, .2) 0 18%, transparent 18%),
repeating-linear-gradient(115deg, #f7f8fa 0 12px, #eef0f4 12px 24px);
}
.td-bild-text {
font-family: var(--ui); font-size: 11.5px; color: #7b8698;
margin-top: 5px; text-align: center;
}
.tarn-suche {
position: absolute; inset: 0; overflow: hidden;
padding: max(18px, var(--sat)) 22px 18px;
max-width: 720px; margin: 0 auto;
}
.ts-leiste {
display: flex; align-items: center; gap: 10px;
border: 1px solid #d2d8e2; border-radius: 999px;
padding: 10px 16px; margin-bottom: 8px;
box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
}
.ts-feld { flex: 1; font-size: 15px; color: #1d2530; }
.ts-lupe { color: #7b8698; }
.ts-zahl { font-size: 12px; color: #7b8698; margin-bottom: 18px; }
.ts-treffer { margin-bottom: 20px; }
.ts-url { font-size: 12px; color: #3c6b3f; margin-bottom: 2px; }
.ts-titel { font-size: 17px; color: #1a3ea8; margin-bottom: 3px; }
.ts-text { font-size: 13px; color: #45505f; line-height: 1.5; }
.tarn-notiz {
position: absolute; inset: 0; overflow: hidden;
background: #fdfcf6;
padding: max(18px, var(--sat)) 0 0;
}
.tn-kopf {
font-size: 12px; color: #8a8574; padding: 0 28px 8px;
border-bottom: 1px solid #e6e0cd; margin-bottom: 2px;
}
.tn-blatt {
padding: 6px 28px; max-width: 720px; margin: 0 auto;
font-family: "Bradley Hand", "Segoe Script", "Comic Sans MS", cursive;
color: #1e3a6b; font-size: 17px;
}
.tn-zeile {
min-height: 30px; line-height: 30px;
border-bottom: 1px solid #e6e0cd;
white-space: pre;
}
.bnd-knopf {
position: relative; display: flex; align-items: center; gap: 14px;
width: 100%; margin: 0 0 16px; padding: 14px 16px;
border-radius: var(--r-lg); overflow: hidden;
background: linear-gradient(135deg, #0a1626 0%, #12283f 55%, #0b1a2b 100%);
border: 1px solid #2a5a86; color: var(--text); text-align: left;
box-shadow: inset 0 1px 0 rgba(160, 210, 255, .12), var(--shadow-sm);
}
.bnd-knopf:active { border-color: #7fb5e6; }
.bnd-knopf.alarm { border-color: var(--red); }
.bnd-knopf-wappen {
flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
display: grid; place-items: center; font-size: 24px;
background: rgba(127, 181, 230, .12); border: 1px solid rgba(127, 181, 230, .3);
}
.bnd-knopf-text { flex: 1; min-width: 0; }
.bk-t {
font-size: 15px; font-weight: 800; letter-spacing: .04em;
text-transform: uppercase; color: #dce9f7;
}
.bk-d { font-size: 12px; color: #8fb2d4; margin-top: 2px; }
.bnd-knopf-zahl {
flex: 0 0 auto; min-width: 26px; height: 26px; padding: 0 8px;
border-radius: 999px; display: none; place-items: center;
background: var(--red); color: #2a0308; font-size: 13px; font-weight: 800;
}
.bnd-knopf-zahl.an { display: grid; }
.bnd-knopf-scan {
position: absolute; inset: 0; pointer-events: none;
background: linear-gradient(100deg, transparent 30%,
rgba(160, 210, 255, .13) 50%, transparent 70%);
transform: translateX(-100%);
animation: bnd-scan 4.5s linear infinite;
}
@keyframes bnd-scan { to { transform: translateX(100%); } }
.bnd-schleuse {
position: relative; min-height: 100%;
display: flex; flex-direction: column; align-items: center; justify-content: center;
background: radial-gradient(circle at 50% 34%, #0a1728 0%, #05070c 70%);
padding: calc(var(--sat) + 20px) 18px calc(var(--sab) + 20px);
}
.bnd-vorspann { width: min(640px, 100%); height: auto; }
.bnd-weg {
position: absolute; left: calc(var(--sal) + 12px); top: calc(var(--sat) + 12px);
background: rgba(255, 255, 255, .06); border: 1px solid var(--line);
color: var(--text-2); border-radius: 999px; padding: 7px 14px; font-size: 13px;
}
.bnd-kopf { text-align: center; margin-bottom: 18px; }
.bnd-wappen { font-size: 44px; line-height: 1; }
.bnd-titel {
font-size: 15px; font-weight: 800; letter-spacing: .12em; color: #dce9f7;
margin-top: 6px;
}
.bnd-unter { font-size: 12px; color: #8fb2d4; margin-top: 4px; }
.bnd-punkte { margin: 6px auto 10px; }
.bnd-punkte .pin-punkt.voll { background: #7fb5e6; box-shadow: 0 0 10px #7fb5e6; }
.bnd-meldung {
min-height: 20px; font-size: 13px; color: var(--gold-2);
text-align: center; margin-bottom: 8px;
}
.bnd-feld .pintaste {
background: rgba(127, 181, 230, .08); border-color: rgba(127, 181, 230, .22);
}
.bnd-scanner {
position: relative; width: 150px; height: 150px; margin: 8px auto 0;
display: grid; place-items: center; border-radius: 50%;
border: 2px solid rgba(127, 181, 230, .35);
background: rgba(127, 181, 230, .05);
}
.bnd-scan-hand { font-size: 46px; filter: grayscale(.4); }
.bnd-scan-text {
position: absolute; bottom: -26px; left: 50%; transform: translateX(-50%);
white-space: nowrap; font-size: 12px; color: #8fb2d4;
}
.bnd-scan-ring {
position: absolute; inset: -2px; border-radius: 50%;
border: 2px solid transparent; border-top-color: #7fb5e6;
opacity: 0;
}
.bnd-scanner.an .bnd-scan-ring { opacity: 1; animation: bnd-dreh 1.6s linear; }
.bnd-scanner.an { background: rgba(127, 181, 230, .16); }
.bnd-scanner.gut { border-color: var(--green); background: rgba(61, 220, 132, .18); }
@keyframes bnd-dreh { to { transform: rotate(360deg); } }
.bnd-topbar { background: linear-gradient(180deg, #0a1626, var(--bg-2)); }
.bnd-agent { font-size: 11.5px; color: #8fb2d4; }
.bnd-schirm { background: radial-gradient(circle at 50% 0%, #0a1424 0%, var(--bg) 60%); }
.bnd-inhalt { padding-bottom: 24px; }
.bnd-zahlen { display: flex; gap: 10px; margin: 12px 0 16px; }
.bnd-zahl {
flex: 1; padding: 10px 12px; border-radius: var(--r-md);
background: var(--panel); border: 1px solid var(--line); text-align: center;
}
.bnd-zahl .v { font-size: 22px; font-weight: 800; }
.bnd-zahl .k { font-size: 11px; color: var(--muted); margin-top: 2px; }
.bnd-zahl.gruen .v { color: var(--green); }
.bnd-zahl.rot .v { color: var(--red); }
.bnd-ampel { position: relative; }
.bnd-ampel::after {
content: ''; position: absolute; right: -2px; bottom: -2px;
width: 12px; height: 12px; border-radius: 50%;
border: 2px solid var(--bg-2);
}
.bnd-ampel.gruen::after { background: var(--green); }
.bnd-ampel.rot::after { background: var(--red); }
.bnd-ampel.grau::after { background: var(--dim); }
.bnd-status { font-size: 11px; font-weight: 700; white-space: nowrap; }
.bnd-status.gruen { color: var(--green); }
.bnd-status.rot { color: var(--red); }
.bnd-status.grau { color: var(--dim); }
.bnd-alarm { border-color: rgba(255, 95, 107, .45); }
.bnd-akte-kopf {
padding: 12px 14px; border-radius: var(--r-md); margin-bottom: 10px;
background: var(--panel-2); border-left: 3px solid var(--line);
}
.bnd-akte-kopf.rot { border-left-color: var(--red); }
.bnd-akte-kopf.gruen { border-left-color: var(--green); }
.bnd-akte-name { font-size: 18px; font-weight: 800; }
.bnd-akte-kennung {
font-family: var(--mono); font-size: 13px; color: #8fb2d4; margin-top: 2px;
letter-spacing: .08em;
}
.bnd-akte-lage { font-size: 12px; color: var(--muted); margin-top: 4px; }
.bnd-geraet {
padding: 8px 11px; border-radius: 10px; margin-bottom: 6px;
background: rgba(255, 255, 255, .03); border: 1px solid var(--line-soft);
}
.bnd-geraet.fremd { border-color: rgba(255, 95, 107, .4); background: rgba(255, 95, 107, .06); }
.bg-art { font-size: 13.5px; font-weight: 700; }
.bg-zeit { font-size: 11px; color: var(--dim); margin-top: 2px; }
.bg-warn { font-size: 11px; font-weight: 700; color: var(--red); margin-top: 3px; }
@media (prefers-reduced-motion: reduce) {
.bnd-knopf-scan { animation: none; opacity: 0; }
.umfrage-balken i { transition: none; }
}
.gate-warnung {
margin-top: 8px; font-size: 12.5px; color: var(--gold-2);
text-align: center; min-height: 16px;
}
.verhoer-tuer {
min-height: 100%;
display: flex; flex-direction: column;
background: radial-gradient(circle at 50% 20%, #180a0d 0%, #05070c 65%);
padding: calc(var(--sat) + 16px) 14px calc(var(--sab) + 10px);
}
.vt-kopf { text-align: center; flex: 0 0 auto; }
.vt-wappen { font-size: 38px; line-height: 1; }
.vt-titel {
font-size: 13px; font-weight: 800; letter-spacing: .12em;
color: #f0d6d8; margin-top: 6px;
}
.vt-unter { font-size: 11.5px; color: #b08a8e; margin-top: 3px; }
.vt-warte {
flex: 1 1 auto; display: flex; flex-direction: column;
align-items: center; justify-content: center; gap: 8px;
transition: flex-grow .5s ease, padding .5s ease;
}
.vt-warte.klein { flex: 0 0 auto; padding: 10px 0 6px; }
.vt-warte.klein .vt-punkte { display: none; }
.vt-warte.klein .vt-text { font-size: 13px; }
.vt-warte.klein .vt-text2 { display: none; }
.vt-text { font-size: 19px; font-weight: 700; color: var(--text); text-align: center; }
.vt-text2 { font-size: 14px; color: var(--muted); text-align: center; }
.vt-punkte { display: flex; gap: 8px; margin-bottom: 10px; }
.vt-punkte i {
width: 10px; height: 10px; border-radius: 50%; background: var(--red);
animation: vt-blink 1.2s ease-in-out infinite;
}
.vt-punkte i:nth-child(2) { animation-delay: .18s; }
.vt-punkte i:nth-child(3) { animation-delay: .36s; }
@keyframes vt-blink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
.vt-raum {
flex: 1 1 auto; min-height: 0; display: none; flex-direction: column;
border: 1px solid var(--line); border-radius: var(--r-md);
overflow: hidden; background: var(--bg-2); margin-top: 8px;
}
.vt-raum.an { display: flex; animation: sg-up .3s ease both; }
.vt-raum .chatliste { padding: 12px; }
.vt-raum .chat-leiste { padding: 8px; }
.bnd-alarm-fenster {
position: fixed; right: calc(var(--sar) + 12px); bottom: calc(var(--sab) + 12px);
z-index: 1600; width: min(320px, calc(100vw - 24px));
background: #14090c; border: 1px solid var(--red);
border-radius: var(--r-md); overflow: hidden;
box-shadow: 0 18px 46px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 95, 107, .2);
transform: translateY(20px); opacity: 0;
transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .28s ease;
}
.bnd-alarm-fenster.an { transform: none; opacity: 1; }
.baf-balken {
height: 3px;
background: linear-gradient(90deg, var(--red), #ff9c3f, var(--red));
background-size: 200% 100%;
animation: baf-lauf 1.6s linear infinite;
}
@keyframes baf-lauf { to { background-position: -200% 0; } }
.baf-kopf {
display: flex; align-items: center; gap: 8px; padding: 9px 8px 6px 12px;
}
.baf-ic { font-size: 16px; }
.baf-t {
font-size: 12px; font-weight: 800; letter-spacing: .06em; color: #ffd3d7;
text-transform: uppercase;
}
.baf-leib { padding: 0 12px 10px; }
.baf-zeile { font-size: 14.5px; font-weight: 700; }
.baf-klein { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.baf-fuss { padding: 0 12px 12px; }
.vh-entscheidung {
flex: 0 0 auto; display: flex; gap: 8px;
padding: 10px calc(var(--sar) + 12px) 10px calc(var(--sal) + 12px);
border-top: 1px solid var(--line-soft); background: rgba(255, 95, 107, .06);
}
.vh-entscheidung .btn { flex: 1; }
.vh-hinweis {
flex: 1; text-align: center; font-size: 13px; color: var(--muted);
padding: 8px 0;
}
.vh-hinweis.gut { color: var(--green); }
.vh-hinweis.schlecht { color: var(--red); }
.vh-codes { display: flex; flex-wrap: wrap; gap: 6px; }
.vh-code {
display: flex; align-items: baseline; gap: 7px;
background: rgba(255, 95, 107, .10); border: 1px solid rgba(255, 95, 107, .3);
border-radius: 8px; padding: 5px 9px;
}
.vc-zahl { font-family: var(--mono); font-size: 15px; font-weight: 700; letter-spacing: .12em; }
.vc-zeit { font-size: 10.5px; color: var(--dim); }
.dev-version { font-size: 11px; color: var(--dim); font-family: var(--mono); }
.dev-inhalt { padding-bottom: 30px; }
.dev-balken {
height: 6px; border-radius: 3px; background: var(--panel-2);
overflow: hidden; margin-top: 12px; opacity: 0; transition: opacity .2s ease;
}
.dev-balken.an { opacity: 1; }
.dev-balken i {
display: block; height: 100%; width: 0;
background: linear-gradient(90deg, var(--gold), var(--gold-2));
transition: width .2s ease;
}
.dev-ergebnis { margin-top: 14px; }
.dev-zahlen { display: flex; gap: 10px; margin: 12px 0 14px; }
.dev-zeile {
display: flex; gap: 10px; align-items: flex-start;
padding: 7px 10px; border-radius: 8px;
border-left: 2px solid var(--line-soft);
background: rgba(255, 255, 255, .02); margin-bottom: 4px;
}
.dev-zeile.schlecht {
border-left-color: var(--red); background: rgba(255, 95, 107, .07);
}
.dz-ic { width: 16px; text-align: center; flex: 0 0 auto; font-size: 13px; }
.dev-zeile.schlecht .dz-ic { color: var(--red); }
.dz-haupt { flex: 1; min-width: 0; }
.dz-name { font-size: 13.5px; font-weight: 600; word-break: break-word; }
.dz-fehler { font-size: 11.5px; color: var(--muted); margin-top: 2px; word-break: break-word; }
.dz-zeit { font-size: 11px; color: var(--dim); font-variant-numeric: tabular-nums; }
.dz-stack {
font: 11px/1.45 var(--mono); color: var(--text-2); margin: 4px 0 0;
white-space: pre-wrap; word-break: break-word; max-height: 140px; overflow: auto;
}
.dev-mess { margin-top: 12px; }
.dev-balkenreihe {
display: flex; gap: 4px; align-items: flex-end; height: 90px;
padding: 6px; background: rgba(255, 255, 255, .02);
border: 1px solid var(--line-soft); border-radius: 10px; margin-bottom: 10px;
}
.dev-saeule {
flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
align-items: center; height: 100%; gap: 3px;
}
.dev-saeule i {
display: block; width: 100%; border-radius: 3px 3px 0 0;
background: linear-gradient(180deg, var(--blue), #1d4a7a);
}
.dev-saeule.weg i { background: var(--red-dim); }
.dev-saeule span { font-size: 9.5px; color: var(--dim); }
.dev-schluessel { max-height: 420px; overflow-y: auto; }
.flix-knopf {
position: relative; display: flex; align-items: center; gap: 14px;
width: 100%; margin: 0 0 16px; padding: 12px 16px;
border-radius: var(--r-lg); overflow: hidden;
background: linear-gradient(115deg, #140406 0%, #250509 55%, #120305 100%);
border: 1px solid #5a1119; color: var(--text); text-align: left;
}
.flix-knopf:active { border-color: #e50914; }
.flix-g {
flex: 0 0 auto; width: 44px; height: 52px;
display: grid; place-items: center;
font: 900 44px/1 Georgia, "Times New Roman", serif;
color: #e50914;
text-shadow: 0 0 24px rgba(229, 9, 20, .55);
}
.flix-text { flex: 1; min-width: 0; }
.fx-t {
font-size: 15px; font-weight: 800; letter-spacing: .14em; color: #f3d6d8;
}
.fx-d { font-size: 12px; color: #b07d82; margin-top: 2px; }
.flix-pfeil { flex: 0 0 auto; color: #e50914; font-size: 16px; }
.flix-vorspann {
position: fixed; inset: 0; z-index: 1500; background: #000;
display: grid; place-items: center;
transition: opacity .3s ease;
}
.flix-vorspann.weg { opacity: 0; }
.flix-leinwand { width: min(100%, 900px); height: auto; }
.flix-tipp {
position: absolute; bottom: calc(var(--sab) + 16px); left: 0; right: 0;
text-align: center; font-size: 11.5px; color: #4a4a4a;
}
.flix-topbar { background: linear-gradient(180deg, #140406, var(--bg-2)); }
.flix-marke {
font-size: 15px; font-weight: 800; letter-spacing: .16em; color: #e50914;
}
.flix-reihe { margin-bottom: 22px; }
.flix-reihe-titel { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.flix-regal {
display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px;
-webkit-overflow-scrolling: touch;
}
.flix-platz {
flex: 0 0 auto; width: 132px; aspect-ratio: 2 / 3;
border-radius: 10px; border: 1px dashed var(--line);
background: repeating-linear-gradient(45deg,
rgba(255, 255, 255, .02) 0 8px, transparent 8px 16px);
}
.flix-kopf {
position: relative; margin-bottom: 24px; min-height: 220px;
display: flex; align-items: flex-end;
border-radius: var(--r-lg); overflow: hidden;
border: 1px solid #3a0b11; background: #0b0305;
}
.flix-kopf-bild {
position: absolute; inset: 0; width: 100%; height: 100%;
object-fit: cover; opacity: .6;
}
.flix-kopf-schleier {
position: absolute; inset: 0;
background:
linear-gradient(180deg, rgba(8, 3, 5, .1) 0%, rgba(8, 3, 5, .8) 60%, #0b0305 100%),
linear-gradient(90deg, rgba(8, 3, 5, .88) 0%, rgba(8, 3, 5, .2) 72%);
}
.flix-kopf-text { position: relative; padding: 18px 18px 16px; max-width: 640px; }
.flix-kopf-marke {
font-size: 10.5px; font-weight: 800; letter-spacing: .2em;
color: #e50914; margin-bottom: 6px;
}
.flix-kopf-titel {
font-size: 24px; font-weight: 800; line-height: 1.15; color: #fff;
text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
}
.flix-kopf-kanal { font-size: 12.5px; color: #b07d82; margin-top: 4px; }
.flix-kopf-d { font-size: 13px; line-height: 1.45; color: #d8ccce; margin-top: 8px; }
.flix-kopf-knoepfe { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.btn.flix-start { background: #e50914; border-color: #ff3b47; color: #fff; }
.flix-kachel {
flex: 0 0 auto; width: 190px; padding: 0;
background: none; border: 0; color: var(--text); text-align: left;
}
.flix-kachel-bild {
position: relative; width: 100%; aspect-ratio: 16 / 9;
border-radius: 10px; overflow: hidden;
background: #14080a; border: 1px solid var(--line-soft);
}
.flix-kachel-bild img { display: block; width: 100%; height: 100%; object-fit: cover; }
.flix-kachel:active .flix-kachel-bild { border-color: #e50914; }
.flix-kachel-play {
position: absolute; right: 7px; bottom: 7px;
width: 38px; height: 38px; padding: 0;
display: grid; place-items: center;
border-radius: 999px; border: 1px solid rgba(255, 255, 255, .35);
background: rgba(10, 4, 6, .78); color: #fff; font-size: 14px;
}
.flix-kachel-play:active { background: #e50914; border-color: #ff3b47; }
.flix-kachel-titel {
margin-top: 7px; font-size: 12.5px; font-weight: 700; line-height: 1.3;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
overflow: hidden;
}
.flix-kachel-kanal { margin-top: 2px; font-size: 11px; color: #96787c; }
.flix-info-bild {
display: block; width: 100%; border-radius: 10px;
border: 1px solid var(--line-soft); background: #14080a;
}
.flix-info-kanal { margin-top: 10px; font-size: 12px; color: #b07d82; }
.flix-info-d { margin-top: 6px; font-size: 13.5px; line-height: 1.5; }
.flix-spieler {
position: fixed; inset: 0; z-index: 1900;
display: flex; flex-direction: column; background: #000;
padding-top: var(--sat); padding-bottom: var(--sab);
}
.flix-spieler-kopf {
flex: 0 0 auto; display: flex; align-items: center; gap: 10px;
padding: 8px calc(var(--sar) + 12px) 8px calc(var(--sal) + 12px);
background: linear-gradient(180deg, #140406, #000);
}
.flix-spieler-titel {
min-width: 0; font-size: 13px; font-weight: 700; color: #f3d6d8;
overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.flix-extern { flex: 0 0 auto; font-size: 12px; color: #e50914; text-decoration: none; }
.flix-buehne {
flex: 1 1 auto; min-height: 0; display: grid; place-items: center;
padding: 0 calc(var(--sar) + 10px) 10px calc(var(--sal) + 10px);
}
.flix-rahmen {
width: 100%; max-width: 1100px; max-height: 100%; aspect-ratio: 16 / 9;
border: 0; border-radius: 10px; background: #000;
}
.flix-ausweich {
width: 100%; max-width: 520px; text-align: center;
padding: 22px 18px; border-radius: var(--r-lg);
border: 1px solid #3a0b11; background: #140406;
}
.flix-ausweich-titel { font-size: 16px; font-weight: 800; color: #f3d6d8; }
.flix-ausweich-d {
margin-top: 8px; font-size: 13px; line-height: 1.5; color: #b07d82;
}
.flix-ausweich-knopf {
display: inline-block; margin-top: 16px; text-decoration: none;
background: #e50914; border-color: #ff3b47; color: #fff;
}
@media (max-width: 700px) {
.flix-kachel { width: 152px; }
.flix-kopf { min-height: 188px; }
.flix-kopf-titel { font-size: 20px; }
.flix-kopf-d { font-size: 12.5px; }
}
.btn.meeting-btn {
background: rgba(240, 180, 41, .15); border-color: rgba(240, 180, 41, .45);
color: var(--gold-2);
}
.meeting-zahl {
display: inline-grid; place-items: center; min-width: 18px; height: 18px;
padding: 0 5px; margin-left: 6px; border-radius: 999px;
background: var(--gold); color: #1a1305; font-size: 11px; font-weight: 800;
}
.meeting {
flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column;
padding: 0 calc(var(--sar) + 14px) 0 calc(var(--sal) + 14px);
}
.meeting > .tabs { margin: 10px 0 8px; flex: 0 0 auto; }
.meeting-inhalt {
flex: 1 1 auto; min-height: 0; overflow-y: auto;
-webkit-overflow-scrolling: touch; padding-bottom: calc(var(--sab) + 12px);
display: flex; flex-direction: column;
}
.meeting-tisch, .meeting-karte {
width: 100%; display: block; border-radius: var(--r-md);
background: #0b0e15; border: 1px solid var(--line-soft);
}
.meeting-karte { margin-top: 8px; touch-action: manipulation; }
.meeting-wahl { display: flex; flex-wrap: wrap; gap: 7px; }
.meeting-person {
display: flex; align-items: center; gap: 7px;
background: var(--panel-2); border: 1px solid var(--line);
border-radius: 999px; padding: 7px 13px; color: var(--text-2);
font: 13.5px/1 var(--ui);
}
.meeting-person.an {
background: rgba(240, 180, 41, .16); border-color: var(--gold);
color: var(--gold-2);
}
.mp-ic { font-size: 14px; }
.route-liste { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.route-punkt {
display: flex; align-items: center; gap: 9px;
padding: 7px 11px; border-radius: 9px;
background: rgba(240, 180, 41, .07); border: 1px solid rgba(240, 180, 41, .22);
}
.rp-nr {
display: inline-grid; place-items: center; width: 20px; height: 20px;
border-radius: 50%; background: var(--gold); color: #1a1305;
font-size: 11.5px; font-weight: 800; flex: 0 0 auto;
}
.rp-ic { font-size: 15px; }
.rp-n { font-size: 14px; font-weight: 600; }
.route-summe {
margin-top: 6px; font-size: 12.5px; color: var(--gold-2); font-weight: 600;
text-align: right;
}
.plan-gitter {
display: grid; gap: 3px; margin-top: 10px;
font-size: 12px;
}
.plan-ecke { }
.plan-tag {
text-align: center; font-size: 12px; font-weight: 800; color: var(--text-2);
padding: 5px 0;
}
.plan-tag.heute { color: var(--gold-2); }
.plan-stunde {
display: grid; place-items: center; font-size: 11px; color: var(--dim);
font-variant-numeric: tabular-nums;
}
.plan-zelle {
min-height: 44px; border-radius: 8px; padding: 4px 5px;
background: rgba(255, 255, 255, .03); border: 1px solid var(--line-soft);
color: var(--text); display: flex; flex-direction: column;
align-items: center; justify-content: center; gap: 2px;
font: inherit; overflow: hidden;
}
.plan-zelle.voll { background: var(--panel-2); border-color: var(--line); }
.plan-zelle.jetzt {
border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold-dim);
}
.plan-zelle.pause { border-bottom: 2px solid rgba(74, 163, 255, .4); }
.pz-fach {
font-size: 12.5px; font-weight: 700; line-height: 1.15; text-align: center;
overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.pz-raum { font-size: 10px; color: var(--muted); }
@media (max-width: 560px) {
.plan-zelle { min-height: 38px; }
.pz-fach { font-size: 11px; }
}
@media (max-width: 620px) {
.set-row { flex-wrap: wrap; }
.set-row .txt { flex: 1 0 100%; }
.set-row .seg { width: 100%; overflow-x: auto; }
.set-row .seg button { flex: 1; white-space: nowrap; }
}
.btn.frisch .ico { display: inline-block; }
.btn.frisch.dreht { pointer-events: none; opacity: .7; }
.btn.frisch.dreht .ico { animation: frisch-dreh .7s linear infinite; }
@keyframes frisch-dreh { to { transform: rotate(360deg); } }
.chat-schloss {
width: 34px; height: 30px; display: grid; place-items: center;
font-size: 15px; color: var(--red); flex: 0 0 auto;
}
.bnd-ampel.online { box-shadow: 0 0 0 2px rgba(61, 220, 132, .45); }
.btn.meeting-btn {
background: rgba(240, 180, 41, .15); border-color: rgba(240, 180, 41, .45);
color: var(--gold-2);
}
.meeting-zahl {
display: inline-grid; place-items: center; min-width: 18px; height: 18px;
padding: 0 5px; margin-left: 6px; border-radius: 999px;
background: var(--gold); color: #1a1305; font-size: 11px; font-weight: 800;
}
.meeting {
flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column;
padding: 0 calc(var(--sar) + 14px) 0 calc(var(--sal) + 14px);
}
.meeting > .tabs { margin: 10px 0 8px; flex: 0 0 auto; }
.meeting-inhalt {
flex: 1 1 auto; min-height: 0; overflow-y: auto;
-webkit-overflow-scrolling: touch; padding-bottom: calc(var(--sab) + 12px);
display: flex; flex-direction: column;
}
.meeting-tisch, .meeting-karte {
width: 100%; display: block; border-radius: var(--r-md);
background: #0b0e15; border: 1px solid var(--line-soft);
}
.meeting-karte { margin-top: 8px; touch-action: manipulation; }
.meeting-wahl { display: flex; flex-wrap: wrap; gap: 7px; }
.meeting-person {
display: flex; align-items: center; gap: 7px;
background: var(--panel-2); border: 1px solid var(--line);
border-radius: 999px; padding: 7px 13px; color: var(--text-2);
font: 13.5px/1 var(--ui);
}
.meeting-person.an {
background: rgba(240, 180, 41, .16); border-color: var(--gold);
color: var(--gold-2);
}
.mp-ic { font-size: 14px; }
.route-liste { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.route-punkt {
display: flex; align-items: center; gap: 9px;
padding: 7px 11px; border-radius: 9px;
background: rgba(240, 180, 41, .07); border: 1px solid rgba(240, 180, 41, .22);
}
.rp-nr {
display: inline-grid; place-items: center; width: 20px; height: 20px;
border-radius: 50%; background: var(--gold); color: #1a1305;
font-size: 11.5px; font-weight: 800; flex: 0 0 auto;
}
.rp-ic { font-size: 15px; }
.rp-n { font-size: 14px; font-weight: 600; }
.route-summe {
margin-top: 6px; font-size: 12.5px; color: var(--gold-2); font-weight: 600;
text-align: right;
}
.plan-gitter {
display: grid; gap: 3px; margin-top: 10px;
font-size: 12px;
}
.plan-ecke { }
.plan-tag {
text-align: center; font-size: 12px; font-weight: 800; color: var(--text-2);
padding: 5px 0;
}
.plan-tag.heute { color: var(--gold-2); }
.plan-stunde {
display: grid; place-items: center; font-size: 11px; color: var(--dim);
font-variant-numeric: tabular-nums;
}
.plan-zelle {
min-height: 44px; border-radius: 8px; padding: 4px 5px;
background: rgba(255, 255, 255, .03); border: 1px solid var(--line-soft);
color: var(--text); display: flex; flex-direction: column;
align-items: center; justify-content: center; gap: 2px;
font: inherit; overflow: hidden;
}
.plan-zelle.voll { background: var(--panel-2); border-color: var(--line); }
.plan-zelle.jetzt {
border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold-dim);
}
.plan-zelle.pause { border-bottom: 2px solid rgba(74, 163, 255, .4); }
.pz-fach {
font-size: 12.5px; font-weight: 700; line-height: 1.15; text-align: center;
overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.pz-raum { font-size: 10px; color: var(--muted); }
@media (max-width: 560px) {
.plan-zelle { min-height: 38px; }
.pz-fach { font-size: 11px; }
}
@media (max-width: 620px) {
.set-row { flex-wrap: wrap; }
.set-row .txt { flex: 1 0 100%; }
.set-row .seg { width: 100%; overflow-x: auto; }
.set-row .seg button { flex: 1; white-space: nowrap; }
}
.btn.frisch .ico { display: inline-block; }
.btn.frisch.dreht { pointer-events: none; opacity: .7; }
.btn.frisch.dreht .ico { animation: frisch-dreh .7s linear infinite; }
@keyframes frisch-dreh { to { transform: rotate(360deg); } }
.chat-schloss {
width: 34px; height: 30px; display: grid; place-items: center;
font-size: 15px; color: var(--red); flex: 0 0 auto;
}
.bnd-ampel.online { box-shadow: 0 0 0 2px rgba(61, 220, 132, .45); }
.gameview {
position: absolute; inset: 0;
display: flex; flex-direction: column;
background: var(--bg);
overflow: hidden;
}
.gamebar {
flex: 0 0 auto;
display: flex; align-items: center; gap: 8px;
padding: calc(var(--sat) + 7px) calc(var(--sar) + 10px) 7px calc(var(--sal) + 10px);
background: #10151f;
border-bottom: 1px solid var(--line-soft);
min-height: calc(var(--sat) + 52px);
}
.gamebar .back {
width: 40px; height: 40px; flex: 0 0 auto;
border-radius: 11px; background: var(--panel-2);
display: grid; place-items: center; font-size: 19px; color: var(--text-2);
}
.gamebar .back:active { background: var(--panel-3); }
.gamebar .gtitle {
font-size: 15px; font-weight: 640; white-space: nowrap;
overflow: hidden; text-overflow: ellipsis; max-width: 34vw;
}
.gamebar .tools { display: flex; gap: 7px; align-items: center; }
.gamebar .tool {
min-width: 40px; height: 40px; padding: 0 11px;
border-radius: 11px; background: var(--panel-2);
display: inline-flex; align-items: center; justify-content: center; gap: 6px;
font-size: 13.5px; font-weight: 600; color: var(--text-2);
}
.gamebar .tool:active { background: var(--panel-3); }
.gamebar .tool.on { background: var(--gold); color: #241a04; }
.gamebar .tool.off { opacity: .4; }
.stats { display: flex; gap: 14px; align-items: center; overflow: hidden; }
.stat { line-height: 1.05; min-width: 0; }
.stat .k {
font-size: 9.5px; text-transform: uppercase; letter-spacing: .09em;
color: var(--dim); font-weight: 700;
}
.stat .v {
font-size: 17px; font-weight: 680; font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.stat.gold .v { color: var(--gold); }
.stat.green .v { color: var(--green); }
.stat.red .v { color: var(--red); }
@media (max-width: 560px) {
.stats { gap: 10px; }
.stat .v { font-size: 15px; }
.gamebar .gtitle { display: none; }
}
.stage {
flex: 1 1 auto;
position: relative;
overflow: hidden;
touch-action: none;
background: #0b0e15;
}
.stage > canvas {
position: absolute; inset: 0;
width: 100%; height: 100%;
display: block;
touch-action: none;
}
.stage.padded { padding-bottom: var(--sab); }
.sheet {
position: absolute; inset: 0;
overflow-y: auto; -webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding: 14px calc(var(--sar) + 14px) calc(var(--sab) + 18px) calc(var(--sal) + 14px);
}
.pad {
position: absolute; z-index: 20;
display: flex; gap: 10px;
pointer-events: none;
}
.pad.bottom {
left: calc(var(--sal) + 12px); right: calc(var(--sar) + 12px);
bottom: calc(var(--sab) + 12px);
justify-content: center; flex-wrap: wrap;
}
.pad.bl { left: calc(var(--sal) + 14px); bottom: calc(var(--sab) + 14px); }
.pad.br { right: calc(var(--sar) + 14px); bottom: calc(var(--sab) + 14px); }
.pbtn {
pointer-events: auto;
min-width: 62px; height: 62px; padding: 0 16px;
border-radius: 18px;
background: rgba(33, 42, 61, .82);
border: 1px solid rgba(90, 106, 140, .5);
color: var(--text);
font-size: 20px; font-weight: 650;
display: inline-flex; align-items: center; justify-content: center;
backdrop-filter: blur(6px);
transition: transform .06s ease, background .1s ease;
touch-action: none;
}
.pbtn:active, .pbtn.down {
background: rgba(240, 180, 41, .85); color: #241a04; transform: scale(.94);
}
.pbtn.sm { min-width: 48px; height: 48px; font-size: 16px; border-radius: 14px; }
.pbtn.lg { min-width: 76px; height: 76px; font-size: 24px; border-radius: 22px; }
.pbtn.label { font-size: 14px; font-weight: 650; padding: 0 18px; }
.dpad {
pointer-events: auto;
display: grid;
grid-template-columns: repeat(3, 56px);
grid-template-rows: repeat(3, 56px);
gap: 4px;
}
.dpad .pbtn { min-width: 56px; height: 56px; border-radius: 14px; font-size: 18px; }
.dpad .u { grid-area: 1 / 2; }
.dpad .l { grid-area: 2 / 1; }
.dpad .r { grid-area: 2 / 3; }
.dpad .d { grid-area: 3 / 2; }
.stick {
pointer-events: auto;
width: 118px; height: 118px; border-radius: 50%;
background: rgba(25, 31, 46, .55);
border: 1px solid rgba(90, 106, 140, .4);
position: relative; touch-action: none;
}
.stick .knob {
position: absolute; left: 50%; top: 50%;
width: 52px; height: 52px; margin: -26px 0 0 -26px;
border-radius: 50%;
background: rgba(120, 136, 174, .65);
border: 1px solid rgba(160, 176, 210, .5);
will-change: transform;
}
.gover {
position: absolute; inset: 0; z-index: 100;
display: grid; place-items: center;
background: rgba(6, 9, 15, .8);
padding: 20px;
animation: sg-fade .18s ease;
backdrop-filter: blur(4px);
}
.gover-box {
width: min(420px, 100%);
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--r-lg);
padding: 22px 20px 18px;
text-align: center;
box-shadow: var(--shadow);
animation: sg-pop .2s ease;
max-height: 100%; overflow-y: auto;
}
.gover-box h2 { font-size: 22px; margin-bottom: 4px; }
.gover-box .sub { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.gover-score {
display: flex; justify-content: center; gap: 26px; margin: 4px 0 18px;
}
.gover-score .b { text-align: center; }
.gover-score .b .k {
font-size: 10px; text-transform: uppercase; letter-spacing: .09em;
color: var(--dim); font-weight: 700;
}
.gover-score .b .v { font-size: 30px; font-weight: 700; font-variant-numeric: tabular-nums; }
.gover-score .b.gold .v { color: var(--gold); }
.gover-actions { display: flex; gap: 10px; }
.gover-actions .btn { flex: 1; }
.newbest {
display: inline-block; margin-bottom: 12px;
font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
color: #241a04; background: var(--gold); padding: 4px 12px; border-radius: 999px;
}
.hand {
display: flex; justify-content: center; align-items: flex-end;
gap: 0; padding: 6px 0;
}
.pcard {
position: relative; flex: 0 0 auto;
border-radius: 8px; background: #f7f4ec; color: #17181c;
border: 1px solid #c9c3b4;
box-shadow: 0 2px 6px rgba(0, 0, 0, .45);
transition: transform .12s ease;
font-weight: 700; line-height: 1;
display: flex; flex-direction: column; justify-content: space-between;
padding: 5px 6px;
overflow: hidden;
}
.pcard.red { color: #c62438; }
.pcard.sel { transform: translateY(-16px); box-shadow: 0 6px 14px rgba(240, 180, 41, .5); }
.pcard.dim { filter: brightness(.55) saturate(.6); }
.pcard.back {
background: repeating-linear-gradient(45deg, #1e3a63 0 6px, #16294a 6px 12px);
border-color: #0f1d36;
}
.pcard .c-top { font-size: .9em; }
.pcard .c-mid { text-align: center; font-size: 1.9em; }
.pcard .c-bot { font-size: .9em; transform: rotate(180deg); text-align: right; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th, .tbl td {
padding: 7px 8px; text-align: left; border-bottom: 1px solid var(--line-soft);
}
.tbl th {
font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em;
color: var(--dim); font-weight: 700;
}
.tbl td.num, .tbl th.num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr.hi td { background: rgba(240, 180, 41, .08); }
.kbd { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.kbd-row { display: flex; gap: 5px; justify-content: center; width: 100%; }
.key {
flex: 1 1 0; min-width: 0; max-width: 46px; height: 52px;
border-radius: 7px; background: var(--panel-3); color: var(--text);
font-size: 15px; font-weight: 650;
display: grid; place-items: center;
transition: background .1s ease, transform .06s ease;
}
.key:active { transform: scale(.93); }
.key.wide { flex: 1.6 1 0; max-width: 74px; font-size: 12.5px; }
.key.g { background: var(--green-dim); color: #dcffe9; }
.key.y { background: #7a6218; color: #ffeec0; }
.key.b { background: #171c28; color: var(--dim); }
.tut-back {
position: absolute; inset: 0; z-index: 600;
background: rgba(5, 7, 12, .88);
display: grid; place-items: center;
padding: calc(var(--sat) + 14px) 14px calc(var(--sab) + 14px);
backdrop-filter: blur(4px);
animation: sg-fade .18s ease;
}
.tut {
width: min(620px, 100%); max-height: 100%;
display: flex; flex-direction: column;
background: var(--panel); border: 1px solid var(--line);
border-radius: var(--r-lg); box-shadow: var(--shadow);
overflow: hidden; animation: sg-pop .2s ease;
}
.tut-head {
padding: 16px 18px 12px; border-bottom: 1px solid var(--line-soft);
display: flex; align-items: center; gap: 10px; flex: 0 0 auto;
}
.tut-head .kicker {
font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
color: var(--gold); font-weight: 800;
}
.tut-head h3 { font-size: 19px; margin-top: 2px; }
.tut-art {
flex: 0 0 auto; height: 168px; background: #0b0e15;
border-bottom: 1px solid var(--line-soft);
}
.tut-art canvas { display: block; width: 100%; height: 100%; }
.tut-body {
padding: 16px 18px; overflow-y: auto; -webkit-overflow-scrolling: touch;
overscroll-behavior: contain; flex: 1 1 auto;
font-size: 14.5px; color: var(--text-2); line-height: 1.55;
}
.tut-body b { color: var(--text); }
.tut-body .keyline {
display: flex; gap: 10px; align-items: flex-start; margin: 9px 0;
}
.tut-body .keyline .ic {
flex: 0 0 auto; width: 26px; height: 26px; border-radius: 7px;
background: var(--panel-2); display: grid; place-items: center; font-size: 14px;
}
.tut-foot {
display: flex; align-items: center; gap: 10px;
padding: 12px 16px; border-top: 1px solid var(--line-soft); flex: 0 0 auto;
}
.tut-dots { display: flex; gap: 6px; flex: 1; justify-content: center; }
.tut-dots i {
width: 7px; height: 7px; border-radius: 50%; background: var(--panel-3);
transition: background .2s ease, width .2s ease;
}
.tut-dots i.on { background: var(--gold); width: 18px; border-radius: 4px; }
.tyc {
position: absolute; inset: 0;
display: flex; flex-direction: column;
background: #080b11;
overflow: hidden;
}
.tyc-top {
flex: 0 0 auto;
display: flex; align-items: center; gap: 8px;
padding: calc(var(--sat) + 6px) calc(var(--sar) + 10px) 6px calc(var(--sal) + 10px);
background: linear-gradient(180deg, #131926, #0e131d);
border-bottom: 1px solid var(--line-soft);
min-height: calc(var(--sat) + 50px);
}
.tyc-res {
display: flex; gap: 12px; align-items: center; overflow-x: auto;
scrollbar-width: none; flex: 1 1 auto; min-width: 0;
}
.tyc-res::-webkit-scrollbar { display: none; }
.res {
display: flex; align-items: center; gap: 6px; flex: 0 0 auto;
padding: 4px 9px; border-radius: 10px; background: rgba(33, 42, 61, .55);
border: 1px solid var(--line-soft);
}
.res .ic { font-size: 14px; opacity: .9; }
.res .tx { line-height: 1.02; }
.res .tx .k {
font-size: 8.5px; text-transform: uppercase; letter-spacing: .08em;
color: var(--dim); font-weight: 800;
}
.res .tx .v {
font-size: 14.5px; font-weight: 680; font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.res.money .v { color: var(--gold); }
.res.up .v { color: var(--green); }
.res.down .v { color: var(--red); }
.speeds { display: flex; gap: 3px; background: var(--panel-2); border-radius: 10px; padding: 3px; flex: 0 0 auto; }
.speeds button {
min-width: 34px; height: 32px; border-radius: 8px;
font-size: 12px; font-weight: 700; color: var(--muted);
}
.speeds button.on { background: var(--gold); color: #241a04; }
.tyc-main { flex: 1 1 auto; position: relative; overflow: hidden; touch-action: none; }
.tyc-main > canvas {
position: absolute; inset: 0; width: 100%; height: 100%;
display: block; touch-action: none;
}
.tyc-hint {
position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
z-index: 30; max-width: 52%;
background: rgba(11, 14, 21, .92); border: 1px solid var(--line);
border-radius: 999px; padding: 7px 16px;
font-size: 13px; color: var(--text-2); text-align: center;
pointer-events: none;
}
.tyc-hint b { color: var(--gold); }
.tyc-alerts {
position: absolute; top: 10px; right: 10px; z-index: 30;
display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
max-width: 40%;
}
.alert {
pointer-events: auto;
display: flex; align-items: center; gap: 8px;
background: rgba(17, 22, 34, .95); border: 1px solid var(--line);
border-left: 3px solid var(--blue);
border-radius: 10px; padding: 7px 12px; font-size: 12.5px;
box-shadow: var(--shadow-sm);
animation: sg-up .2s ease;
max-width: 100%;
}
.alert.warn { border-left-color: var(--gold); }
.alert.bad { border-left-color: var(--red); }
.alert.good { border-left-color: var(--green); }
.alert .ic { font-size: 15px; flex: 0 0 auto; }
.alert .tx { flex: 1; min-width: 0; }
.tyc-dock {
flex: 0 0 auto;
display: flex; align-items: center; gap: 8px;
padding: 8px calc(var(--sar) + 10px) calc(var(--sab) + 8px) calc(var(--sal) + 10px);
background: #10151f; border-top: 1px solid var(--line-soft);
overflow-x: auto; scrollbar-width: none;
}
.tyc-dock::-webkit-scrollbar { display: none; }
.dockbtn {
flex: 0 0 auto;
min-width: 66px; height: 56px;
border-radius: 13px; background: var(--panel-2);
border: 1px solid var(--line-soft);
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 2px; padding: 0 10px;
}
.dockbtn:active { background: var(--panel-3); transform: scale(.96); }
.dockbtn.on { background: var(--gold); border-color: var(--gold); color: #241a04; }
.dockbtn .ic { font-size: 19px; line-height: 1; }
.dockbtn .lb { font-size: 10.5px; font-weight: 650; letter-spacing: .01em; }
.dockbtn .dotmark {
position: absolute; top: 6px; right: 8px; width: 7px; height: 7px;
border-radius: 50%; background: var(--red);
}
.dockbtn { position: relative; }
.drawer-back {
position: absolute; inset: 0; z-index: 400;
background: rgba(5, 7, 12, .55);
animation: sg-fade .15s ease;
}
.drawer {
position: absolute; top: 0; right: 0; bottom: 0;
width: min(440px, 92%);
display: flex; flex-direction: column;
background: var(--panel); border-left: 1px solid var(--line);
box-shadow: -12px 0 40px rgba(0, 0, 0, .5);
animation: sg-slide-r .22s ease;
}
@keyframes sg-slide-r { from { transform: translateX(100%); } to { transform: none; } }
.drawer.left {
left: 0; right: auto; border-left: 0; border-right: 1px solid var(--line);
animation: sg-slide-l .22s ease;
}
@keyframes sg-slide-l { from { transform: translateX(-100%); } to { transform: none; } }
.drawer-head {
flex: 0 0 auto; display: flex; align-items: center; gap: 10px;
padding: calc(var(--sat) + 13px) 14px 11px;
border-bottom: 1px solid var(--line-soft);
}
.drawer-head h3 { font-size: 17px; flex: 1; }
.drawer-body {
flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding: 14px 14px calc(var(--sab) + 18px);
}
.drawer-foot {
flex: 0 0 auto; display: flex; gap: 8px;
padding: 10px 14px calc(var(--sab) + 12px);
border-top: 1px solid var(--line-soft);
}
.drawer-foot .btn { flex: 1; }
.tabs {
display: flex; gap: 4px; background: var(--panel-2); border-radius: 11px;
padding: 3px; margin-bottom: 13px; overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
flex: 1 0 auto; padding: 8px 13px; border-radius: 9px;
font-size: 13px; font-weight: 620; color: var(--muted); white-space: nowrap;
}
.tabs button.on { background: var(--panel-3); color: var(--text); }
.item {
display: flex; gap: 11px; align-items: center;
padding: 11px; border-radius: var(--r-md);
background: var(--panel-2); border: 1px solid var(--line-soft);
margin-bottom: 8px;
}
.item.tap:active { background: var(--panel-3); }
.item.locked { opacity: .5; }
.item.sel { border-color: var(--gold); background: rgba(240, 180, 41, .08); }
.item .thumb {
width: 46px; height: 46px; flex: 0 0 auto; border-radius: 11px;
background: #0d1220; display: grid; place-items: center; font-size: 21px;
border: 1px solid var(--line-soft);
}
.item .main { flex: 1; min-width: 0; }
.item .main .t {
font-size: 14.5px; font-weight: 640;
display: flex; align-items: center; gap: 6px;
}
.item .main .d { font-size: 12px; color: var(--muted); margin-top: 1px; }
.item .side { flex: 0 0 auto; text-align: right; }
.item .side .p {
font-size: 14px; font-weight: 680; color: var(--gold);
font-variant-numeric: tabular-nums;
}
.item .side .s { font-size: 11px; color: var(--dim); }
.kv {
display: grid; grid-template-columns: auto 1fr; gap: 4px 12px;
font-size: 13px; margin: 8px 0;
}
.kv dt { color: var(--muted); }
.kv .kv-row {
grid-column: 1 / -1;
display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
min-width: 0;
}
.kv .kv-row .k { color: var(--muted); min-width: 0; }
.kv .kv-row .v {
text-align: right; font-weight: 600; font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.kv dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.kv dd.g { color: var(--green); }
.kv dd.r { color: var(--red); }
.kv dd.gold { color: var(--gold); }
.pips { display: flex; gap: 3px; }
.pips i {
width: 12px; height: 5px; border-radius: 2px; background: var(--panel-3);
}
.pips i.on { background: var(--gold); }
.tagline { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }
.tag {
font-size: 10.5px; font-weight: 650; padding: 2px 7px; border-radius: 5px;
background: var(--panel-3); color: var(--text-2);
}
.tag.g { background: var(--green-dim); color: #d6ffe8; }
.tag.r { background: var(--red-dim); color: #ffd8dc; }
.tag.b { background: var(--blue-dim); color: #cfe6ff; }
.tag.y { background: var(--gold-dim); color: #ffeec4; }
.chart { width: 100%; height: 110px; display: block; }
.chart-legend {
display: flex; gap: 12px; font-size: 11.5px; color: var(--muted);
margin-top: 6px; flex-wrap: wrap;
}
.chart-legend i {
display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 4px;
}
.logbox {
background: #0a0d14; border: 1px solid var(--line-soft);
border-radius: var(--r-sm); padding: 10px 12px;
max-height: 220px; overflow-y: auto; -webkit-overflow-scrolling: touch;
font-size: 12.5px; line-height: 1.6;
}
.logline { display: flex; gap: 8px; animation: sg-fade .2s ease; }
.logline .tm { color: var(--dim); flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.logline.ok { color: #b9f2d1; }
.logline.no { color: #ffc9ce; }
.logline.hi { color: var(--gold); }
.phase {
display: flex; align-items: center; gap: 10px;
padding: 9px 11px; border-radius: 10px; margin-bottom: 6px;
background: var(--panel-2); border: 1px solid var(--line-soft);
}
.phase.done { border-color: var(--green-dim); }
.phase.fail { border-color: var(--red-dim); }
.phase.now { border-color: var(--gold); background: rgba(240, 180, 41, .07); }
.phase .st { width: 24px; text-align: center; font-size: 15px; flex: 0 0 auto; }
.phase .nm { flex: 1; font-size: 13.5px; font-weight: 600; }
.phase .ch { font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.mapinfo {
position: absolute; left: 10px; bottom: 10px; z-index: 30;
background: rgba(11, 14, 21, .93); border: 1px solid var(--line);
border-radius: var(--r-md); padding: 10px 13px; font-size: 12.5px;
max-width: 260px;
}
.mapinfo h4 { font-size: 14px; margin-bottom: 4px; }
.wp .tyc-main { background: #070a10; }
.wp-dock {
flex: none;
display: flex;
flex-direction: column;
gap: 7px;
padding: 8px 10px calc(8px + var(--sab, 0px));
background: var(--panel);
border-top: 1px solid var(--line-soft);
}
.wp-palette {
display: flex;
flex-wrap: wrap;
gap: 5px;
justify-content: center;
}
.wp-farbe {
width: 30px; height: 30px;
flex: none;
border: 2px solid rgba(255, 255, 255, .13);
border-radius: 7px;
background: #222;
cursor: pointer;
padding: 0;
transition: transform .12s ease, border-color .12s ease;
}
.wp-farbe:active { transform: scale(.9); }
.wp-farbe.on {
border-color: var(--gold);
transform: scale(1.14);
box-shadow: 0 0 0 2px rgba(240, 180, 41, .28);
}
.wp-farbe.radier {
background:
linear-gradient(45deg, transparent 44%, var(--red) 44%, var(--red) 56%, transparent 56%),
var(--panel-2);
}
.wp-werkzeuge {
display: flex;
flex-wrap: wrap;
gap: 6px;
justify-content: center;
align-items: center;
}
.wp-fuss {
position: absolute;
left: 10px;
bottom: 10px;
padding: 5px 11px;
font-size: 12px;
font-variant-numeric: tabular-nums;
color: var(--text-2);
background: rgba(7, 10, 16, .78);
border: 1px solid var(--line-soft);
border-radius: 999px;
pointer-events: none;
}
@media (max-width: 700px) {
.wp-farbe { width: 26px; height: 26px; }
.wp-fuss { font-size: 11px; }
}
.biz-firma {
position: relative; overflow: hidden;
background: var(--panel-2); border: 1px solid var(--line-soft);
border-radius: var(--r-md); padding: 11px 12px 11px 14px; margin-bottom: 9px;
}
.biz-firma::before {
content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
background: var(--bf, var(--line));
}
.biz-firma.neu { border-style: dashed; }
.biz-firma.neu .biz-kopf .ic { filter: grayscale(.4); opacity: .8; }
.biz-kopf { display: flex; align-items: center; gap: 10px; }
.biz-kopf .ic {
width: 42px; height: 42px; flex: 0 0 auto; border-radius: 11px;
display: grid; place-items: center; font-size: 20px;
background: #0d1220; border: 1px solid var(--line-soft);
}
.biz-kopf .nm { flex: 1; min-width: 0; }
.biz-kopf .nm .t {
font-size: 14.5px; font-weight: 650;
display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.biz-kopf .nm .s { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.biz-stufe {
flex: 0 0 auto; font-size: 12px; font-weight: 700; color: var(--gold-2);
font-variant-numeric: tabular-nums;
background: rgba(240, 180, 41, .14); border-radius: 7px; padding: 3px 8px;
}
.biz-chip {
font-size: 10px; font-weight: 700; letter-spacing: .02em;
padding: 2px 6px; border-radius: 5px;
background: var(--bfd, var(--panel-3));
color: var(--bf, var(--text-2));
}
.biz-zahlen { display: flex; align-items: baseline; gap: 8px; margin-top: 9px; flex-wrap: wrap; }
.biz-zahlen .gross {
font-size: 16px; font-weight: 700; color: var(--green);
font-variant-numeric: tabular-nums;
}
.biz-zahlen .klein { font-size: 11.5px; color: var(--dim); }
.biz-mods { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 7px; }
.biz-mod {
font-size: 10.5px; font-weight: 650; padding: 2px 6px; border-radius: 5px;
background: var(--panel-3); color: var(--text-2);
}
.biz-mod.up { background: var(--green-dim); color: #d6ffe8; }
.biz-mod.down { background: var(--red-dim); color: #ffd8dc; }
.biz-fort { height: 4px; border-radius: 3px; background: var(--panel-3); overflow: hidden; margin-top: 9px; }
.biz-fort i { display: block; height: 100%; background: var(--gold); border-radius: 3px; }
.biz-fuss { display: flex; gap: 6px; align-items: center; margin-top: 9px; }
.biz-fuss .btn { flex: 1 1 auto; }
.biz-fuss .btn.eng { flex: 0 0 auto; }
.biz-ausbau { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 8px; align-items: center; }
.biz-ausbau .stufe {
font-size: 10.5px; padding: 2px 7px; border-radius: 5px;
background: var(--panel-3); color: var(--dim);
}
.biz-ausbau .stufe.on { background: var(--green-dim); color: #d6ffe8; font-weight: 650; }
.biz-branche {
position: relative; overflow: hidden;
background: var(--panel-2); border: 1px solid var(--line-soft);
border-radius: var(--r-md); padding: 12px 12px 12px 14px; margin-bottom: 10px;
}
.biz-branche::before {
content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
background: var(--bf, var(--line));
}
.biz-branche.aus { opacity: .5; }
.biz-bkopf { display: flex; align-items: center; gap: 9px; }
.biz-bkopf .ic { font-size: 20px; flex: 0 0 auto; }
.biz-bkopf .nm { flex: 1; min-width: 0; font-size: 14.5px; font-weight: 650; }
.biz-bkopf .wert {
font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums;
flex: 0 0 auto;
}
.biz-messe { margin-top: 10px; }
.biz-messe .zeile {
display: flex; justify-content: space-between; gap: 8px;
font-size: 11.5px; color: var(--muted); margin-bottom: 3px;
}
.biz-messe .zeile b { color: var(--text-2); font-variant-numeric: tabular-nums; }
.biz-messe .balken {
height: 6px; border-radius: 4px; background: var(--panel-3); overflow: hidden;
margin-bottom: 9px;
}
.biz-messe .balken i { display: block; height: 100%; border-radius: 4px; background: var(--bf, var(--blue)); }
.biz-messe .balken i.warn { background: var(--gold); }
.biz-messe .balken i.bad { background: var(--red); }
.biz-gross {
font-size: 27px; font-weight: 750; font-variant-numeric: tabular-nums;
text-align: center; margin: 2px 0 0; line-height: 1.2;
}
.biz-gross.schuld { color: var(--red); }
.biz-gross.frei { color: var(--green); }
.biz-gross-dazu {
text-align: center; font-size: 11.5px; color: var(--muted);
text-transform: uppercase; letter-spacing: .07em; font-weight: 700;
}
.biz-schieber { width: 100%; margin: 14px 0 4px; accent-color: var(--gold); }
.biz-anteile { display: flex; height: 10px; border-radius: 5px; overflow: hidden; margin: 10px 0 8px; }
.biz-anteile i { display: block; height: 100%; }
.biz-legende { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 11.5px; color: var(--muted); }
.biz-legende span { display: flex; align-items: center; gap: 5px; }
.biz-legende i { width: 9px; height: 9px; border-radius: 2px; flex: 0 0 auto; }
.biz-angebot {
position: relative; overflow: hidden;
background: linear-gradient(180deg, rgba(240, 180, 41, .11), rgba(240, 180, 41, .03));
border: 1px solid var(--gold-dim);
border-radius: var(--r-md); padding: 11px 12px 11px 14px; margin-bottom: 10px;
}
.biz-angebot::before {
content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
background: var(--gold);
}
.biz-angebot .biz-zahlen .gross { color: var(--gold-2); font-size: 15px; }
.biz-frist {
font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 5px;
background: var(--gold-dim); color: #ffeec4; white-space: nowrap;
}
.biz-leitung {
margin-top: 9px; padding: 9px 10px 8px;
border-radius: 10px; background: rgba(0, 0, 0, .22);
border: 1px solid var(--line-soft);
}
.biz-leitung .zeile {
display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
font-size: 12px; color: var(--muted); margin-bottom: 6px;
}
.biz-leitung .zeile b { font-variant-numeric: tabular-nums; white-space: nowrap; }
.biz-leitung .hinweis { font-size: 11.5px; color: var(--dim); }
.biz-leitung .btn + .btn { margin-top: 5px; }
.gm-game .gamebar{background:#12282d;border-color:#5f6b53}.gm-game .stage{overflow:hidden}
.gm-shell{position:absolute;inset:0;overflow:hidden;color:#f2ead8;font:16px/1.45 -apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;background:#19333c;--rarity:#e9c175}.gm-shell *{box-sizing:border-box}.gm-shell [hidden]{display:none!important}.gm-shell button,.gm-shell select{font:inherit}.gm-shell button{cursor:pointer;color:inherit;-webkit-tap-highlight-color:transparent}.gm-shell button:disabled{opacity:.5;cursor:default}.gm-shell button:focus-visible,.gm-shell select:focus-visible,.gm-world-canvas:focus-visible{outline:3px solid #ffdc96;outline-offset:3px}.gm-shell h1,.gm-shell h2,.gm-shell h3,.gm-shell p{margin:0}.gm-shell h1{font-family:Georgia,serif;font-size:clamp(24px,3vw,38px);line-height:1.1;letter-spacing:-.03em;text-shadow:0 2px #10242a}
.gm-world{position:absolute;inset:0}.gm-world-canvas{display:block;width:100%;height:100%;touch-action:none;outline:none}
.gm-hud{position:absolute;top:20px;left:24px;right:24px;display:flex;justify-content:space-between;align-items:flex-start;pointer-events:none}.gm-brand{background:linear-gradient(120deg,rgba(14,37,39,.96),rgba(14,37,39,.6));border:1px solid #72856a60;border-radius:8px 24px 24px 8px;padding:14px 22px 14px 17px;box-shadow:0 8px 30px #001e2533}.gm-eyebrow{color:#e8c588;letter-spacing:.14em;font-size:12px;font-weight:800;line-height:1.5;text-transform:uppercase}.gm-brand .gm-eyebrow{display:block;margin-bottom:4px}.gm-resource-row{display:flex;gap:18px;margin-top:11px}.gm-resource{color:#d4e6d5;font-size:14px;font-weight:600}.gm-resource:first-child{color:#edd29b}.gm-top-actions{display:flex;gap:8px;pointer-events:auto}
.gm-button,.gm-icon-button{border:1px solid #8c97715c;background:linear-gradient(#29444b,#1a343b);box-shadow:0 3px 0 #0d242b,0 6px 16px #071b2533;border-radius:9px;min-height:46px;padding:10px 15px;font-weight:700!important;line-height:1.2;touch-action:manipulation}.gm-button:active,.gm-icon-button:active{transform:translateY(2px);box-shadow:0 1px 0 #0d242b}.gm-primary{background:linear-gradient(#f2ca78,#cb9847);color:#302b1c!important;border-color:#ffdba5;box-shadow:0 4px 0 #735426,0 6px 15px #071b2555}.gm-secondary{background:#284047}.gm-icon-button{min-width:46px;padding:9px;text-align:center}.gm-camera-controls{position:absolute;top:98px;right:24px;display:grid;gap:8px}.gm-camera-controls button{font-size:24px;width:46px;height:46px}
.gm-pins{position:absolute;inset:0;pointer-events:none;overflow:hidden}.gm-map-pin{position:absolute;top:0;left:0;pointer-events:auto;display:flex;align-items:center;gap:7px;max-width:260px;min-height:44px;background:#172e35ed;border:1px solid #b49a64;border-radius:6px;padding:5px 10px 5px 5px;box-shadow:0 4px 12px #051b2a66;white-space:nowrap}.gm-map-pin:after{content:'';position:absolute;bottom:-7px;left:50%;width:12px;height:12px;transform:rotate(45deg);background:#172e35;border-bottom:1px solid #b49a64;border-right:1px solid #b49a64}.gm-map-pin.selected{border-color:#ffe3a4;background:#3e4c40}.gm-map-pin.owned{border-color:#87c6a5}.gm-map-pin.locked{opacity:.75}.gm-pin-number{background:#c1a063;color:#183139;width:29px;height:29px;display:grid;place-items:center;border-radius:4px;font-size:16px;font-weight:800;flex:none}.gm-map-pin.owned .gm-pin-number{background:#87c6a5}.gm-pin-name{font-size:13px;font-weight:700;overflow:hidden;text-overflow:ellipsis}
.gm-target{position:absolute;bottom:106px;right:24px;width:325px;padding:18px;border:1px solid #89917778;border-top:3px solid #dfb774;border-radius:12px;background:linear-gradient(140deg,#18383df5,#102c35f5);box-shadow:0 16px 30px #071e294a}.gm-target h2{font-family:Georgia,serif;font-size:27px;margin:5px 0 8px}.gm-target p{color:#c1d1c9;font-size:14px}.gm-target-badges{display:flex;flex-wrap:wrap;gap:6px 12px;color:#c9b994;font-size:12px;margin:12px 0 15px}.gm-target-actions{display:flex;gap:8px}.gm-target-actions .gm-button{font-size:14px;padding:10px 12px;flex:1}
.gm-party-bar{position:absolute;left:50%;bottom:99px;transform:translateX(-50%);display:flex;gap:7px}.gm-party-card{width:80px;padding:0 0 8px;overflow:hidden;border-radius:9px;background:#15323a;border:1px solid var(--rarity);border-bottom:3px solid var(--rarity);box-shadow:0 8px 20px #08263366}.gm-party-card img{display:block;width:100%;height:68px;object-fit:cover}.gm-party-card strong{display:block;font-size:12px;margin:5px 2px 1px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.gm-party-card span{display:block;font-size:12px;color:var(--rarity)}
.gm-dock{position:absolute;bottom:calc(env(safe-area-inset-bottom,0px) + 24px);left:50%;transform:translateX(-50%);display:flex;gap:8px;white-space:nowrap}.gm-dock button{font-size:14px}.gm-world-hint{position:absolute;bottom:12px;left:20px;color:#c0d2c8;font-size:12px;text-shadow:0 1px 4px #0b2433;pointer-events:none}.gm-joystick{position:absolute;bottom:69px;left:32px;width:122px;height:122px;display:grid;place-items:center;border:1px solid #cfdfbe88;background:#193d4666;border-radius:50%;box-shadow:inset 0 0 0 13px #9ccba619,inset 0 0 0 41px #b7cfb611;touch-action:none}.gm-joystick-knob{width:57px;height:57px;border:1px solid #e0d1a5;border-radius:50%;background:linear-gradient(140deg,#60796b,#284951);display:grid;place-items:center;font-size:26px;color:#eee0b9;box-shadow:0 5px 15px #11283288;pointer-events:none}
.gm-drawer{position:absolute;inset:16px 16px 16px auto;width:min(580px,calc(100% - 32px));overflow-y:auto;overscroll-behavior:contain;touch-action:pan-y;-webkit-overflow-scrolling:touch;border:1px solid #8a9d7b;border-radius:15px;background:#142f38fa;box-shadow:0 20px 70px #06171e99;padding:22px;z-index:6}.gm-drawer-head{display:flex;justify-content:space-between;align-items:center;gap:10px;margin:0 0 18px;position:sticky;top:-22px;background:#142f38;padding:8px 0;z-index:1}.gm-drawer h2{font-family:Georgia,serif;font-size:27px}.gm-drawer h3{font-size:17px;color:#efd5a1;margin:22px 0 8px}.gm-drawer p{color:#c8d6cf;margin:12px 0;line-height:1.6;font-size:16px}.gm-drawer>.gm-button{margin:7px 8px 7px 0}.gm-drawer-open .gm-target,.gm-drawer-open .gm-camera-controls{visibility:hidden}
.gm-collection{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.gm-collect-card{overflow:hidden;border:1px solid var(--rarity);border-bottom:3px solid var(--rarity);background:#102932;border-radius:10px;padding:0 0 9px;text-align:left}.gm-collect-card img{width:100%;aspect-ratio:1;object-fit:cover;display:block}.gm-collect-card strong,.gm-collect-card span,.gm-collect-card small{display:block;margin:5px 8px}.gm-collect-card strong{font-size:14px;line-height:1.2}.gm-collect-card span{font-size:12px;color:var(--rarity)}.gm-collect-card small{font-size:10px;color:#b0c4be;line-height:1.4}.gm-unowned img{filter:saturate(.45) brightness(.7)}
.gm-mon-hero{position:relative;width:min(100%,350px);margin:auto;border:1px solid var(--rarity);border-radius:15px;overflow:hidden;box-shadow:0 0 40px #bb944b14}.gm-mon-hero img{display:block;width:100%}.gm-rarity-label{position:absolute;bottom:0;left:0;right:0;text-align:center;padding:12px;background:#10242ed9;color:var(--rarity);font-weight:700}.gm-reveal-title{margin:0 0 18px;text-align:center;color:#ffdaa3;font-weight:800;letter-spacing:.1em;animation:gm-reveal 800ms ease both}.gm-mon-stats{background:#25464b;padding:12px;border-radius:8px}
.gm-select{width:100%;min-height:46px;color:#eee9d8;border:1px solid #6d8372;background:#203f45;border-radius:7px;padding:8px;font-size:14px!important}.gm-plan-intro{display:flex;align-items:center;gap:14px;margin:18px 0}.gm-plan-intro img{width:94px;height:94px;border-radius:10px}.gm-plan-intro p{font-size:14px;margin:5px 0 0}.gm-rule{display:grid;grid-template-columns:24px 1fr;gap:7px;margin:16px 0;padding:13px;background:#1c3c43;border:1px solid #63745c66;border-radius:10px}.gm-rule>strong{grid-row:span 2;color:#d6b67b;padding-top:23px}.gm-rule-label{display:grid;grid-template-columns:45px 1fr;align-items:center;gap:5px;font-size:14px}.gm-rule-label:last-child{color:#e5c58a}.gm-scout-card{padding:12px 16px;background:#223c41;border-left:3px solid #c57e64;margin:14px 0;border-radius:7px}.gm-scout-card h3{margin-top:0}.gm-scout-card p,.gm-report-line{font-size:14px!important}.gm-scout-rule{color:#e4d4b4!important}
.gm-in-battle .gm-target,.gm-in-battle .gm-party-bar,.gm-in-battle .gm-dock,.gm-in-battle .gm-joystick,.gm-in-battle .gm-world-hint{display:none}.gm-battle-hud{position:absolute;left:50%;transform:translateX(-50%);bottom:20px;width:min(620px,calc(100% - 32px));border:1px solid #a2906b;background:#102c35f0;border-radius:14px;padding:18px;box-shadow:0 10px 30px #071e29aa}.gm-battle-hud h2{font:25px/1.2 Georgia,serif;margin:4px 0 10px}.gm-battle-hud p{font-size:15px;color:#d7e1d8;margin:8px 0;min-height:24px}.gm-battle-bars{display:grid;grid-template-columns:repeat(4,1fr);gap:6px 12px;margin:12px 0}.gm-fighter{font-size:12px;min-width:0}.gm-fighter span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gm-fighter progress{display:block;height:6px;width:100%;border:0;appearance:none;-webkit-appearance:none;background:#3c4b47;accent-color:#7bcea4;border-radius:4px;overflow:hidden}.gm-fighter progress::-webkit-progress-bar{background:#3c4b47}.gm-fighter progress::-webkit-progress-value{background:#7bcea4}.gm-fighter.enemy progress::-webkit-progress-value{background:#ee8a70}.gm-fighter.enemy progress{accent-color:#ee8a70}.gm-battle-tools{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.gm-battle-tools button{font-size:14px}
.gm-damage{position:absolute;pointer-events:none;font-size:25px;font-weight:900;color:#ffe2a5;text-shadow:0 2px 4px #42251c;animation:gm-damage 850ms ease-out both}.gm-damage.heal{color:#9affc3}.gm-notice{position:absolute;left:50%;top:20px;transform:translate(-50%,-150%);width:max-content;max-width:min(560px,92%);background:#e4c98f;color:#1b3336;padding:14px 20px;border-radius:9px;font-size:15px;font-weight:600;box-shadow:0 5px 20px #0a222b66;transition:transform 180ms;z-index:10;pointer-events:none}.gm-notice.visible{transform:translate(-50%,0)}.gm-webgl-error{position:absolute;inset:30% 15%;text-align:center;padding:20px;background:#172e35;border:1px solid #cc9869;border-radius:12px}
@keyframes gm-damage{from{opacity:1;transform:translate(-50%,0)}to{opacity:0;transform:translate(-50%,-65px)}}@keyframes gm-reveal{from{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}
@media(min-width:1050px){.gm-party-bar{left:43%}}
@media(max-width:1049px){.gm-target{width:280px;right:16px;bottom:235px}.gm-target p{font-size:13px}.gm-hud{left:16px;right:16px;top:14px}.gm-camera-controls{right:16px}}
@media(max-width:650px){.gm-brand{padding:11px 12px}.gm-resource-row{gap:10px}.gm-resource{font-size:12px}.gm-hud{left:10px;right:10px;top:10px}.gm-brand h1{font-size:24px}.gm-top-actions{gap:4px}.gm-online-button{font-size:12px!important;padding:8px}.gm-camera-controls{right:10px;top:115px;gap:5px}.gm-target{width:245px;bottom:228px;right:10px;padding:12px}.gm-target h2{font-size:23px}.gm-target-badges{margin:8px 0}.gm-target .gm-eyebrow{font-size:10px}.gm-target-actions .gm-button{padding:9px 8px;font-size:12px}.gm-party-bar{bottom:83px;left:auto;right:10px;transform:none;gap:5px}.gm-party-card{width:61px}.gm-party-card img{height:54px}.gm-party-card strong,.gm-party-card span{font-size:10px}.gm-joystick{width:105px;height:105px;left:12px;bottom:98px}.gm-dock{bottom:20px;gap:5px}.gm-dock button{padding:10px;font-size:12px}.gm-world-hint{bottom:3px;left:10px;font-size:10px}.gm-drawer{inset:8px;width:auto;padding:16px}.gm-drawer-head{top:-16px}.gm-drawer h2{font-size:23px}.gm-collection{gap:8px}.gm-collect-card strong{font-size:12px}.gm-in-battle .gm-brand{display:none}.gm-battle-hud{bottom:10px;padding:13px}.gm-battle-hud h2{font-size:22px}}
@media(max-height:600px) and (min-width:651px){.gm-hud{top:10px}.gm-brand{padding:9px 14px}.gm-brand h1{font-size:26px}.gm-resource-row{margin-top:5px}.gm-target{bottom:20px;width:275px}.gm-party-bar{bottom:74px;left:44%}.gm-party-card{width:65px}.gm-party-card img{height:50px}.gm-party-card span{display:none}.gm-dock{bottom:16px;left:42%}.gm-dock button{padding:9px;font-size:12px}.gm-joystick{bottom:35px;width:110px;height:110px}.gm-camera-controls{top:76px;display:flex}.gm-battle-hud{left:auto;right:16px;transform:none;width:350px;bottom:14px}.gm-battle-hud p{font-size:13px}.gm-world-hint{display:none}}
@media(prefers-reduced-motion:reduce){.gm-shell *{animation-duration:1ms!important;transition-duration:1ms!important}}
.gm-party-bar{display:none}.gm-brand{padding:10px 16px;border-radius:12px;background:#123039e8}.gm-brand h1{font-size:24px}.gm-resource-row{margin-top:6px}.gm-target{bottom:96px;width:300px;padding:14px}.gm-target h2{font-size:24px}.gm-target p{font-size:14px}.gm-target .gm-eyebrow{letter-spacing:.06em}.gm-target-badges{margin:9px 0}.gm-dock{bottom:24px;gap:7px}.gm-dock button{min-width:82px}.gm-joystick{bottom:57px}.gm-world-hint{bottom:10px}.gm-squad-preview{display:flex;gap:10px;justify-content:center;margin:15px 0}.gm-squad-preview .gm-party-card{width:95px}.gm-squad-preview .gm-party-card img{height:80px}.gm-overview .gm-pin-name{display:none}.gm-overview .gm-map-pin{padding:5px;min-width:40px;max-width:45px}.gm-overview .gm-target{display:none}.gm-overview .gm-joystick{opacity:.4}.gm-game .stage{touch-action:auto}.gm-shell{touch-action:auto}
@media(max-width:1049px){.gm-target{bottom:96px;right:16px;width:285px}.gm-camera-controls{top:108px}}
@media(max-width:650px){.gm-brand h1{font-size:21px}.gm-target{width:240px;bottom:98px;right:10px}.gm-target h2{font-size:22px}.gm-target p{display:none}.gm-target .gm-eyebrow{font-size:11px}.gm-dock{width:calc(100% - 20px);gap:5px}.gm-dock button{flex:1;min-width:0;padding:10px 6px;font-size:12px}.gm-joystick{bottom:120px}.gm-squad-preview{gap:6px}.gm-squad-preview .gm-party-card{width:72px}.gm-squad-preview .gm-party-card img{height:64px}}
@media(max-height:600px) and (min-width:651px){.gm-target{bottom:84px;width:280px}.gm-target p{display:none}.gm-dock{left:50%;bottom:20px}.gm-camera-controls{top:91px}.gm-joystick{bottom:50px}}
.gm-pin-name,.gm-party-card strong,.gm-dock button,.gm-select,.gm-target-actions .gm-button{font-size:14px!important}
.gm-collect-card strong{font-size:14px}.gm-collect-card small{font-size:12px}
.gm-world-hint,.gm-target .gm-eyebrow{font-size:12px}.gm-world-hint{max-width:calc(100% - 20px)}
.gm-drawer-open .gm-joystick,.gm-drawer-open .gm-pins{pointer-events:none;opacity:.35}
.gm-shell[aria-busy=true] .gm-dock,.gm-shell[aria-busy=true] .gm-top-actions{opacity:.55;pointer-events:none}
.gm-dock{bottom:calc(24px + env(safe-area-inset-bottom,0px))}
@media(max-width:650px){.gm-collection{grid-template-columns:repeat(2,minmax(0,1fr))}.gm-world-hint{display:none}.gm-resource{font-size:13px}.gm-target-actions{flex-wrap:wrap}.gm-target-actions .gm-button{flex-basis:100%}.gm-target{width:calc(100% - 145px);max-width:270px}.gm-target-badges{font-size:12px}.gm-target h2{overflow-wrap:anywhere}}
@media(max-width:380px){.gm-target{width:auto;max-width:none;left:10px;bottom:240px}.gm-target-actions{flex-wrap:nowrap}.gm-target-actions .gm-button{flex-basis:0}.gm-joystick{bottom:105px}.gm-brand .gm-eyebrow{font-size:10px}.gm-top-actions .gm-icon-button{font-size:13px}}
.gm-map-legend{position:absolute;left:24px;top:126px;display:flex;flex-wrap:wrap;gap:12px;padding:8px 11px;border-radius:8px;background:#102c35db;font-size:12px;pointer-events:none}.gm-map-legend span:before{content:'';display:inline-block;width:9px;height:9px;border-radius:2px;margin-right:6px;background:#dfa953}.gm-map-legend .own:before{background:#62d6b7}.gm-map-legend .rival:before{background:#ef7d80}.gm-map-pin.rival{border-color:#ef7d80}.gm-map-pin.rival .gm-pin-number{background:#ef7d80}
.gm-post-card{padding:16px;border:1px solid #54786c;background:#1b3a40;border-radius:12px;margin:12px 0}.gm-post-card h3{margin:0}.gm-countdown{color:#f4d68b;font-variant-numeric:tabular-nums}.gm-post-illustration{height:135px;width:160px;margin:10px auto 20px;position:relative;border-bottom:12px solid #426849;background:linear-gradient(0deg,#aaa282 0 65%,transparent 65%);clip-path:polygon(0 100%,0 40%,20% 40%,20% 25%,50% 0,80% 25%,80% 40%,100% 40%,100% 100%)}.gm-post-illustration:before{content:'';position:absolute;inset:48px 26px 0;background:linear-gradient(90deg,transparent 25%,#263739 25% 45%,transparent 45% 65%,#edbf60 65% 79%,transparent 79%);border-top:10px solid #2e6c68}.gm-post-illustration.level-2{width:190px;height:155px;clip-path:polygon(0 100%,0 20%,8% 20%,8% 0,24% 0,24% 20%,35% 20%,50% 5%,65% 20%,82% 20%,82% 40%,100% 40%,100% 100%)}.gm-post-illustration.level-3{height:180px;width:220px;filter:drop-shadow(0 0 12px #e8b85755);clip-path:polygon(0 100%,0 12%,8% 12%,8% 0,22% 0,22% 12%,32% 12%,32% 28%,44% 28%,44% 16%,57% 16%,57% 28%,69% 28%,69% 12%,79% 12%,79% 0,93% 0,93% 12%,100% 12%,100% 100%)}
.gm-egg-card{display:flex;align-items:center;gap:24px;padding:18px;border:1px solid #5e796b;border-radius:14px;background:#19373f;margin:14px 0}.gm-egg-card h3{margin:0}.gm-egg-card p{font-size:14px}.gm-egg{width:70px;height:90px;flex:none;position:relative;align-self:center;border:2px solid #ead09c;border-radius:50% 50% 44% 44% / 62% 62% 38% 38%;background:radial-gradient(ellipse at 28% 34%,#47685d 0 9%,transparent 10%),radial-gradient(ellipse at 66% 65%,#517c68 0 15%,transparent 16%),radial-gradient(ellipse at 56% 20%,#6e8966 0 5%,transparent 6%),linear-gradient(110deg,#f2e6bd,#caba84);box-shadow:inset -10px -5px 15px #584b3540,0 8px 0 #071d2533}.gm-egg.ready{animation:gm-egg-wiggle 1.8s ease-in-out infinite;box-shadow:0 0 24px #f6d08266}
.gm-arena-open>.gm-hud,.gm-arena-open>.gm-pins,.gm-arena-open>.gm-target,.gm-arena-open>.gm-dock,.gm-arena-open>.gm-joystick,.gm-arena-open>.gm-camera-controls,.gm-arena-open>.gm-map-legend{display:none}.gm-arena{position:absolute;inset:0;z-index:8;display:flex;flex-direction:column;overflow:auto;overscroll-behavior:contain;touch-action:pan-y;background:#123038;color:#f4efdb;--arena-top:#264b4c;--arena-ground:#436d45;--arena-accent:#a5c876}.gm-arena.biome-1{--arena-top:#173c58;--arena-ground:#3d6f71;--arena-accent:#82c8c1}.gm-arena.biome-2{--arena-top:#48343a;--arena-ground:#77634d;--arena-accent:#eeae73}.gm-arena.biome-3{--arena-top:#2e294e;--arena-ground:#4c4b66;--arena-accent:#b7a4e8}.gm-arena.biome-4{--arena-top:#253c55;--arena-ground:#5c6770;--arena-accent:#d1dfeb}
.gm-arena-header{padding:16px 24px;display:flex;align-items:center;justify-content:space-between;gap:12px;background:#10272ded;border-bottom:1px solid #abc19444;z-index:2}.gm-arena-header strong{font-size:14px;color:#d5ddc7;white-space:nowrap}.gm-arena-scene{position:relative;min-height:270px;flex:1;overflow:hidden;background:radial-gradient(ellipse at 76% 16%,#eef4c61c,transparent 38%),linear-gradient(var(--arena-top) 0 35%,var(--arena-ground) 60% 100%)}.gm-arena-horizon{position:absolute;inset:10% -10% 32%;opacity:.65;background:var(--arena-accent);clip-path:polygon(0 82%,7% 40%,14% 70%,21% 29%,30% 57%,40% 20%,49% 72%,61% 39%,70% 60%,80% 5%,93% 60%,100% 37%,100% 100%,0 100%)}.gm-arena-scene:after{content:'';position:absolute;inset:65% 0 0;pointer-events:none;background:repeating-linear-gradient(117deg,transparent 0 35px,#c7d6940c 36px 37px,transparent 38px 53px)}
.gm-arena-unit{position:absolute;width:clamp(140px,23vw,230px);z-index:1}.gm-arena-unit.ally{left:17%;bottom:4%}.gm-arena-unit.enemy{right:14%;top:5%;width:clamp(125px,21vw,205px)}.gm-arena-mon{display:block;width:100%;aspect-ratio:1;object-fit:cover;border-radius:20% 20% 15% 15%;border:3px solid #e2d1a4;box-shadow:0 0 0 5px #18302b60,0 16px 25px #05181c70;position:relative;z-index:1;transform-origin:50% 90%}.enemy .gm-arena-mon{border-color:#f0ae93}.gm-arena-mon.fainted{filter:grayscale(1);opacity:.3;transform:translateY(25px) scale(.65)}.gm-arena-pedestal{position:absolute;bottom:3px;left:-20%;width:140%;height:40px;border-radius:50%;background:#b3c18c99;border:5px solid #23433b99;box-shadow:0 9px 0 #172f3355}.enemy .gm-arena-pedestal{background:#95b2ab99}.gm-arena-health{position:absolute;top:10px;left:calc(100% + 20px);width:185px;background:#142e33f5;border:1px solid #b7c6a577;padding:10px 12px;border-radius:10px}.enemy .gm-arena-health{left:auto;right:calc(100% + 20px);top:0}.gm-arena-health strong{display:block;font-size:17px}.gm-arena-health span{font-size:13px;color:#cfe1cd}.gm-arena-health progress{appearance:none;-webkit-appearance:none;width:100%;height:9px;display:block;margin-top:7px;border:0;border-radius:5px;overflow:hidden;background:#45534b;accent-color:#80d5a2}.gm-arena-health progress::-webkit-progress-bar{background:#45534b}.gm-arena-health progress::-webkit-progress-value{background:#80d5a2;transition:width 350ms}.enemy .gm-arena-health progress::-webkit-progress-value{background:#ed947a}.gm-arena-status{display:block;position:absolute;bottom:-24px;left:0;right:0;text-align:center;font-size:12px;color:#fff2bc;text-shadow:0 2px #203937}
.gm-arena-panel{flex:none;background:#122b34;border-top:2px solid #6b8268;padding:14px 24px 16px;z-index:2}.gm-arena-line{min-height:24px;font-size:16px;margin:0 0 12px!important;color:#e7ebd6}.gm-arena-panel h2{font:26px Georgia,serif;margin:5px 0 18px}.gm-moves{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.gm-move{border:1px solid #638581;border-bottom:3px solid #547879;background:#22464c;border-radius:11px;text-align:left;padding:11px 14px;min-height:86px;color:inherit}.gm-move strong{display:block;font-size:17px}.gm-move span{display:block;font-size:13px;color:#f0d79b;margin-top:3px}.gm-move small{display:block;font-size:12px;color:#c6d9d1;margin-top:5px}.gm-move-power{background:#654433;border-color:#ca9a62}.gm-move-special{background:#443962;border-color:#a68ad1}.gm-move-guard{background:#324e41;border-color:#8baf7a}.gm-move:disabled{opacity:.4}.gm-arena-bench{display:flex;gap:8px;margin-top:12px}.gm-bench-mon{display:flex;align-items:center;gap:9px;flex:1;min-width:0;padding:5px 9px 5px 5px;border:1px solid #6f8b7066;border-radius:9px;background:#1d3d45;text-align:left}.gm-bench-mon img{width:38px;height:38px;border-radius:5px}.gm-bench-mon span{font-size:13px;overflow:hidden;text-overflow:ellipsis}.gm-bench-mon.active{border-color:#e8cd8d}.gm-arena-footer{display:flex;align-items:center;gap:10px;justify-content:flex-end;margin-top:10px}.gm-arena-footer>span{margin-right:auto;color:#a9c0b7;font-size:12px}.gm-arena-footer .gm-button{min-height:38px;font-size:13px;padding:8px 12px}.gm-arena-damage{position:absolute;inset:20% 0 auto;text-align:center;font-size:34px;color:#ffe39a;z-index:4;text-shadow:0 3px #532c25;animation:gm-damage 800ms both;pointer-events:none}.gm-throw-orb{display:none}.gm-send .gm-arena-mon{animation:gm-mon-arrive 850ms cubic-bezier(.2,.8,.3,1) both}.gm-send .gm-throw-orb{display:block;position:absolute;left:45%;bottom:20%;width:24px;height:24px;border:3px solid #f6dda0;border-radius:50%;background:linear-gradient(#4ca59b 45%,#172c30 45% 56%,#f1d698 56%);z-index:3;animation:gm-orb-throw 750ms ease-out both}.gm-attack.ally .gm-arena-mon{animation:gm-lunge 550ms ease}.gm-attack.enemy .gm-arena-mon{animation:gm-lunge-back 550ms ease}.gm-hit .gm-arena-mon{animation:gm-hit 500ms ease}.gm-heal .gm-arena-mon{animation:gm-heal 650ms ease}
@keyframes gm-mon-arrive{0%,40%{opacity:0;transform:scale(.05) translateY(-80px)}70%{opacity:1;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}@keyframes gm-orb-throw{0%{opacity:1;transform:translate(-240px,100px) rotate(-360deg)}55%{opacity:1;transform:translate(0,-80px) rotate(0)}75%{opacity:1;transform:scale(1.5)}100%{opacity:0;transform:scale(2.5)}}@keyframes gm-lunge{40%{transform:translate(42px,-20px) rotate(7deg)}}@keyframes gm-lunge-back{40%{transform:translate(-42px,20px) rotate(-7deg)}}@keyframes gm-hit{20%,60%{filter:brightness(2);transform:translateX(8px)}40%,80%{transform:translateX(-8px)}}@keyframes gm-heal{50%{filter:brightness(1.5);box-shadow:0 0 40px #a0ffa1}}@keyframes gm-egg-wiggle{0%,80%,100%{transform:rotate(0)}85%{transform:rotate(-7deg)}92%{transform:rotate(7deg)}}
@media(min-height:850px){.gm-arena-unit{width:280px}.gm-arena-unit.enemy{width:240px}.gm-arena-scene{min-height:360px}}
@media(max-width:800px){.gm-arena-unit.ally{left:8%;bottom:5%}.gm-arena-unit.enemy{right:8%}.gm-arena-health{left:calc(100% + 12px);width:150px}.enemy .gm-arena-health{right:calc(100% + 12px)}.gm-moves{grid-template-columns:repeat(2,minmax(0,1fr))}.gm-move{min-height:70px;padding:8px 12px}.gm-move strong{font-size:15px}.gm-bench-mon{flex-direction:column;gap:3px;padding:5px}.gm-bench-mon span{font-size:12px}.gm-arena-panel{padding:12px 14px}.gm-map-legend{left:14px;top:124px;max-width:calc(100% - 90px);gap:8px}}
@media(max-width:500px){.gm-arena-header{padding:11px 12px;align-items:flex-start;flex-direction:column;gap:4px}.gm-arena-header .gm-eyebrow{font-size:12px}.gm-arena-scene{min-height:310px}.gm-arena-unit.ally{left:8%;bottom:4%;width:138px}.gm-arena-unit.enemy{right:7%;top:5%;width:122px}.gm-arena-health{left:calc(100% + 10px);width:135px;top:40px;padding:8px}.enemy .gm-arena-health{right:calc(100% + 10px);top:4px}.gm-arena-health strong{font-size:15px}.gm-arena-panel{padding:12px 10px}.gm-arena-line{font-size:14px;min-height:38px}.gm-arena-bench{gap:5px}.gm-bench-mon span{font-size:12px;max-width:100%;white-space:nowrap}.gm-arena-footer{flex-wrap:wrap}.gm-arena-footer>span{width:100%}.gm-egg-card{gap:15px;padding:14px}.gm-egg{width:52px;height:72px}.gm-resource-row{flex-direction:column;gap:2px}.gm-brand h1{font-size:19px}.gm-resource{font-size:12px}.gm-map-legend{top:135px}.gm-dock button{font-size:13px!important}}
@media(max-height:560px) and (min-width:801px){.gm-arena{display:grid;grid-template-columns:1fr 350px;grid-template-rows:55px 1fr}.gm-arena-header{grid-column:1/-1}.gm-arena-panel{grid-column:2;grid-row:2;overflow-y:auto;padding:12px}.gm-arena-scene{min-height:260px;grid-column:1;grid-row:2}.gm-moves{grid-template-columns:1fr 1fr;gap:7px}.gm-move{min-height:76px;padding:8px}.gm-move strong{font-size:14px}.gm-arena-unit.ally{left:6%;width:140px}.gm-arena-unit.enemy{right:5%;width:120px}.gm-arena-health{width:125px;left:calc(100% + 8px)}.enemy .gm-arena-health{right:calc(100% + 8px)}.gm-bench-mon{flex-direction:column;padding:4px}.gm-bench-mon span{font-size:12px}.gm-arena-footer{flex-wrap:wrap}.gm-arena-footer>span{width:100%}}
@media(prefers-reduced-motion:reduce){.gm-arena *,.gm-egg{animation:none!important;transition:none!important}.gm-send .gm-throw-orb{display:none}}
.gm-connection{position:absolute;inset:0;z-index:80;display:grid;place-items:center;padding:24px;overflow:auto;background:rgba(7,17,23,.88);backdrop-filter:blur(8px)}
.gm-connection[hidden]{display:none!important}
.gm-connection-card{width:min(100%,480px);padding:clamp(22px,5vw,40px);border:1px solid #487374;border-radius:20px;background:#132d35;box-shadow:0 20px 70px #0007;color:#eef5ed}
.gm-connection-card h2{margin:16px 0 12px;font-size:clamp(24px,4vw,32px);line-height:1.2}
.gm-connection-card p{margin:12px 0 20px;font-size:16px;line-height:1.55;color:#c6d8d6}
.gm-connection-card button{min-height:48px;width:100%;font-size:16px}
.gm-disconnected>:not(.gm-world):not(.gm-connection):not(.gm-notice){visibility:hidden}
.gm-hours-label{display:block;margin-top:7px;font-size:14px;color:#c6d8d6}
.gm-hours-list{list-style:none;padding:0;margin:20px 0;border-block:1px solid #487374;font-size:16px;line-height:1.5}
.gm-hours-list li{padding:7px 0}.gm-hours-list li+li{border-top:1px solid #48737455}
.gm-closed-card .gm-next-opening,.gm-weekend-reserve{color:#f4d68b}
.gm-pins{z-index:3}.gm-hud,.gm-camera-controls,.gm-target,.gm-dock,.gm-joystick{z-index:4}
.gm-brand{border-radius:16px;background:linear-gradient(130deg,#102b35f5,#193b44dc);border-color:#88b8b033;backdrop-filter:blur(10px);box-shadow:0 12px 36px #071d3044}
.gm-map-pin{padding:8px 12px 8px 8px;border-radius:10px;gap:10px;min-width:145px;background:#102c35ed;box-shadow:0 5px 0 #071b2466,0 12px 28px #071d3044}
.gm-pin-text{display:flex;flex-direction:column;min-width:0;text-align:left;gap:3px}
.gm-pin-name{font-size:15px;line-height:1.2}.gm-pin-owner{font-size:13px;font-weight:500;color:#c4d9df;max-width:205px;overflow:hidden;text-overflow:ellipsis;line-height:1.35}
.gm-map-pin.owned .gm-pin-owner{color:#a8e4cd}.gm-map-pin.rival .gm-pin-owner{color:#ffc0b7}
.gm-target{background:linear-gradient(135deg,#16343ff5,#0e2531f5);border-radius:18px;border-color:#a9c5bd44;border-top-color:#ddba77;box-shadow:0 16px 45px #07192566;backdrop-filter:blur(12px)}
.gm-target .gm-territory-owner{font-size:14px;line-height:1.5;color:#d4e5df}.gm-target-badges{font-size:13px;gap:8px;margin:12px 0}
.gm-target-badges span:last-child{color:#c2d1b7}.gm-overview .gm-target{visibility:hidden}
.gm-peer-labels{position:absolute;inset:0;z-index:2;overflow:hidden;pointer-events:none}
.gm-peer-label{position:absolute;top:0;left:0;padding:5px 10px;border:1px solid #8fc6dd88;border-radius:7px;background:#102f3aed;box-shadow:0 3px 10px #071e2966;font-size:13px;font-weight:700;line-height:1.3;color:#e3f2f5;white-space:nowrap;max-width:180px;overflow:hidden;text-overflow:ellipsis}
.gm-arena-open .gm-peer-labels,.gm-drawer-open .gm-peer-labels{visibility:hidden}
.gm-arena.biome-4 .gm-arena-scene{background:linear-gradient(#385570,#8da9b4 52%,#d1dfdf 53%,#86a3ac)}
.gm-arena.biome-2 .gm-arena-scene{background:linear-gradient(#382f3a,#925343 52%,#6a4d40 53%,#322e32)}
@media(max-width:600px){.gm-map-pin{min-width:125px;max-width:190px;gap:7px;padding:7px}.gm-pin-name{font-size:14px}.gm-pin-owner{font-size:12px;max-width:142px}.gm-peer-label{font-size:12px;max-width:130px}.gm-target-badges{font-size:12px}.gm-top-actions .gm-online-button{max-width:150px;font-size:13px}}
.gm-chancen{display:flex;flex-direction:column;gap:2px;margin:4px 0 8px}
.gm-chance{display:flex;align-items:center;gap:8px;padding:5px 8px;border-radius:8px;background:rgba(255,255,255,.04)}
.gm-chance i{width:9px;height:9px;border-radius:50%;flex:0 0 auto}
.gm-chance span{flex:1 1 auto;font-size:13px;font-weight:600}
.gm-chance small{font-size:11px;opacity:.6}
.gm-chance strong{font-variant-numeric:tabular-nums;font-size:13px}
.gm-chancen-fuss{font-size:12px;opacity:.72}
.gm-shop-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.gm-shop-card,.gm-quest-card{padding:16px;border:1px solid #7e927866;border-radius:12px;background:linear-gradient(140deg,#203a3c,#122c34);margin:12px 0}.gm-shop-card h3,.gm-quest-card h3{margin:8px 0}.gm-shop-card .gm-button{width:100%;margin-top:10px}.gm-shop-card p{min-height:44px}.gm-quest-card progress,.gm-duel-fighter progress{width:100%;height:10px;accent-color:#a4d0a6}.gm-beginner-tip{border-left:3px solid #d9c779;padding:13px;background:#b6c88912;border-radius:0 10px 10px 0}.gm-skin-preview{width:100px;height:120px;position:relative;margin:0 auto;background:radial-gradient(ellipse at 50% 85%,var(--skin),transparent 62%);border-radius:50%;isolation:isolate}.gm-skin-preview canvas{width:100%;height:100%;object-fit:contain;image-rendering:pixelated}.gm-weapon-icon{position:absolute;right:0;bottom:15px;font-size:33px;color:#f5ddb3;text-shadow:2px 2px #15242c}.gm-encounters{position:absolute;inset:0;z-index:2;pointer-events:none;overflow:hidden}.gm-encounter-pin{position:absolute;top:0;left:0;pointer-events:auto;color:#ffdd85;border:1px solid #baa676;background:#1a323ce0;border-radius:50%;width:36px;height:36px;font-size:22px;line-height:1;box-shadow:0 0 14px #ffe39f44;cursor:pointer}.gm-encounter-pin span{position:absolute;top:100%;left:50%;transform:translateX(-50%);white-space:nowrap;background:#132c37e8;padding:5px 8px;border-radius:5px;font-size:11px;font-weight:600;color:#e5e8d7}.gm-encounter-pin.trainer{width:38px;height:46px;background:transparent;border:0;box-shadow:none;font-size:0}.gm-encounter-pin .gm-skin-preview{width:42px;height:46px}.gm-encounter-pin .gm-weapon-icon{font-size:15px;bottom:2px;right:-2px}.gm-encounter-pin.rune{animation:gm-rune-glow 2s ease-in-out infinite alternate}.gm-peer-label{pointer-events:auto;cursor:pointer}.gm-arena-open .gm-encounters,.gm-drawer-open .gm-encounters,.gm-disconnected .gm-encounters{display:none}.gm-duel-scene{display:grid;grid-template-columns:1fr 1fr;gap:30px;flex:1;min-height:280px;padding:30px max(20px,12%);align-items:center;background:radial-gradient(ellipse at 50% 100%,#787551,#283e40 65%,#172b37)}.gm-duel-fighter{text-align:center}.gm-duel-fighter .gm-skin-preview{width:145px;height:165px}.gm-duel .gm-arena-panel{display:flex;flex-wrap:wrap;gap:12px}.gm-duel .gm-arena-line,.gm-duel .gm-arena-panel>small,.gm-duel .gm-moves{width:100%}.gm-duel .gm-moves{grid-template-columns:repeat(3,minmax(0,1fr))}.gm-arena.biome-5{--arena-top:#668656;--arena-ground:#97a266;--arena-accent:#e2cb96}.gm-arena.biome-6{--arena-top:#5f3b43;--arena-ground:#be9869;--arena-accent:#efbf76}.gm-arena.biome-7{--arena-top:#302a53;--arena-ground:#665d7e;--arena-accent:#c6c1ff}.gm-arena.biome-8{--arena-top:#21172f;--arena-ground:#543548;--arena-accent:#ff527f}.gm-arena.biome-8 .gm-arena-scene{background:radial-gradient(ellipse at 50% 70%,#ae3460,#3e253f 45%,#100f22)}.gm-dock{max-width:calc(100% - 36px)}.gm-dock button{min-width:0;padding:11px 13px;white-space:nowrap}.gm-overview .gm-encounter-pin span{display:none}
@keyframes gm-rune-glow{to{box-shadow:0 0 22px #ffdf9488}}
@media(max-width:760px){.gm-dock{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));width:calc(100% - 20px);gap:5px;bottom:calc(10px + env(safe-area-inset-bottom,0px))}.gm-dock button{padding:10px 7px;font-size:12px!important}.gm-target{bottom:120px}.gm-joystick{bottom:145px}.gm-shop-grid{gap:8px}.gm-shop-card{padding:11px}.gm-duel-scene{padding:15px;gap:18px}.gm-duel-fighter .gm-skin-preview{width:110px;height:135px}.gm-duel .gm-moves{gap:6px}.gm-duel .gm-move{padding:12px 7px}.gm-duel-fighter h3{font-size:17px}}
@media(prefers-reduced-motion:reduce){.gm-encounter-pin.rune{animation:none}}
.gm-hidden-admin-trigger{border:0;background:transparent;color:inherit;font:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-align:inherit;cursor:pointer;padding:0;margin:0;display:inline;vertical-align:baseline;-webkit-appearance:none;appearance:none;touch-action:manipulation;-webkit-user-select:none;user-select:none}.gm-hidden-admin-trigger:focus-visible{outline:2px solid #ffdc96;border-radius:3px}
.gm-closed-card h2 .gm-hidden-admin-trigger{font-size:inherit;font-weight:inherit;line-height:inherit;letter-spacing:inherit;font-family:inherit;display:inline;vertical-align:baseline;width:auto;min-height:0}.gm-admin-menu{margin-top:18px;padding:16px;border:1px solid #d8b66f88;border-radius:12px;background:#0d2932f5;box-shadow:0 8px 25px #06161ccc}.gm-admin-menu strong{display:block;color:#f0ca80;font-size:18px}.gm-admin-menu p{margin:8px 0}.gm-admin-menu input{width:100%;padding:12px;border:1px solid #799297;border-radius:8px;background:#102f38;color:#fff;font-size:18px;letter-spacing:.2em;box-sizing:border-box}.gm-admin-menu .gm-button{width:100%;margin-top:10px}.gm-admin-feedback{color:#ffad8d;min-height:22px}
.gm-map-legend{top:155px}.gm-overview .gm-map-pin{min-width:130px;max-width:185px;padding:5px 8px;gap:6px}.gm-overview .gm-pin-text{display:block;min-width:0}.gm-overview .gm-pin-name{display:block;font-size:12px!important}.gm-overview .gm-pin-owner{display:block;font-size:10px;max-width:130px}.gm-overview .gm-pin-number{width:23px;height:23px;font-size:13px}
.gm-overview .gm-encounter-pin .gm-skin-preview{display:none}.gm-overview .gm-encounter-pin.trainer{font-size:16px;width:28px;height:28px;background:#173b43;border:1px solid #d7b675}
@media(max-width:500px){.gm-map-legend{top:176px;left:10px}.gm-camera-controls{top:185px}.gm-brand{max-width:195px}.gm-hours-label{font-size:11px;white-space:nowrap}.gm-overview .gm-map-pin{min-width:104px;max-width:135px}.gm-overview .gm-pin-number{display:none}.gm-overview .gm-pin-owner{max-width:118px}}
.gm-encounter-pin.trainer{width:36px;height:30px;font-size:18px;background:#19343ed9;border:1px solid #dbbc76;border-radius:8px}.gm-skin-preview{background:none;border-radius:0}.gm-skin-preview canvas{object-fit:contain}
.gm-projekte{position:absolute;left:50%;top:8px;transform:translateX(-50%);display:flex;gap:8px;z-index:6;pointer-events:none}
.gm-projekt{pointer-events:auto;display:flex;flex-direction:column;gap:3px;min-width:132px;padding:6px 10px;border-radius:12px;
background:rgba(12,18,24,.82);border:1px solid #2f4653;color:#dce8ef;font:600 11px/1.2 inherit;text-align:left}
.gm-projekt b{font-size:11px;letter-spacing:.02em}
.gm-projekt small{font-size:10px;color:#9fb5c2}
.gm-projekt-spur{display:block;height:5px;border-radius:3px;background:#20303a;overflow:hidden}
.gm-projekt-spur i{display:block;height:100%;border-radius:3px;transition:width .4s ease}
.gm-marke{justify-content:center}
.gm-marke-wert{font-size:13px;font-weight:700;letter-spacing:.01em}
.gm-tafel{margin:6px 0 0;padding-left:20px;font-size:12px;color:#b9cdd8}
.gm-tafel .gm-selbst{color:#f0b429;font-weight:700}
@media (max-width:560px){.gm-projekte{top:4px;gap:5px}.gm-projekt{min-width:104px;padding:5px 8px}}
@media (pointer:coarse){
.gm-dock button,.gm-camera-controls button,.gm-target button,.gm-projekt,
.gm-encounter-pin,.gm-map-pin,.gm-peer-label,.gm-joystick{
touch-action:manipulation;-webkit-user-select:none;user-select:none}
.gm-hud{top:12px;left:14px;right:14px;gap:8px}
.gm-hud>*{max-width:37%}
.gm-projekte{top:12px;max-width:26%;gap:6px}
.gm-projekt{min-width:0;flex:1 1 0;padding:5px 8px}
.gm-projekt b{font-size:10px}
.gm-projekt small{font-size:9px}
.gm-map-legend{display:none}
.gm-overview .gm-map-legend{display:flex;top:auto;bottom:74px}
.gm-target{width:min(268px,32vw);bottom:76px;font-size:13px}
.gm-target h3{font-size:19px;margin:2px 0 6px}
.gm-target p{margin:3px 0;line-height:1.35}
.gm-brand{padding:9px 12px}
.gm-brand h1{font-size:21px;line-height:1.15;margin:0}
.gm-brand .gm-eyebrow{font-size:9px}
.gm-resource-row,.gm-hours-label{font-size:11px;line-height:1.3}
.gm-target button{min-height:44px}
.gm-camera-controls{right:10px;gap:6px}
.gm-dock{bottom:12px}
.gm-dock button{min-height:44px}
.gm-joystick{left:18px;bottom:78px}
}
@media (pointer:coarse) and (max-height:840px) and (orientation:landscape){
.gm-hud{top:8px}
.gm-projekte{top:8px}
.gm-target{bottom:70px;max-height:52vh;overflow:auto}
.gm-joystick{width:104px;height:104px;bottom:72px}
}
.gm-plan-row{display:flex;align-items:center;gap:8px;margin:8px 0}
.gm-plan-row select{flex:1;min-width:0;padding:10px;border:1px solid #799297;border-radius:8px;background:#102f38;color:#fff;font-size:14px}
.gm-plan-nr{color:#8fb0b8;font-size:13px;width:18px;flex:none}
.gm-plan-pfeil{color:#f0ca80;flex:none}
.gm-plan-hinweis{color:#9fb8be;font-size:13px}
.gm-plan-karte{margin:10px 0;padding:12px;border:1px solid #2f5560;border-radius:10px;background:#0f2831}
.gm-plan-karte h3{margin:0 0 4px;font-size:15px;color:#f0ca80}
.gm-plan-karte p{margin:3px 0;font-size:13px}
.gm-plan-zeile{color:#b9d3d8}
.gm-mon-rolle{color:#9ecbd6;font-size:13px}
.gm-badge-hilfe{color:#8ee6ad!important;border-color:#8ee6ad66!important}
.gm-report-karte{margin:8px 0;padding:10px;border:1px solid #2f5560;border-radius:10px;background:#0f2831}
.gm-report-karte small{display:block;color:#93aeb5;font-size:12px;margin-top:4px}
.gm-report-knopf{width:100%;text-align:left;background:none;border:0;color:inherit;font:inherit;cursor:pointer;padding:0}
.gm-report-knopf:hover{color:#f0ca80}
.gm-report-seite{color:#b9d3d8;font-size:13px;margin:2px 0}
.gm-report-zeile{margin:2px 0;font-size:13px;color:#cfe3e7;border-left:2px solid #2f5560;padding-left:8px}
.gm-mon-wesen{color:#d8b66f;font-size:13px}
.gm-mon-dienst{color:#8ee6ad;font-size:13px}
.gm-arena-kunde{display:block;font-size:11px;color:#b9d3d8;margin-top:3px;line-height:1.35}
.gm-arena-kunde.gut{color:#8ee6ad}
.gm-arena-kunde.schlecht{color:#ffad8d}
.gm-arena-wesen{display:block;font-size:11px;color:#d8b66f}
.gm-filter{display:flex;gap:6px;flex-wrap:wrap;margin:10px 0}
.gm-filter-knopf{flex:1;min-width:88px;padding:8px 10px;border:1px solid #3b6672;border-radius:999px;background:#102f38;color:#b9d3d8;font-size:13px;cursor:pointer}
.gm-filter-knopf.aktiv{background:#1d4d5c;border-color:#d8b66f;color:#f0ca80;font-weight:600}
.gm-post-besatzung{display:block;color:#93aeb5;font-size:12px;margin:4px 0}
.gm-arena.gm-dungeon { display:flex; overflow:auto; background:radial-gradient(ellipse at top,#263149,#101722 75%); }
.gm-dungeon-panel { width:min(850px,100%); margin:auto; padding:20px; }
.gm-dungeon-team { display:grid; grid-template-columns:repeat(auto-fit,minmax(130px,1fr)); gap:10px; margin:16px 0; }
.gm-dungeon-team .gm-quest-card { margin:0; padding:12px; text-align:center; }
.gm-dungeon-team .gm-portrait { display:block; width:80px; height:80px; object-fit:contain; margin:auto; }
.gm-dungeon-team strong { display:block; }
.gm-dungeon-boss { display:grid; justify-items:center; gap:8px; margin:12px auto; }
.gm-dungeon-boss .gm-portrait { width:160px; height:160px; object-fit:contain; filter:drop-shadow(0 5px 20px #b9566b66); }
.gm-dungeon-boss progress { width:min(100%,420px); height:18px; accent-color:#ec7381; }
.gm-dungeon-picker { display:grid; gap:8px; margin:16px 0; }
.gm-dungeon-picker select { font:inherit; color:#f1ebde; background:#202b37; padding:12px; border:1px solid #697784; border-radius:10px; width:100%; }
.gm-dungeon-log { display:block; color:#cbd3df; padding:3px 0; }
.gm-dungeon-pin { color:var(--rarity,#c6a8ff); border-color:var(--rarity,#c6a8ff); }
.gm-dungeon .gm-button { margin:4px; }
@media(max-width:600px) { .gm-dungeon-panel { padding:12px; } .gm-dungeon-team { grid-template-columns:repeat(2,minmax(0,1fr)); } .gm-dungeon-boss .gm-portrait { width:110px; height:110px; } }
.gm-shell .gm-dock { max-width:calc(100% - 24px); overflow-x:auto; justify-content:flex-start; }
@media(max-width:650px) { .gm-shell .gm-dock { display:flex; flex-wrap:nowrap; } .gm-shell .gm-dock button { flex:0 0 auto; } }
.gm-heute-serie{font-size:18px;font-weight:700;color:#ffd27a;margin:4px 0 10px}
.gm-heute-aufgabe{position:relative}
.gm-heute-aufgabe.erledigt{border-color:#81d2a3aa;background:linear-gradient(140deg,#24473f,#15343a)}
.gm-heute-aufgabe.erledigt h3{color:#a8efc4}
.gm-heute-truhe{width:100%;margin:14px 0 8px;font-weight:700}
.gm-heute-truhe:not(:disabled){animation:gm-truhe-puls 1.6s ease-in-out infinite}
@keyframes gm-truhe-puls{0%,100%{box-shadow:0 0 0 0 #ffd27a55}50%{box-shadow:0 0 0 8px #ffd27a00}}
.gm-ticker-toast{position:absolute;left:50%;top:74px;transform:translateX(-50%);z-index:9;max-width:min(560px,calc(100% - 32px));
padding:10px 16px;border-radius:12px;background:#10262ef2;border:1px solid #ffd27a77;color:#fff3d6;font-weight:600;font-size:14px;
box-shadow:0 8px 24px #0008;pointer-events:none;text-align:center}
.gm-ticker-toast.gm-ticker-an{animation:gm-ticker-rein .45s cubic-bezier(.2,.9,.3,1.2)}
@keyframes gm-ticker-rein{from{opacity:0;transform:translate(-50%,-14px) scale(.96)}to{opacity:1;transform:translate(-50%,0) scale(1)}}
.gm-ticker-liste{list-style:none;margin:8px 0 0;padding:0;display:grid;gap:6px}
.gm-ticker-liste li{display:flex;justify-content:space-between;gap:10px;padding:8px 10px;border-radius:9px;background:#15313a;font-size:13px}
.gm-ticker-liste li small{color:#8fa8b3;white-space:nowrap}
.gm-ticker-liste .gm-ticker-schlupf{border-left:3px solid #c38bff}
.gm-ticker-liste .gm-ticker-eroberung,.gm-ticker-liste .gm-ticker-revanche{border-left:3px solid #f2705a}
.gm-ticker-liste .gm-ticker-champion,.gm-ticker-liste .gm-ticker-serie{border-left:3px solid #ffd27a}
.gm-ticker-liste .gm-ticker-duell{border-left:3px solid #66f5df}
.gm-ticker-liste .gm-ticker-dungeon,.gm-ticker-liste .gm-ticker-boss{border-left:3px solid #81d2a3}
.gm-garantie{display:grid;gap:8px;margin:10px 0}
.gm-garantie-zeile{display:grid;gap:4px;font-size:13px}
.gm-garantie-balken{display:block;height:6px;border-radius:3px;background:#20303a;overflow:hidden}
.gm-garantie-balken i{display:block;height:100%;border-radius:3px}
.gm-schimmer{filter:hue-rotate(155deg) saturate(1.55) brightness(1.07) drop-shadow(0 0 6px #fff6c8aa)}
.gm-schimmer-rahmen{position:relative}
.gm-schimmer-rahmen::after{content:'✨';position:absolute;top:2px;right:4px;font-size:15px;animation:gm-funkeln 1.4s ease-in-out infinite;pointer-events:none}
@keyframes gm-funkeln{0%,100%{opacity:.35;transform:scale(.8) rotate(0)}50%{opacity:1;transform:scale(1.15) rotate(20deg)}}
.gm-mon-schimmer{color:#fff1a8;font-weight:600}
.gm-schlupf{position:absolute;inset:0;z-index:20;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;
background:radial-gradient(circle at 50% 45%,#23434a 0%,#0c1c22ee 70%);color:#fff5de;text-align:center;padding:24px;cursor:pointer}
.gm-schlupf-ei{width:120px;height:150px;border-radius:50% 50% 46% 46%/58% 58% 42% 42%;background:radial-gradient(circle at 35% 30%,#fffaf0,#e9dcc2 45%,#b9a67f);
box-shadow:inset -10px -14px 22px #0003,0 12px 30px #0007;animation:gm-ei-wackeln .5s ease-in-out infinite}
.gm-schlupf.gm-schlupf-blitz .gm-schlupf-ei{animation:gm-ei-platzen .45s ease-in forwards}
@keyframes gm-ei-wackeln{0%,100%{transform:rotate(-7deg)}50%{transform:rotate(7deg)}}
@keyframes gm-ei-platzen{to{transform:scale(1.4);opacity:0;filter:brightness(2.4)}}
.gm-schlupf-licht{position:absolute;inset:0;pointer-events:none;opacity:0;background:radial-gradient(circle at 50% 45%,var(--rarity) 0%,transparent 60%)}
.gm-schlupf.gm-schlupf-blitz .gm-schlupf-licht{animation:gm-schlupf-licht 1.1s ease-out}
@keyframes gm-schlupf-licht{0%{opacity:0}25%{opacity:1}100%{opacity:.35}}
.gm-schlupf-mon{display:none;flex-direction:column;align-items:center;gap:8px;animation:gm-mon-auftritt .6s cubic-bezier(.2,1.1,.3,1.2)}
.gm-schlupf.gm-schlupf-da .gm-schlupf-mon{display:flex}
.gm-schlupf.gm-schlupf-da .gm-schlupf-ei{display:none}
.gm-schlupf-mon img{width:min(220px,50vw);height:min(220px,50vw);object-fit:contain;filter:drop-shadow(0 10px 24px #000a)}
.gm-schlupf-mon img.gm-schimmer{filter:hue-rotate(155deg) saturate(1.55) brightness(1.07) drop-shadow(0 0 18px #fff6c8)}
@keyframes gm-mon-auftritt{from{transform:scale(.3);opacity:0}to{transform:scale(1);opacity:1}}
.gm-schlupf-seltenheit{font-size:15px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--rarity);text-shadow:0 0 16px var(--rarity)}
.gm-schlupf-name{font-family:Georgia,serif;font-size:34px;line-height:1.1}
.gm-schlupf-zusatz{font-size:15px;color:#e8dcc0;max-width:420px}
.gm-schlupf-weiter{font-size:12px;color:#9fb5c2;margin-top:6px}
.gm-bericht-liste{list-style:none;margin:6px 0 12px;padding:0;display:grid;gap:6px}
.gm-bericht-liste li{padding:9px 11px;border-radius:9px;background:#15313a;font-size:14px}
.gm-bericht-liste li.gut{border-left:3px solid #81d2a3}
.gm-bericht-liste li.schlecht{border-left:3px solid #f2705a}
.gm-badge-revanche{background:#f2705a33;color:#ffb3a3}
.gm-duell-warte{font-size:14px;color:#ffd27a;text-align:center;margin:6px 0}
.gm-duell-zuschauer{font-size:12px;color:#9fb5c2;text-align:center}
.gm-duell-einladung{border:1px solid #66f5df88;background:linear-gradient(140deg,#1d4147,#13303a)}