/* ZUUO. – Global stylesheet
   Consolidated from all HTML pages.
   Page-specific rules are scoped by a body class so existing designs do not collide. */

/* ==========================================================
   awards/index.html
   ========================================================== */

body.page-awards {
--bg-main: #1B1D2B;
            --bg-section: #1F2131;
            --bg-card: #24273A;
            --bg-card-hover: #2A2D43;
            --purple: #746AB6;
            --purple-light: #9186D4;
            --cyan: #60B5DA;
            --text: #FFFFFF;
            --text-soft: #D8DAE4;
            --muted: #767B93;
            --green: #2ECC71;
            --red: #EF5350;
            --border: rgba(255,255,255,.08);
            --shadow: 0 22px 55px rgba(0,0,0,.24);
            --radius: 18px;
}

body.page-awards * {
box-sizing: border-box;
            margin: 0;
            padding: 0;
}

html:has(body.page-awards) {
scroll-behavior: smooth;
            scroll-padding-top: 88px;
}

body.page-awards {
min-height: 100vh;
            font-family: "Titillium Web", sans-serif;
            color: var(--text);
            background: var(--bg-main);
            line-height: 1.55;
            overflow-x: hidden;
}

body.page-awards button {
font: inherit;
}

body.page-awards a {
color: inherit;
}

body.page-awards img {
display: block; max-width: 100%;
}

body.page-awards .container {
width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
}

/* =====================================================
           HERO — same shell as Wörterbuch
        ====================================================== */

body.page-awards .hero {
position: relative;
            min-height: 480px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background:
                linear-gradient(
                    to bottom,
                    rgba(27,29,43,.22),
                    rgba(27,29,43,.56) 62%,
                    #1B1D2B 100%
                ),
                url("../app/core/assets/images/main-header.webp")
                center bottom / cover no-repeat;
}

body.page-awards .hero::after {
content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(
                    circle at 50% 40%,
                    transparent 12%,
                    rgba(27,29,43,.20) 82%
                );
            pointer-events: none;
}

body.page-awards .topbar {
width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
            padding: 30px 0;
            position: relative;
            z-index: 10;
}

body.page-awards .logo {
display: inline-flex;
            align-items: center;
            gap: 13px;
            text-decoration: none;
}

body.page-awards .logo-symbol {
width: 58px;
            height: 51px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background:
                linear-gradient(
                    135deg,
                    var(--purple),
                    #8C77DA 55%,
                    var(--cyan)
                );
            box-shadow:
                0 14px 34px
                rgba(116,106,182,.38);
            font-family:
                "Arial Rounded MT Bold",
                "Trebuchet MS",
                sans-serif;
            font-size: 36px;
            font-weight: 900;
            line-height: 1;
}

body.page-awards .logo-word {
font-family:
                "Arial Rounded MT Bold",
                "Trebuchet MS",
                sans-serif;
            font-size: 44px;
            font-weight: 900;
            line-height: 1;
}

body.page-awards .logo-word span {
color: var(--cyan);
}

body.page-awards .hero-content {
position: relative;
            z-index: 2;
            flex: 1;
            width: min(900px, calc(100% - 40px));
            margin: 0 auto;
            padding: 35px 0 92px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
}

body.page-awards .eyebrow {
color: var(--cyan);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: 8px;
}

body.page-awards .hero h1 {
font-size: clamp(50px, 8vw, 86px);
            font-weight: 900;
            line-height: .95;
            letter-spacing: -.045em;
            text-transform: uppercase;
}

body.page-awards .hero h1 span {
background:
                linear-gradient(
                    90deg,
                    #FFFFFF,
                    var(--cyan),
                    #A89DF1
                );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
}

body.page-awards .hero p {
max-width: 800px;
            margin: 24px auto 0;
            color: rgba(255,255,255,.82);
            font-size: 17px;
}

/* =====================================================
           FLOATING QUICK MENU — dropdown, no slide-out
        ====================================================== */

body.page-awards .quick-menu-wrapper {
position: fixed;
            top: 28px;
            right: 28px;
            z-index: 10000;
}

body.page-awards .quick-menu-button {
width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255,255,255,.10);
            border-radius: 14px;
            background: rgba(31,33,49,.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            color: white;
            cursor: pointer;
            font-size: 21px;
            box-shadow: 0 12px 32px rgba(0,0,0,.22);
            transition: .2s ease;
}

body.page-awards .quick-menu-button:hover,
body.page-awards .quick-menu-button.active {
border-color: var(--cyan);
            background: rgba(36,39,58,.97);
}

body.page-awards .quick-menu {
position: absolute;
            top: 62px;
            right: 0;
            width: 275px;
            padding: 12px;
            border-radius: 18px;
            background: rgba(27,29,43,.98);
            border: 1px solid rgba(255,255,255,.09);
            box-shadow: 0 25px 65px rgba(0,0,0,.45);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(.96);
            transform-origin: top right;
            transition: .2s ease;
}

body.page-awards .quick-menu.open {
opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
}

body.page-awards .quick-menu-title {
padding: 8px 10px 10px;
            color: var(--muted);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
}

body.page-awards .quick-menu-link {
display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px;
            border-radius: 12px;
            text-decoration: none;
            transition: .18s ease;
}

body.page-awards .quick-menu-link:hover {
transform: translateX(3px);
            background: rgba(116,106,182,.15);
}

body.page-awards .quick-menu-icon {
width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            border-radius: 9px;
            background: var(--bg-card);
            color: var(--cyan);
            font-size: 11px;
            font-weight: 700;
}

/* =====================================================
           JUMP NAVIGATION
        ====================================================== */

body.page-awards .jump-wrap {
position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(27,29,43,.92);
            border-top: 1px solid rgba(255,255,255,.04);
            border-bottom: 1px solid rgba(255,255,255,.07);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
}

body.page-awards .jump-nav-shell {
position: relative;
}

body.page-awards .jump-nav {
display: flex;
            gap: 8px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 13px 46px;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-inline: contain;
}

body.page-awards .jump-nav::-webkit-scrollbar {
display: none;
}

body.page-awards .jump-scroll-button {
position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;

            width: 36px;
            height: 36px;

            display: grid;
            place-items: center;

            border: 1px solid rgba(255,255,255,.10);
            border-radius: 11px;

            background: rgba(27,29,43,.96);
            color: var(--text);

            box-shadow: 0 8px 22px rgba(0,0,0,.22);

            cursor: pointer;

            transition:
                opacity .18s ease,
                border-color .18s ease,
                background .18s ease,
                transform .18s ease;
}

body.page-awards .jump-scroll-button:hover {
border-color: rgba(96,181,218,.55);
            background: rgba(36,39,58,.98);
}

body.page-awards .jump-scroll-button.left {
left: 0;
}

body.page-awards .jump-scroll-button.right {
right: 0;
}

body.page-awards .jump-scroll-button.hidden {
opacity: 0;
            pointer-events: none;
}

body.page-awards .jump-scroll-button svg {
width: 17px;
            height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
}

body.page-awards .jump-nav-shell::before,
body.page-awards .jump-nav-shell::after {
content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 48px;
            z-index: 2;
            pointer-events: none;
}

body.page-awards .jump-nav-shell::before {
left: 0;
            background: linear-gradient(
                to right,
                rgba(27,29,43,.98),
                rgba(27,29,43,0)
            );
}

body.page-awards .jump-nav-shell::after {
right: 0;
            background: linear-gradient(
                to left,
                rgba(27,29,43,.98),
                rgba(27,29,43,0)
            );
}

body.page-awards .jump-nav a {
flex-shrink: 0;
            padding: 8px 13px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,.09);
            background: rgba(36,39,58,.90);
            color: var(--text-soft);
            text-decoration: none;
            font-size: 12px;
            transition: .18s ease;
}

body.page-awards .jump-nav a:hover {
color: white;
            border-color: rgba(96,181,218,.45);
            background: rgba(96,181,218,.09);
}

/* =====================================================
           AWARDS
        ====================================================== */

body.page-awards .awards-area {
padding: 52px 0 82px;
            background:
                linear-gradient(
                    rgba(31,33,49,.92),
                    rgba(31,33,49,.97)
                ),
                url("../app/core/assets/images/section_bg.webp")
                center center / cover fixed no-repeat;
}

body.page-awards .category-card {
padding: clamp(22px, 3vw, 32px);
            margin-bottom: 27px;
            border-radius: 22px;
            background:
                linear-gradient(
                    145deg,
                    rgba(39,42,64,.98),
                    rgba(31,33,49,.97)
                );
            border: 1px solid rgba(255,255,255,.08);
            box-shadow: var(--shadow);
}

body.page-awards .category-head {
display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 23px;
}

body.page-awards .category-head h2 {
margin: 0;
            font-size: clamp(27px, 3vw, 36px);
            line-height: 1;
            font-weight: 900;
}

body.page-awards .category-head .eyebrow {
margin-bottom: 10px;
}

body.page-awards .count {
flex-shrink: 0;
            color: var(--muted);
            font-size: 12px;
}

body.page-awards .award-grid {
display: grid;
            grid-template-columns:
                repeat(3, minmax(0, 1fr));
            gap: 14px;
}

body.page-awards .award-card {
min-height: 132px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 17px;
            border-radius: 17px;
            background:
                linear-gradient(
                    145deg,
                    rgba(31,35,50,.98),
                    rgba(28,31,45,.98)
                );
            border: 1px solid rgba(255,255,255,.07);
            transition:
                transform .2s ease,
                border-color .2s ease,
                background .2s ease;
}

body.page-awards .award-card:hover {
transform: translateY(-3px);
            border-color: rgba(96,181,218,.32);
            background: var(--bg-card-hover);
}

body.page-awards .award-card img {
width: 64px;
            height: 64px;
            object-fit: contain;
            flex-shrink: 0;
}

body.page-awards .award-content {
min-width: 0;
}

body.page-awards .award-card h3 {
margin: 1px 0 6px;
            font-size: 16px;
            line-height: 1.2;
            font-weight: 700;
}

body.page-awards .award-description {
color: var(--muted);
            font-size: 13px;
            line-height: 1.48;
}

body.page-awards .award-description a {
color: var(--cyan);
}

body.page-awards .award-description .main-color {
color: var(--purple-light);
}

body.page-awards .award-description .text-red {
color: #ff6b75;
}

body.page-awards .award-description .text-blue {
color: var(--cyan);
}

/* =====================================================
           PARTNERS + FOOTER — same as Wörterbuch
        ====================================================== */

body.page-awards .partners-section {
position: relative;
            overflow: hidden;
            padding: 78px 0;
            background: #24273A;
            border-top: 1px solid rgba(255,255,255,.04);
}

body.page-awards .partners-title {
margin-bottom: 40px;
            color: var(--muted);
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
}

body.page-awards .partners-grid {
display: grid;
            grid-template-columns:
                repeat(4, minmax(0, 1fr));
            align-items: center;
            gap: 45px;
}

body.page-awards .partner {
min-height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: .70;
            transition: .22s ease;
}

body.page-awards .partner:hover {
opacity: 1;
            transform: translateY(-3px);
}

body.page-awards .partner img {
width: auto;
            max-width: 165px;
            max-height: 48px;
            object-fit: contain;
            filter: grayscale(1) brightness(3.2);
            transition: .22s ease;
}

body.page-awards .partner:hover img {
filter: grayscale(0) brightness(1.12);
}

body.page-awards footer {
padding: 40px 0;
            background: #191B28;
            color: var(--muted);
            text-align: center;
            font-size: 14px;
}

body.page-awards .footer-logo {
margin-bottom: 6px;
            color: white;
            font-size: 23px;
            font-weight: 900;
}

body.page-awards .footer-logo span {
color: var(--cyan);
}

/* =====================================================
           ANIMATION
        ====================================================== */

body.page-awards .reveal {
opacity: 0;
            transform: translateY(18px);
            transition:
                opacity .55s ease,
                transform .55s ease;
}

body.page-awards .reveal.visible {
opacity: 1;
            transform: translateY(0);
}

@media (max-width: 950px) {
    body.page-awards .award-grid {
grid-template-columns:
                    repeat(2, minmax(0, 1fr));
    }

    body.page-awards .partners-grid {
grid-template-columns:
                    repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    body.page-awards .container,
    body.page-awards .topbar,
    body.page-awards .hero-content {
width: calc(100% - 24px);
    }

    body.page-awards .hero {
min-height: 430px;
    }

    body.page-awards .topbar {
padding: 21px 0;
    }

    body.page-awards .logo-symbol {
width: 49px;
                height: 43px;
                font-size: 30px;
    }

    body.page-awards .logo-word {
font-size: 36px;
    }

    body.page-awards .quick-menu-wrapper {
top: 18px;
                right: 12px;
    }

    body.page-awards .quick-menu-button {
width: 44px;
                height: 44px;
    }

    body.page-awards .quick-menu {
top: 55px;
                width: min(275px, calc(100vw - 24px));
    }

    body.page-awards .jump-nav {
padding-left: 40px;
                padding-right: 40px;
    }

    body.page-awards .jump-scroll-button {
width: 32px;
                height: 32px;
    }

    body.page-awards .hero-content {
padding: 55px 0 78px;
    }

    body.page-awards .hero h1 {
font-size: clamp(44px, 15vw, 64px);
    }

    body.page-awards .hero p {
font-size: 15px;
    }

    body.page-awards .awards-area {
padding-top: 34px;
                background-attachment: scroll;
    }

    body.page-awards .category-card {
border-radius: 18px;
    }

    body.page-awards .category-head {
align-items: flex-start;
                flex-direction: column;
    }

    body.page-awards .award-grid {
grid-template-columns: 1fr;
    }

    body.page-awards .partners-grid {
grid-template-columns: 1fr 1fr;
                gap: 22px;
    }

    body.page-awards .partner img {
max-width: 125px;
                max-height: 40px;
    }
}

/* ==========================================================
   community-rules/index.html
   ========================================================== */

body.page-community-rules {
--bg-main: #1B1D2B;
            --bg-section: #1F2131;
            --bg-card: #24273A;
            --bg-card-hover: #2A2D43;
            --purple: #746AB6;
            --purple-light: #9186D4;
            --cyan: #60B5DA;
            --text: #FFFFFF;
            --text-soft: #D8DAE4;
            --muted: #767B93;
            --green: #2ECC71;
            --red: #EF5350;
            --yellow: #F5C542;
            --border: rgba(255,255,255,.08);
            --shadow: 0 22px 55px rgba(0,0,0,.24);
}

body.page-community-rules * {
box-sizing: border-box;
            margin: 0;
            padding: 0;
}

html:has(body.page-community-rules) {
scroll-behavior: smooth;
}

body.page-community-rules {
min-height: 100vh;
            font-family: "Titillium Web", sans-serif;
            color: var(--text);
            background: var(--bg-main);
            line-height: 1.6;
            overflow-x: hidden;
}

body.page-community-rules button {
font: inherit;
}

body.page-community-rules a {
color: inherit;
}

body.page-community-rules img {
display: block;
            max-width: 100%;
}

body.page-community-rules .container {
width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
}

/* =====================================================
           HERO — same visual language as Wörterbuch/Awards
        ====================================================== */

body.page-community-rules .hero {
position: relative;
            min-height: 480px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background:
                linear-gradient(
                    to bottom,
                    rgba(27,29,43,.20),
                    rgba(27,29,43,.56) 62%,
                    #1B1D2B 100%
                ),
                url("../app/core/assets/images/main-header.webp")
                center bottom / cover no-repeat;
}

body.page-community-rules .hero::after {
content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(
                    circle at 50% 40%,
                    transparent 12%,
                    rgba(27,29,43,.20) 82%
                );
            pointer-events: none;
}

body.page-community-rules .topbar {
width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
            padding: 30px 0;
            position: relative;
            z-index: 10;
}

body.page-community-rules .logo {
display: inline-flex;
            align-items: center;
            gap: 13px;
            text-decoration: none;
}

body.page-community-rules .logo-symbol {
width: 58px;
            height: 51px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background:
                linear-gradient(
                    135deg,
                    var(--purple),
                    #8C77DA 55%,
                    var(--cyan)
                );
            box-shadow:
                0 14px 34px
                rgba(116,106,182,.38);
            font-family:
                "Arial Rounded MT Bold",
                "Trebuchet MS",
                sans-serif;
            font-size: 36px;
            font-weight: 900;
            line-height: 1;
}

body.page-community-rules .logo-word {
font-family:
                "Arial Rounded MT Bold",
                "Trebuchet MS",
                sans-serif;
            font-size: 44px;
            font-weight: 900;
            line-height: 1;
}

body.page-community-rules .logo-word span {
color: var(--cyan);
}

body.page-community-rules .hero-content {
position: relative;
            z-index: 2;
            flex: 1;
            width: min(900px, calc(100% - 40px));
            margin: 0 auto;
            padding: 35px 0 92px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
}

body.page-community-rules .eyebrow {
color: var(--cyan);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: 8px;
}

body.page-community-rules .hero h1 {
font-size: clamp(50px, 8vw, 86px);
            font-weight: 900;
            line-height: .95;
            letter-spacing: -.045em;
            text-transform: uppercase;
}

body.page-community-rules .hero h1 span {
background:
                linear-gradient(
                    90deg,
                    #FFFFFF,
                    var(--cyan),
                    #A89DF1
                );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
}

body.page-community-rules .hero p {
max-width: 840px;
            margin: 24px auto 0;
            color: rgba(255,255,255,.82);
            font-size: 17px;
}

/* =====================================================
           FLOATING QUICK MENU
        ====================================================== */

body.page-community-rules .quick-menu-wrapper {
position: fixed;
            top: 28px;
            right: 28px;
            z-index: 10000;
}

body.page-community-rules .quick-menu-button {
width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255,255,255,.10);
            border-radius: 14px;
            background: rgba(31,33,49,.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            color: white;
            cursor: pointer;
            font-size: 21px;
            box-shadow: 0 12px 32px rgba(0,0,0,.22);
            transition: .2s ease;
}

body.page-community-rules .quick-menu-button:hover,
body.page-community-rules .quick-menu-button.active {
border-color: var(--cyan);
            background: rgba(36,39,58,.97);
}

body.page-community-rules .quick-menu {
position: absolute;
            top: 62px;
            right: 0;
            width: 275px;
            padding: 12px;
            border-radius: 18px;
            background: rgba(27,29,43,.98);
            border: 1px solid rgba(255,255,255,.09);
            box-shadow: 0 25px 65px rgba(0,0,0,.45);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(.96);
            transform-origin: top right;
            transition: .2s ease;
}

body.page-community-rules .quick-menu.open {
opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
}

body.page-community-rules .quick-menu-title {
padding: 8px 10px 10px;
            color: var(--muted);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
}

body.page-community-rules .quick-menu-link {
display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px;
            border-radius: 12px;
            text-decoration: none;
            transition: .18s ease;
}

body.page-community-rules .quick-menu-link:hover {
transform: translateX(3px);
            background: rgba(116,106,182,.15);
}

body.page-community-rules .quick-menu-icon {
width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            border-radius: 9px;
            background: var(--bg-card);
            color: var(--cyan);
            font-size: 11px;
            font-weight: 700;
}

/* =====================================================
           RULE CATEGORY TABS
        ====================================================== */

body.page-community-rules .tabs-wrap {
position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(27,29,43,.94);
            border-top: 1px solid rgba(255,255,255,.04);
            border-bottom: 1px solid rgba(255,255,255,.07);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
}

body.page-community-rules .rule-tabs {
display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            gap: 9px;
            padding: 13px 0;
}

body.page-community-rules .rule-tab {
min-height: 44px;
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 13px;
            background: rgba(36,39,58,.90);
            color: var(--text-soft);
            cursor: pointer;
            font-weight: 600;
            transition:
                background .18s ease,
                border-color .18s ease,
                color .18s ease,
                transform .18s ease;
}

body.page-community-rules .rule-tab:hover {
transform: translateY(-1px);
            border-color: rgba(96,181,218,.36);
            color: white;
}

body.page-community-rules .rule-tab.active {
color: white;
            border-color: rgba(96,181,218,.48);
            background:
                linear-gradient(
                    135deg,
                    rgba(116,106,182,.35),
                    rgba(96,181,218,.20)
                );
            box-shadow:
                inset 0 0 0 1px rgba(255,255,255,.025);
}

/* =====================================================
           RULES BODY
        ====================================================== */

body.page-community-rules .rules-area {
padding: 46px 0 82px;
            background:
                linear-gradient(
                    rgba(31,33,49,.91),
                    rgba(31,33,49,.97)
                ),
                url("../app/core/assets/images/section_bg.webp")
                center center / cover fixed no-repeat;
}

body.page-community-rules .important-notice {
display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 19px 20px;
            border-radius: 16px;
            background:
                linear-gradient(
                    145deg,
                    rgba(87,34,47,.48),
                    rgba(43,28,39,.54)
                );
            border: 1px solid rgba(239,83,80,.28);
            color: #E9D6D9;
            box-shadow: 0 15px 35px rgba(0,0,0,.16);
}

body.page-community-rules .important-icon {
width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            background: rgba(239,83,80,.17);
            color: #ff8080;
            font-weight: 900;
            font-size: 20px;
}

body.page-community-rules .important-notice strong {
display: block;
            margin-bottom: 3px;
            color: #FFFFFF;
            font-size: 15px;
}

body.page-community-rules .important-notice p,
body.page-community-rules .important-notice div {
font-size: 13px;
}

body.page-community-rules .rules-panel {
display: none;
}

body.page-community-rules .rules-panel.active {
display: block;
            animation: panelIn .25s ease;
}

@keyframes panelIn {
from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
}

body.page-community-rules .panel-heading {
margin-bottom: 25px;
}

body.page-community-rules .panel-heading h2 {
margin: 0;
            font-size: clamp(31px, 4vw, 43px);
            line-height: 1;
            font-weight: 900;
}

body.page-community-rules .rules-list {
display: grid;
            gap: 14px;
}

body.page-community-rules .rules-subheading {
display: flex;
            align-items: center;
            gap: 11px;
            padding-top: 14px;
            margin-top: 8px;
}

body.page-community-rules .rules-subheading span {
width: 32px;
            height: 4px;
            border-radius: 99px;
            background:
                linear-gradient(
                    90deg,
                    var(--purple),
                    var(--cyan)
                );
}

body.page-community-rules .rules-subheading h3 {
margin: 0;
            font-size: 17px;
            text-transform: uppercase;
            letter-spacing: .055em;
}

body.page-community-rules .rule-card {
position: relative;
            display: grid;
            grid-template-columns: 54px 1fr;
            gap: 18px;
            padding: 21px;
            border-radius: 18px;
            background:
                linear-gradient(
                    145deg,
                    rgba(39,42,64,.98),
                    rgba(31,33,49,.97)
                );
            border: 1px solid rgba(255,255,255,.075);
            box-shadow: 0 14px 34px rgba(0,0,0,.16);
            transition:
                transform .2s ease,
                border-color .2s ease,
                background .2s ease;
}

body.page-community-rules .rule-card:hover {
transform: translateY(-2px);
            border-color: rgba(96,181,218,.28);
            background: var(--bg-card-hover);
}

body.page-community-rules .rule-number {
width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            background:
                linear-gradient(
                    135deg,
                    rgba(116,106,182,.30),
                    rgba(96,181,218,.16)
                );
            border: 1px solid rgba(255,255,255,.055);
            color: var(--cyan);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .08em;
}

body.page-community-rules .rule-content {
min-width: 0;
}

body.page-community-rules .rule-content h3 {
margin: 1px 0 8px;
            font-size: 18px;
            line-height: 1.2;
            font-weight: 700;
}

body.page-community-rules .rule-text {
color: var(--text-soft);
            font-size: 14px;
}

body.page-community-rules .rule-text p + p {
margin-top: 9px;
}

body.page-community-rules .rule-text ul {
margin: 10px 0 10px 19px;
            padding: 0;
}

body.page-community-rules .rule-text li {
margin: 4px 0;
}

body.page-community-rules .rule-text b,
body.page-community-rules .rule-text strong {
color: #FFFFFF;
}

body.page-community-rules .rule-text .text-danger {
color: #ff7c84;
}

body.page-community-rules .inline-info {
display: grid;
            grid-template-columns: auto 1fr;
            gap: 13px;
            align-items: flex-start;
            padding: 16px 18px;
            border-radius: 15px;
            background: rgba(96,181,218,.09);
            border: 1px solid rgba(96,181,218,.22);
            color: var(--text-soft);
            font-size: 14px;
}

body.page-community-rules .inline-info-icon {
width: 30px;
            height: 30px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            background: rgba(96,181,218,.14);
            color: var(--cyan);
            font-weight: 900;
}

body.page-community-rules .inline-info a {
color: var(--cyan);
}

/* =====================================================
           PARTNERS + FOOTER
        ====================================================== */

body.page-community-rules .partners-section {
position: relative;
            overflow: hidden;
            padding: 78px 0;
            background: #24273A;
            border-top: 1px solid rgba(255,255,255,.04);
}

body.page-community-rules .partners-title {
margin-bottom: 40px;
            color: var(--muted);
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
}

body.page-community-rules .partners-grid {
display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            align-items: center;
            gap: 45px;
}

body.page-community-rules .partner {
min-height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: .70;
            transition: .22s ease;
}

body.page-community-rules .partner:hover {
opacity: 1;
            transform: translateY(-3px);
}

body.page-community-rules .partner img {
width: auto;
            max-width: 165px;
            max-height: 48px;
            object-fit: contain;
            filter: grayscale(1) brightness(3.2);
            transition: .22s ease;
}

body.page-community-rules .partner:hover img {
filter: grayscale(0) brightness(1.12);
}

body.page-community-rules footer {
padding: 40px 0;
            background: #191B28;
            color: var(--muted);
            text-align: center;
            font-size: 14px;
}

body.page-community-rules .footer-logo {
margin-bottom: 6px;
            color: white;
            font-size: 23px;
            font-weight: 900;
}

body.page-community-rules .footer-logo span {
color: var(--cyan);
}

body.page-community-rules .reveal {
opacity: 0;
            transform: translateY(16px);
            transition:
                opacity .5s ease,
                transform .5s ease;
}

body.page-community-rules .reveal.visible {
opacity: 1;
            transform: translateY(0);
}

@media (max-width: 850px) {
    body.page-community-rules .rule-tabs {
grid-template-columns: repeat(2, minmax(0,1fr));
    }

    body.page-community-rules .partners-grid {
grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 650px) {
    body.page-community-rules .container,
    body.page-community-rules .topbar,
    body.page-community-rules .hero-content {
width: calc(100% - 24px);
    }

    body.page-community-rules .hero {
min-height: 430px;
    }

    body.page-community-rules .topbar {
padding: 21px 0;
    }

    body.page-community-rules .logo-symbol {
width: 49px;
                height: 43px;
                font-size: 30px;
    }

    body.page-community-rules .logo-word {
font-size: 36px;
    }

    body.page-community-rules .quick-menu-wrapper {
top: 18px;
                right: 12px;
    }

    body.page-community-rules .quick-menu-button {
width: 44px;
                height: 44px;
    }

    body.page-community-rules .quick-menu {
top: 55px;
                width: min(275px, calc(100vw - 24px));
    }

    body.page-community-rules .hero-content {
padding: 55px 0 78px;
    }

    body.page-community-rules .hero h1 {
font-size: clamp(44px, 15vw, 64px);
    }

    body.page-community-rules .hero p {
font-size: 15px;
    }

    body.page-community-rules .rule-tabs {
grid-template-columns: 1fr 1fr;
                gap: 7px;
    }

    body.page-community-rules .rule-tab {
min-height: 42px;
                font-size: 12px;
    }

    body.page-community-rules .rules-area {
padding-top: 32px;
                background-attachment: scroll;
    }

    body.page-community-rules .important-notice {
grid-template-columns: 1fr;
    }

    body.page-community-rules .rule-card {
grid-template-columns: 1fr;
                gap: 12px;
    }

    body.page-community-rules .rule-number {
width: 40px;
                height: 40px;
    }

    body.page-community-rules .partners-grid {
grid-template-columns: 1fr 1fr;
                gap: 22px;
    }

    body.page-community-rules .partner img {
max-width: 125px;
                max-height: 40px;
    }
}

/* ==========================================================
   dictionary/index.html
   ========================================================== */

body.page-dictionary {
--bg-main: #1B1D2B;
            --bg-section: #1F2131;
            --bg-card: #24273A;
            --bg-card-hover: #2A2D43;
            --purple: #746AB6;
            --purple-light: #9186D4;
            --cyan: #60B5DA;
            --text: #FFFFFF;
            --text-soft: #D8DAE4;
            --muted: #767B93;
            --border: rgba(255,255,255,.08);
            --shadow: 0 22px 55px rgba(0,0,0,.24);
            --radius: 18px;
}

body.page-dictionary * {
box-sizing: border-box; margin: 0; padding: 0;
}

html:has(body.page-dictionary) {
scroll-behavior: smooth;
}

body.page-dictionary {
min-height: 100vh;
            font-family: "Titillium Web", sans-serif;
            color: var(--text);
            background: var(--bg-main);
            line-height: 1.55;
            overflow-x: hidden;
}

body.page-dictionary button,
body.page-dictionary input {
font: inherit;
}

body.page-dictionary button {
color: inherit;
}

body.page-dictionary a {
color: inherit;
}

body.page-dictionary img {
display: block; max-width: 100%;
}

body.page-dictionary .container {
width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
}

body.page-dictionary .hero {
position: relative;
            min-height: 480px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background:
                linear-gradient(to bottom, rgba(27,29,43,.22), rgba(27,29,43,.56) 62%, #1B1D2B 100%),
                url("../app/core/assets/images/main-header.webp") center bottom / cover no-repeat;
}

body.page-dictionary .hero::after {
content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 40%, transparent 12%, rgba(27,29,43,.2) 82%);
            pointer-events: none;
}

body.page-dictionary .topbar {
width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
            padding: 30px 0;
            position: relative;
            z-index: 10;
}

body.page-dictionary .logo {
display: inline-flex;
            align-items: center;
            gap: 13px;
            text-decoration: none;
}

body.page-dictionary .logo-symbol {
width: 58px;
            height: 51px;
            display: grid;
            place-items: center;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--purple), #8C77DA 55%, var(--cyan));
            box-shadow: 0 14px 34px rgba(116,106,182,.38);
            font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
            font-size: 36px;
            font-weight: 900;
            line-height: 1;
}

body.page-dictionary .logo-word {
font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
            font-size: 44px;
            font-weight: 900;
            line-height: 1;
}

body.page-dictionary .logo-word span {
color: var(--cyan);
}

body.page-dictionary .hero-content {
position: relative;
            z-index: 2;
            flex: 1;
            width: min(900px, calc(100% - 40px));
            margin: 0 auto;
            padding: 35px 0 92px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
}

body.page-dictionary .eyebrow {
color: var(--cyan);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: 8px;
}

body.page-dictionary .hero h1 {
font-size: clamp(50px, 8vw, 86px);
            font-weight: 900;
            line-height: .95;
            letter-spacing: -.045em;
            text-transform: uppercase;
}

body.page-dictionary .hero h1 span {
background: linear-gradient(90deg, #fff, var(--cyan), #A89DF1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
}

body.page-dictionary .hero p {
max-width: 800px;
            margin: 24px auto 0;
            color: rgba(255,255,255,.82);
            font-size: 17px;
}

body.page-dictionary .quick-menu-wrapper {
position: fixed;
            top: 28px;
            right: 28px;
            z-index: 10000;
}

body.page-dictionary .quick-menu-button {
width: 50px;
            height: 50px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255,255,255,.10);
            border-radius: 14px;
            background: rgba(31,33,49,.88);
            backdrop-filter: blur(18px);
            color: white;
            cursor: pointer;
            font-size: 21px;
            box-shadow: 0 12px 32px rgba(0,0,0,.22);
            transition: .2s ease;
}

body.page-dictionary .quick-menu-button:hover,
body.page-dictionary .quick-menu-button.active {
border-color: var(--cyan);
            background: rgba(36,39,58,.97);
}

body.page-dictionary .quick-menu {
position: absolute;
            top: 62px;
            right: 0;
            width: 275px;
            padding: 12px;
            border-radius: 18px;
            background: rgba(27,29,43,.98);
            border: 1px solid rgba(255,255,255,.09);
            box-shadow: 0 25px 65px rgba(0,0,0,.45);
            backdrop-filter: blur(22px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(.96);
            transform-origin: top right;
            transition: .2s ease;
}

body.page-dictionary .quick-menu.open {
opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
}

body.page-dictionary .quick-menu-title {
padding: 8px 10px 10px;
            color: var(--muted);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
}

body.page-dictionary .quick-menu-link {
display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px;
            border-radius: 12px;
            text-decoration: none;
            transition: .18s ease;
}

body.page-dictionary .quick-menu-link:hover {
transform: translateX(3px);
            background: rgba(116,106,182,.15);
}

body.page-dictionary .quick-menu-icon {
width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            border-radius: 9px;
            background: var(--bg-card);
            color: var(--cyan);
            font-size: 11px;
            font-weight: 700;
}

body.page-dictionary .section {
padding: 92px 0;
}

body.page-dictionary .section-alt {
background: var(--bg-section);
}

body.page-dictionary .center {
text-align: center;
}

body.page-dictionary .section-heading {
font-size: clamp(34px, 5vw, 50px);
            font-weight: 900;
            line-height: 1;
            text-transform: uppercase;
}

body.page-dictionary .section-intro {
max-width: 720px;
            margin: 18px auto 0;
            color: var(--text-soft);
            font-size: 16px;
}

body.page-dictionary .top3-grid {
margin-top: 42px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
}

body.page-dictionary .winner-card {
position: relative;
            overflow: hidden;
            padding: 28px 24px 25px;
            border-radius: 22px;
            background: linear-gradient(145deg, rgba(39,42,64,.99), rgba(31,33,49,.97));
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

body.page-dictionary .winner-card:hover {
transform: translateY(-6px);
            border-color: rgba(96,181,218,.4);
            box-shadow: 0 28px 65px rgba(0,0,0,.3);
}

body.page-dictionary .winner-1 {
transform: translateY(-12px);
            border-color: rgba(255,194,58,.28);
}

body.page-dictionary .winner-1:hover {
transform: translateY(-18px);
}

body.page-dictionary .winner-rank {
position: absolute;
            left: 17px;
            top: 16px;
            color: var(--muted);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .11em;
            text-transform: uppercase;
}

body.page-dictionary .winner-audio,
body.page-dictionary .audio-button {
border: 1px solid rgba(255,255,255,.08);
            background: rgba(27,29,43,.8);
            cursor: pointer;
            display: grid;
            place-items: center;
            border-radius: 10px;
            transition: .2s ease;
}

body.page-dictionary .winner-audio {
position: absolute;
            right: 16px;
            top: 14px;
            width: 38px;
            height: 38px;
}

body.page-dictionary .audio-button {
width: 40px;
            height: 40px;
            flex-shrink: 0;
}

body.page-dictionary .winner-audio:hover,
body.page-dictionary .audio-button:hover,
body.page-dictionary .winner-audio.playing,
body.page-dictionary .audio-button.playing {
border-color: var(--cyan);
            background: rgba(96,181,218,.12);
            transform: translateY(-1px);
}

body.page-dictionary .winner-trophy {
width: 156px;
            height: 156px;
            object-fit: contain;
            margin: 15px auto 12px;
}

body.page-dictionary .winner-card h3 {
font-size: clamp(27px, 3vw, 36px);
            font-weight: 900;
            line-height: 1.05;
            overflow-wrap: anywhere;
}

body.page-dictionary .correct-word {
display: inline-block;
            margin-top: 8px;
            color: var(--purple-light);
            font-size: 16px;
            font-weight: 600;
}

body.page-dictionary .winner-meta,
body.page-dictionary .dictionary-meta {
display: grid;
            gap: 10px;
            margin-top: 21px;
}

body.page-dictionary .winner-meta div,
body.page-dictionary .dictionary-meta div {
display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 18px;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,.06);
            text-align: left;
}

body.page-dictionary .winner-meta span,
body.page-dictionary .dictionary-meta span {
color: var(--muted);
            font-size: 12px;
}

body.page-dictionary .winner-meta strong,
body.page-dictionary .dictionary-meta strong {
color: var(--text-soft);
            font-size: 13px;
            font-weight: 600;
            text-align: right;
}

body.page-dictionary .dictionary-area {
background:
                linear-gradient(rgba(31,33,49,.90), rgba(31,33,49,.96)),
                url("../app/core/assets/images/section_bg.webp") center center / cover fixed no-repeat;
}

body.page-dictionary .search-wrap {
max-width: 760px;
            margin: 38px auto 12px;
            position: relative;
}

body.page-dictionary .search-icon {
position: absolute;
    left: 18px;
    top: 29px; /* Hälfte der 58px hohen Suchleiste */
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--cyan);
    pointer-events: none;
    z-index: 2;
}

body.page-dictionary .search-icon svg {
display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.page-dictionary .dictionary-search {
width: 100%;
            height: 58px;
            padding: 0 52px 0 48px;
            border: 1px solid rgba(255,255,255,.09);
            border-radius: 15px;
            outline: none;
            background: rgba(36,39,58,.96);
            color: var(--text);
            font-size: 17px;
            box-shadow: 0 14px 35px rgba(0,0,0,.15);
            transition: .2s ease;
}

body.page-dictionary .dictionary-search:focus {
border-color: rgba(96,181,218,.65);
            box-shadow: 0 0 0 4px rgba(96,181,218,.08), 0 14px 35px rgba(0,0,0,.18);
}

body.page-dictionary .dictionary-search::placeholder {
color: var(--muted);
}

body.page-dictionary .search-clear {
position: absolute;
            right: 11px;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border: 0;
            border-radius: 9px;
            background: transparent;
            color: var(--muted);
            cursor: pointer;
            display: none;
}

body.page-dictionary .search-clear.visible {
display: grid; place-items: center;
}

body.page-dictionary .result-count {
color: var(--muted);
            font-size: 13px;
            text-align: center;
            margin-top: 10px;
}

body.page-dictionary .dictionary-grid {
margin-top: 34px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 17px;
}

body.page-dictionary .dictionary-card {
position: relative;
            padding: 20px;
            border-radius: 18px;
            background: linear-gradient(145deg, rgba(39,42,64,.96), rgba(34,37,55,.96));
            border: 1px solid rgba(255,255,255,.07);
            border-left: 4px solid var(--purple);
            box-shadow: 0 13px 34px rgba(0,0,0,.17);
            transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

body.page-dictionary .dictionary-card:hover {
transform: translateY(-4px);
            border-color: rgba(96,181,218,.34);
            border-left-color: var(--cyan);
            background: var(--bg-card-hover);
}

body.page-dictionary .dictionary-card.hidden {
display: none;
}

body.page-dictionary .dictionary-card-head {
display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 14px;
}

body.page-dictionary .dictionary-kicker {
color: var(--muted);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 2px;
}

body.page-dictionary .dictionary-card h3 {
font-size: 27px;
            font-weight: 900;
            line-height: 1.05;
            overflow-wrap: anywhere;
}

body.page-dictionary .dictionary-card .correct-word {
margin-top: 9px;
}

body.page-dictionary .empty-state {
display: none;
            max-width: 620px;
            margin: 32px auto 0;
            padding: 28px;
            text-align: center;
            border-radius: 16px;
            background: rgba(36,39,58,.92);
            border: 1px solid var(--border);
            color: var(--text-soft);
}

body.page-dictionary .empty-state.visible {
display: block;
}

body.page-dictionary .partners-section {
position: relative;
            overflow: hidden;
            padding: 78px 0;
            background: #24273A;
            border-top: 1px solid rgba(255,255,255,.04);
}

body.page-dictionary .partners-title {
margin-bottom: 40px;
            color: var(--muted);
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
}

body.page-dictionary .partners-grid {
display: grid;
            grid-template-columns: repeat(4, minmax(0,1fr));
            align-items: center;
            gap: 45px;
}

body.page-dictionary .partner {
min-height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: .7;
            transition: .22s ease;
}

body.page-dictionary .partner:hover {
opacity: 1; transform: translateY(-3px);
}

body.page-dictionary .partner img {
width: auto;
            max-width: 165px;
            max-height: 48px;
            object-fit: contain;
            filter: grayscale(1) brightness(3.2);
            transition: .22s ease;
}

body.page-dictionary .partner:hover img {
filter: grayscale(0) brightness(1.12);
}

body.page-dictionary footer {
padding: 40px 0;
            background: #191B28;
            color: var(--muted);
            text-align: center;
            font-size: 14px;
}

body.page-dictionary .footer-logo {
margin-bottom: 6px;
            color: white;
            font-size: 23px;
            font-weight: 900;
}

body.page-dictionary .footer-logo span {
color: var(--cyan);
}

body.page-dictionary .reveal {
opacity: 0;
            transform: translateY(18px);
            transition: opacity .55s ease, transform .55s ease;
}

body.page-dictionary .reveal.visible {
opacity: 1; transform: translateY(0);
}

@media (max-width: 950px) {
    body.page-dictionary .top3-grid,
    body.page-dictionary .dictionary-grid {
grid-template-columns: repeat(2, minmax(0,1fr));
    }

    body.page-dictionary .winner-1 {
transform: none;
    }

    body.page-dictionary .winner-1:hover {
transform: translateY(-6px);
    }

    body.page-dictionary .partners-grid {
grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 650px) {
    body.page-dictionary .container,
    body.page-dictionary .topbar,
    body.page-dictionary .hero-content {
width: calc(100% - 24px);
    }

    body.page-dictionary .hero {
min-height: 430px;
    }

    body.page-dictionary .topbar {
padding: 21px 0;
    }

    body.page-dictionary .logo-symbol {
width: 49px;
                height: 43px;
                font-size: 30px;
    }

    body.page-dictionary .logo-word {
font-size: 36px;
    }

    body.page-dictionary .quick-menu-wrapper {
top: 18px; right: 12px;
    }

    body.page-dictionary .quick-menu-button {
width: 44px; height: 44px;
    }

    body.page-dictionary .quick-menu {
top: 55px; width: min(275px, calc(100vw - 24px));
    }

    body.page-dictionary .hero-content {
padding: 55px 0 78px;
    }

    body.page-dictionary .hero h1 {
font-size: clamp(44px, 15vw, 64px);
    }

    body.page-dictionary .hero p {
font-size: 15px;
    }

    body.page-dictionary .section {
padding: 70px 0;
    }

    body.page-dictionary .top3-grid,
    body.page-dictionary .dictionary-grid {
grid-template-columns: 1fr;
    }

    body.page-dictionary .winner-trophy {
width: 145px;
                height: 145px;
    }

    body.page-dictionary .dictionary-area {
background-attachment: scroll;
    }

    body.page-dictionary .partners-grid {
grid-template-columns: 1fr 1fr; gap: 22px;
    }

    body.page-dictionary .partner img {
max-width: 125px; max-height: 40px;
    }
}

/* ==========================================================
   errors/401.html
   ========================================================== */

body.page-errors-401 {
--bg-main:#1B1D2B;
    --bg-section:#1F2131;
    --bg-card:#24273A;
    --purple:#746AB6;
    --cyan:#60B5DA;
    --text:#FFFFFF;
    --text-soft:#D8DAE4;
    --muted:#767B93;
    --border:rgba(255,255,255,.08);
}

body.page-errors-401 * {
box-sizing:border-box;margin:0;padding:0
}

html:has(body.page-errors-401) {
scroll-behavior:smooth
}

body.page-errors-401 {
min-height:100vh;
    font-family:"Titillium Web",sans-serif;
    color:var(--text);
    background:var(--bg-main);
    overflow-x:hidden;
}

body.page-errors-401 a {
color:inherit;text-decoration:none
}

body.page-errors-401 .container {
width:min(1180px,calc(100% - 40px));margin:0 auto
}

body.page-errors-401 .error-page {
min-height:100vh;
    display:flex;
    flex-direction:column;
    background:
        linear-gradient(to bottom,rgba(27,29,43,.18),rgba(27,29,43,.70) 62%,#1B1D2B 100%),
        url("../app/core/assets/images/main-header.webp") center bottom/cover no-repeat;
    position:relative;
    overflow:hidden;
}

body.page-errors-401 .error-page::after {
content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 35%,transparent 12%,rgba(27,29,43,.22) 82%);
    pointer-events:none;
}

body.page-errors-401 .topbar {
width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    padding:30px 0;
    position:relative;
    z-index:10;
}

body.page-errors-401 .logo {
display:inline-flex;
    align-items:center;
    gap:13px;
}

body.page-errors-401 .logo-symbol {
width:58px;
    height:51px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:linear-gradient(135deg,var(--purple),#8C77DA 55%,var(--cyan));
    box-shadow:0 14px 34px rgba(116,106,182,.38);
    font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
    font-size:36px;
    font-weight:900;
}

body.page-errors-401 .logo-word {
font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
    font-size:44px;
    font-weight:900;
    line-height:1;
}

body.page-errors-401 .logo-word span {
color:var(--cyan)
}

body.page-errors-401 .error-content {
position:relative;
    z-index:2;
    flex:1;
    width:min(900px,calc(100% - 40px));
    margin:0 auto;
    padding:30px 0 85px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

body.page-errors-401 .error-code {
font-size:clamp(96px,18vw,220px);
    line-height:.78;
    font-weight:900;
    letter-spacing:-.07em;
    background:linear-gradient(90deg,#fff 0%,var(--cyan) 55%,#A89DF1 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    text-shadow:0 22px 60px rgba(0,0,0,.18);
}

body.page-errors-401 .error-kicker {
margin-top:26px;
    color:var(--cyan);
    font-size:13px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
}

body.page-errors-401 .error-title {
margin-top:8px;
    font-size:clamp(30px,5vw,52px);
    font-weight:900;
    line-height:1.05;
}

body.page-errors-401 .error-text {
max-width:760px;
    margin-top:18px;
    color:var(--text-soft);
    font-size:17px;
    line-height:1.65;
}

body.page-errors-401 .error-card {
margin-top:34px;
    padding:18px 20px;
    max-width:720px;
    border-radius:18px;
    background:linear-gradient(145deg,rgba(39,42,64,.95),rgba(31,33,49,.95));
    border:1px solid var(--border);
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    color:var(--text-soft);
}

body.page-errors-401 .error-actions {
margin-top:28px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

body.page-errors-401 .btn {
min-height:50px;
    padding:0 22px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    transition:.2s ease;
}

body.page-errors-401 .btn:hover {
transform:translateY(-2px);filter:brightness(1.08)
}

body.page-errors-401 .btn-primary {
background:linear-gradient(90deg,var(--purple),var(--cyan));
    box-shadow:0 13px 32px rgba(96,181,218,.18);
}

body.page-errors-401 .btn-secondary {
background:rgba(36,39,58,.88);
    border:1px solid rgba(255,255,255,.10);
}

body.page-errors-401 footer {
position:relative;
    z-index:2;
    padding:28px 0 34px;
    color:var(--muted);
    text-align:center;
    font-size:13px;
}

body.page-errors-401 .footer-logo {
margin-bottom:5px;
    color:#fff;
    font-weight:900;
    font-size:21px;
}

body.page-errors-401 .footer-logo span {
color:var(--cyan)
}

@media (max-width:650px) {
    body.page-errors-401 .topbar,
    body.page-errors-401 .error-content {
width:calc(100% - 24px)
    }

    body.page-errors-401 .topbar {
padding:21px 0
    }

    body.page-errors-401 .logo-symbol {
width:49px;height:43px;font-size:30px
    }

    body.page-errors-401 .logo-word {
font-size:36px
    }

    body.page-errors-401 .error-content {
padding:30px 0 60px
    }

    body.page-errors-401 .error-text {
font-size:15px
    }

    body.page-errors-401 .error-actions {
width:100%;flex-direction:column
    }

    body.page-errors-401 .btn {
width:100%
    }
}

/* ==========================================================
   errors/403.html
   ========================================================== */

body.page-errors-403 {
--bg-main:#1B1D2B;
    --bg-section:#1F2131;
    --bg-card:#24273A;
    --purple:#746AB6;
    --cyan:#60B5DA;
    --text:#FFFFFF;
    --text-soft:#D8DAE4;
    --muted:#767B93;
    --border:rgba(255,255,255,.08);
}

body.page-errors-403 * {
box-sizing:border-box;margin:0;padding:0
}

html:has(body.page-errors-403) {
scroll-behavior:smooth
}

body.page-errors-403 {
min-height:100vh;
    font-family:"Titillium Web",sans-serif;
    color:var(--text);
    background:var(--bg-main);
    overflow-x:hidden;
}

body.page-errors-403 a {
color:inherit;text-decoration:none
}

body.page-errors-403 .container {
width:min(1180px,calc(100% - 40px));margin:0 auto
}

body.page-errors-403 .error-page {
min-height:100vh;
    display:flex;
    flex-direction:column;
    background:
        linear-gradient(to bottom,rgba(27,29,43,.18),rgba(27,29,43,.70) 62%,#1B1D2B 100%),
        url("../app/core/assets/images/main-header.webp") center bottom/cover no-repeat;
    position:relative;
    overflow:hidden;
}

body.page-errors-403 .error-page::after {
content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 35%,transparent 12%,rgba(27,29,43,.22) 82%);
    pointer-events:none;
}

body.page-errors-403 .topbar {
width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    padding:30px 0;
    position:relative;
    z-index:10;
}

body.page-errors-403 .logo {
display:inline-flex;
    align-items:center;
    gap:13px;
}

body.page-errors-403 .logo-symbol {
width:58px;
    height:51px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:linear-gradient(135deg,var(--purple),#8C77DA 55%,var(--cyan));
    box-shadow:0 14px 34px rgba(116,106,182,.38);
    font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
    font-size:36px;
    font-weight:900;
}

body.page-errors-403 .logo-word {
font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
    font-size:44px;
    font-weight:900;
    line-height:1;
}

body.page-errors-403 .logo-word span {
color:var(--cyan)
}

body.page-errors-403 .error-content {
position:relative;
    z-index:2;
    flex:1;
    width:min(900px,calc(100% - 40px));
    margin:0 auto;
    padding:30px 0 85px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

body.page-errors-403 .error-code {
font-size:clamp(96px,18vw,220px);
    line-height:.78;
    font-weight:900;
    letter-spacing:-.07em;
    background:linear-gradient(90deg,#fff 0%,var(--cyan) 55%,#A89DF1 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    text-shadow:0 22px 60px rgba(0,0,0,.18);
}

body.page-errors-403 .error-kicker {
margin-top:26px;
    color:var(--cyan);
    font-size:13px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
}

body.page-errors-403 .error-title {
margin-top:8px;
    font-size:clamp(30px,5vw,52px);
    font-weight:900;
    line-height:1.05;
}

body.page-errors-403 .error-text {
max-width:760px;
    margin-top:18px;
    color:var(--text-soft);
    font-size:17px;
    line-height:1.65;
}

body.page-errors-403 .error-card {
margin-top:34px;
    padding:18px 20px;
    max-width:720px;
    border-radius:18px;
    background:linear-gradient(145deg,rgba(39,42,64,.95),rgba(31,33,49,.95));
    border:1px solid var(--border);
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    color:var(--text-soft);
}

body.page-errors-403 .error-actions {
margin-top:28px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

body.page-errors-403 .btn {
min-height:50px;
    padding:0 22px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    transition:.2s ease;
}

body.page-errors-403 .btn:hover {
transform:translateY(-2px);filter:brightness(1.08)
}

body.page-errors-403 .btn-primary {
background:linear-gradient(90deg,var(--purple),var(--cyan));
    box-shadow:0 13px 32px rgba(96,181,218,.18);
}

body.page-errors-403 .btn-secondary {
background:rgba(36,39,58,.88);
    border:1px solid rgba(255,255,255,.10);
}

body.page-errors-403 footer {
position:relative;
    z-index:2;
    padding:28px 0 34px;
    color:var(--muted);
    text-align:center;
    font-size:13px;
}

body.page-errors-403 .footer-logo {
margin-bottom:5px;
    color:#fff;
    font-weight:900;
    font-size:21px;
}

body.page-errors-403 .footer-logo span {
color:var(--cyan)
}

@media (max-width:650px) {
    body.page-errors-403 .topbar,
    body.page-errors-403 .error-content {
width:calc(100% - 24px)
    }

    body.page-errors-403 .topbar {
padding:21px 0
    }

    body.page-errors-403 .logo-symbol {
width:49px;height:43px;font-size:30px
    }

    body.page-errors-403 .logo-word {
font-size:36px
    }

    body.page-errors-403 .error-content {
padding:30px 0 60px
    }

    body.page-errors-403 .error-text {
font-size:15px
    }

    body.page-errors-403 .error-actions {
width:100%;flex-direction:column
    }

    body.page-errors-403 .btn {
width:100%
    }
}

/* ==========================================================
   errors/404.html
   ========================================================== */

body.page-errors-404 {
--bg-main:#1B1D2B;
    --bg-section:#1F2131;
    --bg-card:#24273A;
    --purple:#746AB6;
    --cyan:#60B5DA;
    --text:#FFFFFF;
    --text-soft:#D8DAE4;
    --muted:#767B93;
    --border:rgba(255,255,255,.08);
}

body.page-errors-404 * {
box-sizing:border-box;margin:0;padding:0
}

html:has(body.page-errors-404) {
scroll-behavior:smooth
}

body.page-errors-404 {
min-height:100vh;
    font-family:"Titillium Web",sans-serif;
    color:var(--text);
    background:var(--bg-main);
    overflow-x:hidden;
}

body.page-errors-404 a {
color:inherit;text-decoration:none
}

body.page-errors-404 .container {
width:min(1180px,calc(100% - 40px));margin:0 auto
}

body.page-errors-404 .error-page {
min-height:100vh;
    display:flex;
    flex-direction:column;
    background:
        linear-gradient(to bottom,rgba(27,29,43,.18),rgba(27,29,43,.70) 62%,#1B1D2B 100%),
        url("../app/core/assets/images/main-header.webp") center bottom/cover no-repeat;
    position:relative;
    overflow:hidden;
}

body.page-errors-404 .error-page::after {
content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 35%,transparent 12%,rgba(27,29,43,.22) 82%);
    pointer-events:none;
}

body.page-errors-404 .topbar {
width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    padding:30px 0;
    position:relative;
    z-index:10;
}

body.page-errors-404 .logo {
display:inline-flex;
    align-items:center;
    gap:13px;
}

body.page-errors-404 .logo-symbol {
width:58px;
    height:51px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:linear-gradient(135deg,var(--purple),#8C77DA 55%,var(--cyan));
    box-shadow:0 14px 34px rgba(116,106,182,.38);
    font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
    font-size:36px;
    font-weight:900;
}

body.page-errors-404 .logo-word {
font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
    font-size:44px;
    font-weight:900;
    line-height:1;
}

body.page-errors-404 .logo-word span {
color:var(--cyan)
}

body.page-errors-404 .error-content {
position:relative;
    z-index:2;
    flex:1;
    width:min(900px,calc(100% - 40px));
    margin:0 auto;
    padding:30px 0 85px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

body.page-errors-404 .error-code {
font-size:clamp(96px,18vw,220px);
    line-height:.78;
    font-weight:900;
    letter-spacing:-.07em;
    background:linear-gradient(90deg,#fff 0%,var(--cyan) 55%,#A89DF1 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    text-shadow:0 22px 60px rgba(0,0,0,.18);
}

body.page-errors-404 .error-kicker {
margin-top:26px;
    color:var(--cyan);
    font-size:13px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
}

body.page-errors-404 .error-title {
margin-top:8px;
    font-size:clamp(30px,5vw,52px);
    font-weight:900;
    line-height:1.05;
}

body.page-errors-404 .error-text {
max-width:760px;
    margin-top:18px;
    color:var(--text-soft);
    font-size:17px;
    line-height:1.65;
}

body.page-errors-404 .error-card {
margin-top:34px;
    padding:18px 20px;
    max-width:720px;
    border-radius:18px;
    background:linear-gradient(145deg,rgba(39,42,64,.95),rgba(31,33,49,.95));
    border:1px solid var(--border);
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    color:var(--text-soft);
}

body.page-errors-404 .error-actions {
margin-top:28px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

body.page-errors-404 .btn {
min-height:50px;
    padding:0 22px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    transition:.2s ease;
}

body.page-errors-404 .btn:hover {
transform:translateY(-2px);filter:brightness(1.08)
}

body.page-errors-404 .btn-primary {
background:linear-gradient(90deg,var(--purple),var(--cyan));
    box-shadow:0 13px 32px rgba(96,181,218,.18);
}

body.page-errors-404 .btn-secondary {
background:rgba(36,39,58,.88);
    border:1px solid rgba(255,255,255,.10);
}

body.page-errors-404 footer {
position:relative;
    z-index:2;
    padding:28px 0 34px;
    color:var(--muted);
    text-align:center;
    font-size:13px;
}

body.page-errors-404 .footer-logo {
margin-bottom:5px;
    color:#fff;
    font-weight:900;
    font-size:21px;
}

body.page-errors-404 .footer-logo span {
color:var(--cyan)
}

@media (max-width:650px) {
    body.page-errors-404 .topbar,
    body.page-errors-404 .error-content {
width:calc(100% - 24px)
    }

    body.page-errors-404 .topbar {
padding:21px 0
    }

    body.page-errors-404 .logo-symbol {
width:49px;height:43px;font-size:30px
    }

    body.page-errors-404 .logo-word {
font-size:36px
    }

    body.page-errors-404 .error-content {
padding:30px 0 60px
    }

    body.page-errors-404 .error-text {
font-size:15px
    }

    body.page-errors-404 .error-actions {
width:100%;flex-direction:column
    }

    body.page-errors-404 .btn {
width:100%
    }
}

/* ==========================================================
   index.html
   ========================================================== */

/* =====================================================
           ZUUO FARBSYSTEM
        ====================================================== */

body.page-home {
--bg-main:
                #1B1D2B;

            --bg-section:
                #1F2131;

            --bg-card:
                #24273A;

            --bg-card-hover:
                #292D43;

            --purple:
                #746AB6;

            --purple-light:
                #8D81D7;

            --cyan:
                #60B5DA;

            --text:
                #FFFFFF;

            --text-soft:
                #D8DAE4;

            --muted:
                #767B93;

            --green:
                #2ECC71;

            --red:
                #EF5350;

            --yellow:
                #F5C542;

            --border:
                rgba(255,255,255,0.08);

            --border-hover:
                rgba(96,181,218,0.42);

            --shadow:
                0 22px 55px
                rgba(0,0,0,0.26);

            --radius:
                18px;
}

/* =====================================================
           RESET
        ====================================================== */

body.page-home * {
box-sizing:
                border-box;

            margin:
                0;

            padding:
                0;
}

html:has(body.page-home) {
scroll-behavior:
                smooth;
}

body.page-home {
min-height:
                100vh;

            background:
                var(--bg-main);

            color:
                var(--text);

            font-family:
                "Titillium Web",
                sans-serif;

            line-height:
                1.55;

            overflow-x:
                hidden;
}

body.page-home button,
body.page-home input {
font:
                inherit;
}

body.page-home a {
color:
                inherit;
}

body.page-home img {
display:
                block;

            max-width:
                100%;
}

/* =====================================================
           GLOBAL
        ====================================================== */

body.page-home .container {
width:
                min(
                    1180px,
                    calc(100% - 40px)
                );

            margin:
                0 auto;
}

body.page-home .section {
position:
                relative;

            padding:
                100px
                0;
}

body.page-home .section-alt {
background:
                var(--bg-section);
}

body.page-home .center {
text-align:
                center;
}

body.page-home .eyebrow {
color:
                var(--cyan);

            font-size:
                13px;

            font-weight:
                700;

            letter-spacing:
                0.14em;

            text-transform:
                uppercase;

            margin-bottom:
                8px;
}

body.page-home .section-heading {
font-size:
                clamp(
                    34px,
                    5vw,
                    52px
                );

            font-weight:
                900;

            line-height:
                1;

            letter-spacing:
                -0.035em;

            text-transform:
                uppercase;
}

body.page-home .section-intro {
max-width:
                730px;

            margin:
                20px
                auto
                0;

            color:
                var(--text-soft);

            font-size:
                17px;
}

/* =====================================================
           HERO
        ====================================================== */

body.page-home .hero {
position:
                relative;

            min-height:
                760px;

            overflow:
                hidden;

            display:
                flex;

            flex-direction:
                column;

            background:

                linear-gradient(
                    to bottom,
                    rgba(27,29,43,0.15) 0%,
                    rgba(27,29,43,0.28) 45%,
                    rgba(27,29,43,0.78) 83%,
                    #1B1D2B 100%
                ),

                url(
                    "app/core/assets/images/main-header.webp"
                )
                center bottom /
                cover
                no-repeat;
}

body.page-home .hero::after {
content:
                "";

            position:
                absolute;

            inset:
                0;

            background:

                radial-gradient(
                    circle at 50% 50%,
                    transparent 20%,
                    rgba(27,29,43,0.18) 80%
                );

            pointer-events:
                none;
}

/* =====================================================
           TOP BAR
        ====================================================== */

body.page-home .topbar {
width:
                min(
                    1180px,
                    calc(100% - 40px)
                );

            margin:
                0 auto;

            padding:
                34px
                0;

            position:
                relative;

            z-index:
                10;

            display:
                flex;

            align-items:
                center;

            justify-content:
                space-between;
}

/* =====================================================
           LOGO
        ====================================================== */

body.page-home .logo {
display:
                inline-flex;

            align-items:
                center;

            gap:
                13px;

            text-decoration:
                none;
}

body.page-home .logo-symbol {
width:
                65px;

            height:
                56px;

            display:
                grid;

            place-items:
                center;

            border-radius:
                17px;

            background:

                linear-gradient(
                    135deg,
                    var(--purple),
                    #8C77DA 55%,
                    var(--cyan)
                );

            box-shadow:

                0 14px 34px
                rgba(116,106,182,0.38);

            font-family:
                "Arial Rounded MT Bold",
                "Trebuchet MS",
                sans-serif;

            font-size:
                40px;

            font-weight:
                900;

            line-height:
                1;
}

body.page-home .logo-word {
font-family:
                "Arial Rounded MT Bold",
                "Trebuchet MS",
                sans-serif;

            font-size:
                50px;

            font-weight:
                900;

            letter-spacing:
                0.015em;

            line-height:
                1;
}

body.page-home .logo-word span {
color:
                var(--cyan);
}

/* =====================================================
           SCHWEBENDES MENÜ
        ====================================================== */

body.page-home .quick-menu-wrapper {
position:
                fixed;

            top:
                28px;

            right:
                28px;

            z-index:
                10000;
}

body.page-home .quick-menu-button {
width:
                50px;

            height:
                50px;

            display:
                grid;

            place-items:
                center;

            border:
                1px solid
                rgba(255,255,255,0.10);

            border-radius:
                14px;

            background:
                rgba(31,33,49,0.86);

            backdrop-filter:
                blur(18px);

            -webkit-backdrop-filter:
                blur(18px);

            box-shadow:

                0 12px 32px
                rgba(0,0,0,0.22);

            color:
                white;

            cursor:
                pointer;

            font-size:
                21px;

            transition:
                transform .2s ease,
                background .2s ease,
                border-color .2s ease;
}

body.page-home .quick-menu-button:hover {
transform:
                translateY(-2px);

            background:
                rgba(36,39,58,0.96);

            border-color:
                var(--cyan);
}

body.page-home .quick-menu-button.active {
border-color:
                var(--cyan);

            box-shadow:

                0 0 0 3px
                rgba(96,181,218,0.08),

                0 15px 35px
                rgba(0,0,0,0.25);
}

body.page-home .quick-menu {
position:
                absolute;

            top:
                62px;

            right:
                0;

            width:
                275px;

            padding:
                12px;

            border-radius:
                18px;

            background:
                rgba(27,29,43,0.97);

            border:
                1px solid
                rgba(255,255,255,0.09);

            box-shadow:

                0 25px 65px
                rgba(0,0,0,0.45);

            backdrop-filter:
                blur(22px);

            -webkit-backdrop-filter:
                blur(22px);

            opacity:
                0;

            visibility:
                hidden;

            transform:
                translateY(-8px)
                scale(.96);

            transform-origin:
                top right;

            transition:
                opacity .2s ease,
                visibility .2s ease,
                transform .2s ease;
}

body.page-home .quick-menu.open {
opacity:
                1;

            visibility:
                visible;

            transform:
                translateY(0)
                scale(1);
}

body.page-home .quick-menu-title {
padding:
                8px
                10px
                10px;

            color:
                var(--muted);

            font-size:
                10px;

            font-weight:
                700;

            letter-spacing:
                .14em;

            text-transform:
                uppercase;
}

body.page-home .quick-menu-link {
display:
                flex;

            align-items:
                center;

            gap:
                12px;

            padding:
                11px;

            border-radius:
                12px;

            text-decoration:
                none;

            transition:
                transform .18s ease,
                background .18s ease;
}

body.page-home .quick-menu-link:hover {
transform:
                translateX(3px);

            background:
                rgba(116,106,182,.15);
}

body.page-home .quick-menu-icon {
width:
                32px;

            height:
                32px;

            display:
                grid;

            place-items:
                center;

            flex-shrink:
                0;

            border-radius:
                9px;

            background:
                var(--bg-card);

            color:
                var(--cyan);

            font-size:
                11px;

            font-weight:
                700;
}

body.page-home .quick-menu-link strong {
font-size:
                14px;

            font-weight:
                600;
}

/* =====================================================
           HERO CONTENT
        ====================================================== */

body.page-home .hero-content {
position:
                relative;

            z-index:
                2;

            flex:
                1;

            width:
                min(
                    1000px,
                    calc(100% - 40px)
                );

            margin:
                0 auto;

            padding:
                70px
                0
                120px;

            display:
                flex;

            flex-direction:
                column;

            justify-content:
                center;

            align-items:
                center;

            text-align:
                center;
}

body.page-home .hero-kicker {
margin-bottom:
                15px;

            color:
                var(--cyan);

            font-size:
                14px;

            font-weight:
                700;

            letter-spacing:
                .17em;

            text-transform:
                uppercase;
}

body.page-home .hero-title {
max-width:
                950px;

            font-size:
                clamp(
                    50px,
                    8vw,
                    94px
                );

            font-weight:
                900;

            line-height:
                .94;

            letter-spacing:
                -.045em;

            text-transform:
                uppercase;

            text-shadow:

                0 10px 50px
                rgba(0,0,0,.28);
}

body.page-home .gradient-text {
background:

                linear-gradient(
                    90deg,
                    #FFFFFF 0%,
                    #FFFFFF 25%,
                    var(--cyan) 65%,
                    #A89DF1 100%
                );

            -webkit-background-clip:
                text;

            background-clip:
                text;

            color:
                transparent;
}

body.page-home .hero-description {
max-width:
                790px;

            margin-top:
                28px;

            color:
                rgba(255,255,255,.82);

            font-size:
                18px;

            text-shadow:
                0 3px 12px
                rgba(0,0,0,.25);
}

body.page-home .hero-actions {
margin-top:
                34px;

            display:
                flex;

            justify-content:
                center;

            flex-wrap:
                wrap;

            gap:
                14px;
}

/* =====================================================
           BUTTONS
        ====================================================== */

body.page-home .btn {
min-height:
                52px;

            padding:
                0
                24px;

            display:
                inline-flex;

            align-items:
                center;

            justify-content:
                center;

            gap:
                9px;

            border:
                0;

            border-radius:
                12px;

            color:
                white;

            text-decoration:
                none;

            font-size:
                14px;

            font-weight:
                700;

            letter-spacing:
                .055em;

            text-transform:
                uppercase;

            cursor:
                pointer;

            transition:
                transform .2s ease,
                filter .2s ease,
                box-shadow .2s ease;
}

body.page-home .btn:hover {
transform:
                translateY(-2px);

            filter:
                brightness(1.08);
}

body.page-home .btn-primary {
background:

                linear-gradient(
                    90deg,
                    var(--purple),
                    var(--cyan)
                );

            box-shadow:

                0 13px 32px
                rgba(96,181,218,.18);
}

body.page-home .btn-secondary {
background:
                rgba(36,39,58,.84);

            border:
                1px solid
                rgba(255,255,255,.10);

            backdrop-filter:
                blur(10px);
}

/* =====================================================
           WELCOME
        ====================================================== */

body.page-home .welcome {
max-width:
                900px;

            margin:
                0 auto;

            text-align:
                center;
}

body.page-home .welcome h2 {
margin-bottom:
                23px;

            font-size:
                clamp(
                    29px,
                    4vw,
                    42px
                );

            font-weight:
                700;
}

body.page-home .welcome p {
color:
                var(--text-soft);

            font-size:
                17px;
}

/* =====================================================
           COMMUNITY BACKGROUND
        ====================================================== */

body.page-home .community-background {
position:
                relative;

            background:

                linear-gradient(
                    rgba(31,33,49,.82),
                    rgba(31,33,49,.94)
                ),

                url(
                    "app/core/assets/images/section_bg.webp"
                )
                center center /
                cover
                fixed
                no-repeat;

            border-top:
                1px solid
                rgba(255,255,255,.04);

            border-bottom:
                1px solid
                rgba(255,255,255,.04);
}

/* =====================================================
           TEAMSPEAK
        ====================================================== */

body.page-home .teamspeak-layout {
display:
                grid;

            grid-template-columns:
                .9fr
                1.1fr;

            gap:
                60px;

            align-items:
                center;
}

body.page-home .teamspeak-copy h3 {
margin-bottom:
                17px;

            font-size:
                32px;

            font-weight:
                800;

            line-height:
                1.15;
}

body.page-home .teamspeak-copy p {
color:
                var(--text-soft);

            font-size:
                16px;
}

body.page-home .feature-list {
display:
                grid;

            gap:
                11px;

            margin-top:
                24px;
}

body.page-home .feature-item {
display:
                flex;

            align-items:
                center;

            gap:
                10px;

            color:
                var(--text-soft);
}

body.page-home .feature-dot {
width:
                7px;

            height:
                7px;

            flex-shrink:
                0;

            border-radius:
                50%;

            background:
                var(--cyan);

            box-shadow:

                0 0 10px
                rgba(96,181,218,.55);
}

body.page-home .teamspeak-card {
position:
                relative;

            overflow:
                hidden;

            padding:
                30px;

            border-radius:
                21px;

            background:

                linear-gradient(
                    145deg,
                    rgba(39,42,64,.98),
                    rgba(31,33,49,.96)
                );

            border:
                1px solid
                rgba(255,255,255,.09);

            box-shadow:
                var(--shadow);
}

body.page-home .teamspeak-card::before {
content:
                "";

            position:
                absolute;

            width:
                210px;

            height:
                210px;

            top:
                -120px;

            right:
                -80px;

            border-radius:
                50%;

            background:
                rgba(96,181,218,.10);

            filter:
                blur(5px);
}

body.page-home .card-label {
position:
                relative;

            z-index:
                1;

            margin-bottom:
                12px;

            color:
                var(--muted);

            font-size:
                11px;

            font-weight:
                700;

            letter-spacing:
                .12em;

            text-transform:
                uppercase;
}

body.page-home .server-address-row {
position:
                relative;

            z-index:
                1;

            display:
                flex;

            align-items:
                center;

            gap:
                10px;

            padding:
                10px;

            border-radius:
                13px;

            background:
                rgba(27,29,43,.92);

            border:
                1px solid
                rgba(255,255,255,.05);
}

body.page-home .server-address {
min-width:
                0;

            flex:
                1;

            padding:
                0
                8px;

            overflow:
                hidden;

            text-overflow:
                ellipsis;

            white-space:
                nowrap;

            font-size:
                24px;

            font-weight:
                900;
}

body.page-home .copy-button {
flex-shrink:
                0;

            padding:
                10px
                16px;

            border:
                0;

            border-radius:
                9px;

            background:
                var(--purple);

            color:
                white;

            font-weight:
                700;

            cursor:
                pointer;

            transition:
                transform .2s ease,
                filter .2s ease;
}

body.page-home .copy-button:hover {
transform:
                translateY(-1px);

            filter:
                brightness(1.1);
}

body.page-home .join-button {
position:
                relative;

            z-index:
                1;

            width:
                100%;

            margin-top:
                12px;

            background:

                linear-gradient(
                    90deg,
                    #29B858,
                    #27A952
                );
}

body.page-home .server-meta {
position:
                relative;

            z-index:
                1;

            display:
                flex;

            justify-content:
                space-between;

            align-items:
                center;

            gap:
                15px;

            margin-top:
                20px;

            padding-top:
                17px;

            border-top:
                1px solid
                var(--border);

            color:
                var(--muted);

            font-size:
                14px;
}

/* =====================================================
           STATUS
        ====================================================== */

body.page-home .status {
display:
                inline-flex;

            align-items:
                center;

            gap:
                7px;
}

body.page-home .status-dot {
width:
                8px;

            height:
                8px;

            flex-shrink:
                0;

            border-radius:
                50%;

            background:
                var(--yellow);
}

body.page-home .status-dot.online {
background:
                var(--green);

            box-shadow:

                0 0 11px
                rgba(46,204,113,.65);
}

body.page-home .status-dot.offline {
background:
                var(--red);
}

body.page-home .status-dot.checking {
background:
                var(--yellow);

            box-shadow:

                0 0 9px
                rgba(245,197,66,.4);
}

/* =====================================================
           GAMESERVER
        ====================================================== */

body.page-home .games-grid {
display:
                grid;

            grid-template-columns:
                repeat(
                    2,
                    minmax(0,1fr)
                );

            gap:
                24px;

            margin-top:
                45px;
}

body.page-home .game-card {
position:
                relative;

            min-height:
                420px;

            overflow:
                hidden;

            display:
                flex;

            align-items:
                flex-end;

            border:
                1px solid
                var(--border);

            border-radius:
                21px;

            background:
                var(--bg-card);

            box-shadow:

                0 18px 45px
                rgba(0,0,0,.20);

            transition:
                transform .25s ease,
                border-color .25s ease,
                box-shadow .25s ease;
}

body.page-home .game-card:hover {
transform:
                translateY(-6px);

            border-color:
                var(--border-hover);

            box-shadow:

                0 26px 60px
                rgba(0,0,0,.30);
}

body.page-home .game-card-bg {
position:
                absolute;

            inset:
                0;

            width:
                100%;

            height:
                100%;

            object-fit:
                cover;

            transition:
                transform .5s ease;
}

body.page-home .game-card:hover
        .game-card-bg {
transform:
                scale(1.035);
}

body.page-home .game-card::after {
content:
                "";

            position:
                absolute;

            inset:
                0;

            background:

                linear-gradient(
                    to top,
                    rgba(20,22,34,.99) 0%,
                    rgba(20,22,34,.90) 30%,
                    rgba(20,22,34,.42) 62%,
                    rgba(20,22,34,.10) 100%
                );
}

body.page-home .game-content {
position:
                relative;

            z-index:
                2;

            width:
                100%;

            padding:
                28px;
}

body.page-home .game-topline {
display:
                flex;

            align-items:
                center;

            justify-content:
                space-between;

            gap:
                12px;

            margin-bottom:
                9px;
}

body.page-home .platform {
color:
                var(--cyan);

            font-size:
                11px;

            font-weight:
                700;

            letter-spacing:
                .12em;

            text-transform:
                uppercase;
}

body.page-home .game-title {
font-size:
                34px;

            font-weight:
                900;

            line-height:
                1;

            text-transform:
                uppercase;
}

body.page-home .game-description {
max-width:
                550px;

            margin-top:
                10px;

            color:
                rgba(255,255,255,.78);

            font-size:
                14px;
}

body.page-home .game-actions {
display:
                flex;

            gap:
                10px;

            margin-top:
                19px;
}

body.page-home .game-address {
min-width:
                0;

            flex:
                1;

            min-height:
                44px;

            padding:
                0
                14px;

            display:
                flex;

            align-items:
                center;

            overflow:
                hidden;

            white-space:
                nowrap;

            text-overflow:
                ellipsis;

            border-radius:
                10px;

            background:
                rgba(27,29,43,.92);

            border:
                1px solid
                rgba(255,255,255,.07);

            font-weight:
                700;
}

body.page-home .game-copy {
flex-shrink:
                0;

            min-height:
                44px;

            padding:
                0
                17px;

            border:
                0;

            border-radius:
                10px;

            background:
                var(--purple);

            color:
                white;

            font-weight:
                700;

            cursor:
                pointer;

            transition:
                filter .2s ease,
                transform .2s ease;
}

body.page-home .game-copy:hover {
transform:
                translateY(-1px);

            filter:
                brightness(1.1);
}

/* =====================================================
           SPONSOREN / PARTNER
        ====================================================== */

body.page-home .partners-section {
position:
                relative;

            overflow:
                hidden;

            padding:
                80px
                0;

            background:
                #24273A;

            border-top:
                1px solid
                rgba(255,255,255,.04);

            border-bottom:
                1px solid
                rgba(255,255,255,.04);
}

body.page-home .partners-section::before {
content:
                "";

            position:
                absolute;

            width:
                500px;

            height:
                280px;

            left:
                50%;

            top:
                50%;

            transform:
                translate(-50%,-50%);

            background:
                rgba(116,106,182,.07);

            filter:
                blur(80px);

            border-radius:
                50%;
}

body.page-home .partners-title {
position:
                relative;

            z-index:
                1;

            margin-bottom:
                45px;

            color:
                var(--muted);

            text-align:
                center;

            font-size:
                11px;

            font-weight:
                700;

            letter-spacing:
                .16em;

            text-transform:
                uppercase;
}

body.page-home .partners-grid {
position:
                relative;

            z-index:
                1;

            display:
                grid;

            grid-template-columns:
                repeat(
                    4,
                    minmax(0,1fr)
                );

            align-items:
                center;

            gap:
                45px;
}

body.page-home .partner {
min-height:
                80px;

            display:
                flex;

            align-items:
                center;

            justify-content:
                center;

            text-decoration:
                none;

            opacity:
                .70;

            transition:
                opacity .22s ease,
                transform .22s ease,
                filter .22s ease;
}

body.page-home .partner:hover {
opacity:
                1;

            transform:
                translateY(-3px);
}

body.page-home .partner img {
width:
                auto;

            max-width:
                165px;

            max-height:
                48px;

            object-fit:
                contain;

            filter:
                grayscale(1)
                brightness(3.2);

            transition:
                filter .22s ease;
}

body.page-home .partner:hover img {
filter:
                grayscale(0)
                brightness(1.12);
}

/* =====================================================
           FOOTER
        ====================================================== */

body.page-home footer {
padding:
                42px
                0;

            background:
                #191B28;

            color:
                var(--muted);

            text-align:
                center;

            font-size:
                14px;
}

body.page-home .footer-logo {
margin-bottom:
                7px;

            color:
                white;

            font-size:
                23px;

            font-weight:
                900;
}

body.page-home .footer-logo span {
color:
                var(--cyan);
}

/* =====================================================
           REVEAL ANIMATION
        ====================================================== */

body.page-home .reveal {
opacity:
                0;

            transform:
                translateY(20px);

            transition:
                opacity .65s ease,
                transform .65s ease;
}

body.page-home .reveal.visible {
opacity:
                1;

            transform:
                translateY(0);
}

/* =====================================================
           TABLET
        ====================================================== */

@media (max-width: 900px) {
    body.page-home .teamspeak-layout {
grid-template-columns:
                    1fr;

                gap:
                    40px;
    }

    body.page-home .games-grid {
grid-template-columns:
                    1fr;
    }

    body.page-home .partners-grid {
grid-template-columns:
                    repeat(
                        2,
                        minmax(0,1fr)
                    );

                gap:
                    30px;
    }
}

/* =====================================================
           MOBILE
        ====================================================== */

@media (max-width: 600px) {
    body.page-home .container {
width:
                    calc(100% - 24px);
    }

    body.page-home .section {
padding:
                    72px
                    0;
    }

    body.page-home .hero {
min-height:
                    680px;

                background-position:
                    center bottom;
    }

    body.page-home .topbar {
width:
                    calc(100% - 24px);

                padding:
                    22px
                    0;
    }

    body.page-home .logo-symbol {
width:
                    52px;

                height:
                    46px;

                font-size:
                    31px;
    }

    body.page-home .logo-word {
font-size:
                    38px;
    }

    body.page-home .quick-menu-wrapper {
top:
                    20px;

                right:
                    12px;
    }

    body.page-home .quick-menu-button {
width:
                    44px;

                height:
                    44px;
    }

    body.page-home .quick-menu {
top:
                    55px;

                width:
                    min(
                        275px,
                        calc(100vw - 24px)
                    );
    }

    body.page-home .hero-content {
width:
                    calc(100% - 24px);

                padding:
                    110px
                    0
                    90px;
    }

    body.page-home .hero-title {
font-size:
                    clamp(
                        45px,
                        15vw,
                        68px
                    );
    }

    body.page-home .hero-description {
font-size:
                    16px;
    }

    body.page-home .hero-actions {
width:
                    100%;

                flex-direction:
                    column;
    }

    body.page-home .hero-actions .btn {
width:
                    100%;
    }

    body.page-home .community-background {
background-attachment:
                    scroll;
    }

    body.page-home .teamspeak-card {
padding:
                    19px;
    }

    body.page-home .server-address-row {
flex-direction:
                    column;

                align-items:
                    stretch;
    }

    body.page-home .server-address {
padding:
                    5px
                    7px;

                font-size:
                    20px;
    }

    body.page-home .copy-button {
width:
                    100%;
    }

    body.page-home .server-meta {
align-items:
                    flex-start;

                flex-direction:
                    column;
    }

    body.page-home .game-card {
min-height:
                    460px;
    }

    body.page-home .game-content {
padding:
                    22px;
    }

    body.page-home .game-actions {
flex-direction:
                    column;
    }

    body.page-home .game-copy {
width:
                    100%;
    }

    body.page-home .partners-section {
padding:
                    65px
                    0;
    }

    body.page-home .partners-grid {
grid-template-columns:
                    1fr
                    1fr;

                gap:
                    20px;
    }

    body.page-home .partner img {
max-width:
                    125px;

                max-height:
                    40px;
    }
}

/* ==========================================================
   playground/index.html
   ========================================================== */

body.page-playground {
--bg:#1B1D2B;
            --section:#1F2131;
            --card:#24273A;
            --card2:#2A2D43;
            --purple:#746AB6;
            --cyan:#60B5DA;
            --text:#FFFFFF;
            --soft:#D8DAE4;
            --muted:#767B93;
            --green:#2ECC71;
            --red:#EF5350;
            --yellow:#F5C542;
            --blue:#60B5DA;
            --border:rgba(255,255,255,.08);
}

body.page-playground * {
box-sizing:border-box;margin:0;padding:0
}

html:has(body.page-playground) {
scroll-behavior:smooth
}

body.page-playground {
min-height:100vh;
            font-family:"Titillium Web",sans-serif;
            background:var(--bg);
            color:var(--text);
            line-height:1.55;
            overflow-x:hidden;
}

body.page-playground button,
body.page-playground input {
font:inherit
}

body.page-playground button {
color:inherit
}

body.page-playground a {
color:inherit;text-decoration:none
}

body.page-playground img {
display:block;max-width:100%
}

body.page-playground .container {
width:min(1180px,calc(100% - 40px));
            margin:auto;
}

/* =====================================================
           HERO
        ====================================================== */

body.page-playground .hero {
min-height:480px;
            position:relative;
            display:flex;
            flex-direction:column;
            overflow:hidden;
            background:
                linear-gradient(
                    to bottom,
                    rgba(27,29,43,.20),
                    rgba(27,29,43,.58) 62%,
                    #1B1D2B 100%
                ),
                url("../app/core/assets/images/main-header.webp")
                center bottom/cover no-repeat;
}

body.page-playground .hero::after {
content:"";
            position:absolute;
            inset:0;
            background:
                radial-gradient(
                    circle at 50% 40%,
                    transparent 12%,
                    rgba(27,29,43,.20) 82%
                );
            pointer-events:none;
}

body.page-playground .topbar {
width:min(1180px,calc(100% - 40px));
            margin:auto;
            padding:30px 0;
            position:relative;
            z-index:10;
}

body.page-playground .logo {
display:inline-flex;
            align-items:center;
            gap:13px;
}

body.page-playground .logo-symbol {
width:58px;
            height:51px;
            display:grid;
            place-items:center;
            border-radius:16px;
            background:
                linear-gradient(
                    135deg,
                    var(--purple),
                    #8C77DA 55%,
                    var(--cyan)
                );
            box-shadow:0 14px 34px rgba(116,106,182,.38);
            font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
            font-size:36px;
            font-weight:900;
}

body.page-playground .logo-word {
font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;
            font-size:44px;
            font-weight:900;
            line-height:1;
}

body.page-playground .logo-word span {
color:var(--cyan)
}

body.page-playground .hero-content {
position:relative;
            z-index:2;
            flex:1;
            width:min(900px,calc(100% - 40px));
            margin:auto;
            padding:35px 0 92px;
            display:flex;
            flex-direction:column;
            justify-content:center;
            text-align:center;
}

body.page-playground .eyebrow {
color:var(--cyan);
            font-size:13px;
            font-weight:700;
            letter-spacing:.15em;
            text-transform:uppercase;
            margin-bottom:8px;
}

body.page-playground .hero h1 {
font-size:clamp(52px,8vw,86px);
            font-weight:900;
            line-height:.95;
            letter-spacing:-.045em;
            text-transform:uppercase;
}

body.page-playground .hero h1 span {
background:
                linear-gradient(
                    90deg,
                    #FFFFFF,
                    var(--cyan),
                    #A89DF1
                );
            -webkit-background-clip:text;
            background-clip:text;
            color:transparent;
}

body.page-playground .hero p {
max-width:850px;
            margin:24px auto 0;
            color:rgba(255,255,255,.82);
            font-size:17px;
}

/* =====================================================
           QUICK MENU
        ====================================================== */

body.page-playground .quick-menu-wrapper {
position:fixed;
            top:28px;
            right:28px;
            z-index:10000;
}

body.page-playground .quick-menu-button {
width:50px;
            height:50px;
            display:grid;
            place-items:center;
            border:1px solid rgba(255,255,255,.10);
            border-radius:14px;
            background:rgba(31,33,49,.88);
            backdrop-filter:blur(18px);
            -webkit-backdrop-filter:blur(18px);
            cursor:pointer;
            font-size:21px;
            box-shadow:0 12px 32px rgba(0,0,0,.22);
}

body.page-playground .quick-menu {
position:absolute;
            top:62px;
            right:0;
            width:285px;
            padding:12px;
            border-radius:18px;
            background:rgba(27,29,43,.98);
            border:1px solid rgba(255,255,255,.09);
            box-shadow:0 25px 65px rgba(0,0,0,.45);
            opacity:0;
            visibility:hidden;
            transform:translateY(-8px) scale(.96);
            transform-origin:top right;
            transition:.2s ease;
}

body.page-playground .quick-menu.open {
opacity:1;
            visibility:visible;
            transform:none;
}

body.page-playground .quick-menu-title {
padding:8px 10px 10px;
            color:var(--muted);
            font-size:10px;
            font-weight:700;
            letter-spacing:.14em;
            text-transform:uppercase;
}

body.page-playground .quick-menu-link {
display:flex;
            align-items:center;
            gap:12px;
            padding:11px;
            border-radius:12px;
            transition:.18s ease;
}

body.page-playground .quick-menu-link:hover {
background:rgba(116,106,182,.15);
            transform:translateX(3px);
}

body.page-playground .quick-menu-icon {
width:32px;
            height:32px;
            display:grid;
            place-items:center;
            border-radius:9px;
            background:var(--card);
            color:var(--cyan);
            font-size:11px;
            font-weight:700;
}

/* =====================================================
           FILTERS
        ====================================================== */

body.page-playground .playground-area {
padding:50px 0 82px;
            background:
                linear-gradient(
                    rgba(31,33,49,.91),
                    rgba(31,33,49,.97)
                ),
                url("../app/core/assets/images/section_bg.webp")
                center/cover fixed no-repeat;
}

body.page-playground .filter-bar {
display:grid;
            grid-template-columns:auto auto auto auto 1fr;
            gap:9px;
            margin-bottom:28px;
            padding:13px;
            border-radius:18px;
            background:rgba(36,39,58,.92);
            border:1px solid var(--border);
            box-shadow:0 16px 40px rgba(0,0,0,.14);
}

body.page-playground .filter-btn {
min-height:44px;
            padding:0 16px;
            border:1px solid rgba(255,255,255,.07);
            border-radius:12px;
            background:rgba(27,29,43,.72);
            color:var(--soft);
            cursor:pointer;
            font-weight:700;
            transition:.18s ease;
}

body.page-playground .filter-btn:hover,
body.page-playground .filter-btn.active {
color:#fff;
            border-color:rgba(96,181,218,.36);
            background:
                linear-gradient(
                    135deg,
                    rgba(116,106,182,.33),
                    rgba(96,181,218,.16)
                );
}

body.page-playground .search-box {
position:relative;
}

body.page-playground .search-box input {
width:100%;
            height:44px;
            padding:0 44px 0 15px;
            border:1px solid rgba(255,255,255,.07);
            border-radius:12px;
            outline:none;
            background:rgba(27,29,43,.72);
            color:#fff;
}

body.page-playground .search-box input::placeholder {
color:var(--muted)
}

body.page-playground .search-box svg {
position:absolute;
            right:15px;
            top:50%;
            transform:translateY(-50%);
            width:17px;
            height:17px;
            fill:none;
            stroke:var(--cyan);
            stroke-width:2;
            pointer-events:none;
}

/* =====================================================
           GAME CARDS
        ====================================================== */

body.page-playground .status-note {
margin-bottom:22px;
            padding:15px 17px;
            border-radius:14px;
            background:rgba(96,181,218,.08);
            border:1px solid rgba(96,181,218,.20);
            color:var(--soft);
            font-size:13px;
}

body.page-playground .status-note strong {
color:#fff
}

body.page-playground .status-note code {
color:var(--cyan)
}

body.page-playground .game-grid {
display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:22px;
}

body.page-playground .game-card {
min-height:420px;
            position:relative;
            overflow:hidden;
            display:flex;
            align-items:flex-end;
            border-radius:20px;
            border:1px solid rgba(255,255,255,.09);
            background:var(--card);
            box-shadow:0 20px 52px rgba(0,0,0,.22);
            transition:
                transform .24s ease,
                border-color .24s ease,
                box-shadow .24s ease;
}

body.page-playground .game-card:hover {
transform:translateY(-5px);
            border-color:rgba(96,181,218,.38);
            box-shadow:0 28px 65px rgba(0,0,0,.30);
}

body.page-playground .game-card.hidden {
display:none
}

body.page-playground .game-card-bg {
position:absolute;
            inset:0;
            width:100%;
            height:100%;
            object-fit:cover;
            transition:transform .45s ease;
}

body.page-playground .game-card:hover .game-card-bg {
transform:scale(1.035);
}

body.page-playground .game-card::after {
content:"";
            position:absolute;
            inset:0;
            background:
                linear-gradient(
                    to top,
                    rgba(20,22,34,.99) 0%,
                    rgba(20,22,34,.90) 34%,
                    rgba(20,22,34,.48) 66%,
                    rgba(20,22,34,.10) 100%
                );
}

body.page-playground .status-badge {
position:absolute;
            z-index:4;
            top:16px;
            right:16px;
            min-width:138px;
            min-height:40px;
            padding:0 14px;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            border-radius:11px;
            font-size:12px;
            font-weight:800;
            letter-spacing:.035em;
            text-transform:uppercase;
            backdrop-filter:blur(8px);
            box-shadow:0 10px 24px rgba(0,0,0,.22);
}

body.page-playground .status-badge.online {
background:#2ECC71;
            color:#fff;
}

body.page-playground .status-badge.offline {
background:#EF5350;
            color:#fff;
}

body.page-playground .status-badge.planned {
background:#746AB6;
            color:#fff;
}

body.page-playground .status-badge.checking {
background:#F5A623;
            color:#fff;
}

body.page-playground [data-status-dot] {
width:8px;
            height:8px;
            border-radius:50%;
            background:currentColor;
            box-shadow:0 0 9px rgba(255,255,255,.34);
            flex:0 0 auto;
}

body.page-playground .game-content {
width:100%;
            position:relative;
            z-index:3;
            padding:28px;
}

body.page-playground .game-meta {
display:flex;
            justify-content:space-between;
            align-items:center;
            gap:12px;
            margin-bottom:10px;
}

body.page-playground .platform {
color:var(--cyan);
            font-size:12px;
            font-weight:800;
            letter-spacing:.10em;
            text-transform:uppercase;
}

body.page-playground .game-title {
font-size:34px;
            font-weight:900;
            line-height:1;
            text-transform:uppercase;
}

body.page-playground .game-description {
margin-top:11px;
            color:rgba(255,255,255,.82);
            font-size:14px;
            max-width:620px;
}

body.page-playground .details {
display:grid;
            grid-template-columns:repeat(3,minmax(0,1fr));
            gap:8px;
            margin-top:18px;
}

body.page-playground .detail {
padding:10px 12px;
            border-radius:11px;
            background:rgba(27,29,43,.74);
            border:1px solid rgba(255,255,255,.06);
}

body.page-playground .detail span {
display:block;
            color:var(--muted);
            font-size:10px;
            text-transform:uppercase;
            letter-spacing:.08em;
}

body.page-playground .detail strong {
display:block;
            margin-top:2px;
            font-size:13px;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
}

body.page-playground .game-actions {
display:flex;
            gap:10px;
            margin-top:14px;
}

body.page-playground .server-address {
flex:1;
            min-width:0;
            min-height:44px;
            padding:0 14px;
            display:flex;
            align-items:center;
            border-radius:10px;
            background:rgba(27,29,43,.90);
            border:1px solid rgba(255,255,255,.07);
            font-weight:700;
            overflow:hidden;
            white-space:nowrap;
            text-overflow:ellipsis;
}

body.page-playground .copy-btn {
min-height:44px;
            padding:0 17px;
            border:0;
            border-radius:10px;
            background:var(--purple);
            color:#fff;
            cursor:pointer;
            font-weight:700;
}

body.page-playground .empty-state {
display:none;
            margin-top:24px;
            padding:28px;
            text-align:center;
            border-radius:17px;
            background:rgba(36,39,58,.93);
            border:1px solid var(--border);
            color:var(--soft);
}

body.page-playground .empty-state.visible {
display:block
}

/* =====================================================
           PARTNERS + FOOTER
        ====================================================== */

body.page-playground .partners-section {
padding:78px 0;
            background:#24273A;
            border-top:1px solid rgba(255,255,255,.04);
}

body.page-playground .partners-title {
margin-bottom:40px;
            color:var(--muted);
            text-align:center;
            font-size:11px;
            font-weight:700;
            letter-spacing:.16em;
            text-transform:uppercase;
}

body.page-playground .partners-grid {
display:grid;
            grid-template-columns:repeat(4,minmax(0,1fr));
            align-items:center;
            gap:45px;
}

body.page-playground .partner {
min-height:75px;
            display:flex;
            align-items:center;
            justify-content:center;
            opacity:.7;
            transition:.22s ease;
}

body.page-playground .partner:hover {
opacity:1;
            transform:translateY(-3px);
}

body.page-playground .partner img {
width:auto;
            max-width:165px;
            max-height:48px;
            object-fit:contain;
            filter:grayscale(1) brightness(3.2);
}

body.page-playground .partner:hover img {
filter:grayscale(0) brightness(1.12);
}

body.page-playground footer {
padding:40px 0;
            background:#191B28;
            color:var(--muted);
            text-align:center;
            font-size:14px;
}

body.page-playground .footer-logo {
margin-bottom:6px;
            color:#fff;
            font-size:23px;
            font-weight:900;
}

body.page-playground .footer-logo span {
color:var(--cyan)
}

body.page-playground .toast {
position:fixed;
            left:50%;
            bottom:28px;
            z-index:20000;
            transform:translate(-50%,18px);
            padding:11px 16px;
            border-radius:12px;
            background:#111522;
            border:1px solid rgba(96,181,218,.25);
            box-shadow:0 18px 45px rgba(0,0,0,.35);
            opacity:0;
            visibility:hidden;
            transition:.2s;
}

body.page-playground .toast.show {
opacity:1;
            visibility:visible;
            transform:translate(-50%,0);
}

@media (max-width:900px) {
    body.page-playground .game-grid {
grid-template-columns:1fr
    }

    body.page-playground .filter-bar {
grid-template-columns:repeat(4,1fr)
    }

    body.page-playground .search-box {
grid-column:1/-1
    }

    body.page-playground .partners-grid {
grid-template-columns:repeat(2,1fr)
    }
}

@media (max-width:650px) {
    body.page-playground .container,
    body.page-playground .topbar,
    body.page-playground .hero-content {
width:calc(100% - 24px)
    }

    body.page-playground .hero {
min-height:430px
    }

    body.page-playground .topbar {
padding:21px 0
    }

    body.page-playground .logo-symbol {
width:49px;height:43px;font-size:30px
    }

    body.page-playground .logo-word {
font-size:36px
    }

    body.page-playground .quick-menu-wrapper {
top:18px;right:12px
    }

    body.page-playground .quick-menu-button {
width:44px;height:44px
    }

    body.page-playground .quick-menu {
top:55px;width:min(285px,calc(100vw - 24px))
    }

    body.page-playground .hero-content {
padding:55px 0 78px
    }

    body.page-playground .hero p {
font-size:15px
    }

    body.page-playground .playground-area {
padding-top:32px;background-attachment:scroll
    }

    body.page-playground .filter-bar {
grid-template-columns:1fr 1fr
    }

    body.page-playground .search-box {
grid-column:1/-1
    }

    body.page-playground .game-card {
min-height:500px
    }

    body.page-playground .game-content {
padding:21px
    }

    body.page-playground .status-badge {
top:12px;right:12px;min-width:118px
    }

    body.page-playground .details {
grid-template-columns:1fr
    }

    body.page-playground .game-actions {
flex-direction:column
    }

    body.page-playground .copy-btn {
width:100%
    }

    body.page-playground .partners-grid {
gap:22px
    }

    body.page-playground .partner img {
max-width:125px;max-height:40px
    }
}

/* ==========================================================
   teamspeak/commands/index.html
   ========================================================== */

body.page-teamspeak-commands {
--bg:#1B1D2B;--section:#1F2131;--card:#24273A;--card2:#2A2D43;--purple:#746AB6;--cyan:#60B5DA;--text:#fff;--soft:#D8DAE4;--muted:#767B93;--border:rgba(255,255,255,.08);
}

body.page-teamspeak-commands * {
box-sizing:border-box;margin:0;padding:0
}

html:has(body.page-teamspeak-commands) {
scroll-behavior:smooth
}

body.page-teamspeak-commands {
font-family:"Titillium Web",sans-serif;background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden
}

body.page-teamspeak-commands button {
font:inherit
}

body.page-teamspeak-commands a {
color:inherit;text-decoration:none
}

body.page-teamspeak-commands img {
display:block;max-width:100%
}

body.page-teamspeak-commands .container {
width:min(1180px,calc(100% - 40px));margin:auto
}

body.page-teamspeak-commands .hero {
min-height:480px;position:relative;display:flex;flex-direction:column;overflow:hidden;background:linear-gradient(to bottom,rgba(27,29,43,.2),rgba(27,29,43,.58) 62%,#1B1D2B 100%),url("../../app/core/assets/images/main-header.webp") center bottom/cover no-repeat
}

body.page-teamspeak-commands .hero::after {
content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 40%,transparent 12%,rgba(27,29,43,.2) 82%);pointer-events:none
}

body.page-teamspeak-commands .topbar {
width:min(1180px,calc(100% - 40px));margin:auto;padding:30px 0;position:relative;z-index:10
}

body.page-teamspeak-commands .logo {
display:inline-flex;align-items:center;gap:13px
}

body.page-teamspeak-commands .logo-symbol {
width:58px;height:51px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(135deg,var(--purple),#8C77DA 55%,var(--cyan));box-shadow:0 14px 34px rgba(116,106,182,.38);font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;font-size:36px;font-weight:900
}

body.page-teamspeak-commands .logo-word {
font-family:"Arial Rounded MT Bold","Trebuchet MS",sans-serif;font-size:44px;font-weight:900;line-height:1
}

body.page-teamspeak-commands .logo-word span {
color:var(--cyan)
}

body.page-teamspeak-commands .hero-content {
position:relative;z-index:2;flex:1;width:min(900px,calc(100% - 40px));margin:auto;padding:35px 0 92px;display:flex;flex-direction:column;justify-content:center;text-align:center
}

body.page-teamspeak-commands .eyebrow {
color:var(--cyan);font-size:13px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;margin-bottom:8px
}

body.page-teamspeak-commands .hero h1 {
font-size:clamp(52px,8vw,86px);font-weight:900;line-height:.95;letter-spacing:-.045em;text-transform:uppercase
}

body.page-teamspeak-commands .hero h1 span {
background:linear-gradient(90deg,#fff,var(--cyan),#A89DF1);-webkit-background-clip:text;background-clip:text;color:transparent
}

body.page-teamspeak-commands .hero p {
max-width:850px;margin:24px auto 0;color:rgba(255,255,255,.82);font-size:17px
}

body.page-teamspeak-commands .quick-menu-wrapper {
position:fixed;top:28px;right:28px;z-index:10000
}

body.page-teamspeak-commands .quick-menu-button {
width:50px;height:50px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.1);border-radius:14px;background:rgba(31,33,49,.88);backdrop-filter:blur(18px);color:#fff;cursor:pointer;font-size:21px;box-shadow:0 12px 32px rgba(0,0,0,.22)
}

body.page-teamspeak-commands .quick-menu {
position:absolute;top:62px;right:0;width:285px;padding:12px;border-radius:18px;background:rgba(27,29,43,.98);border:1px solid rgba(255,255,255,.09);box-shadow:0 25px 65px rgba(0,0,0,.45);opacity:0;visibility:hidden;transform:translateY(-8px) scale(.96);transform-origin:top right;transition:.2s
}

body.page-teamspeak-commands .quick-menu.open {
opacity:1;visibility:visible;transform:none
}

body.page-teamspeak-commands .quick-menu-title {
padding:8px 10px 10px;color:var(--muted);font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase
}

body.page-teamspeak-commands .quick-menu-link {
display:flex;align-items:center;gap:12px;padding:11px;border-radius:12px;transition:.18s
}

body.page-teamspeak-commands .quick-menu-link:hover {
background:rgba(116,106,182,.15);transform:translateX(3px)
}

body.page-teamspeak-commands .quick-menu-icon {
width:32px;height:32px;display:grid;place-items:center;border-radius:9px;background:var(--card);color:var(--cyan);font-size:11px;font-weight:700
}

body.page-teamspeak-commands .content {
padding:55px 0 82px;background:linear-gradient(rgba(31,33,49,.91),rgba(31,33,49,.97)),url("../../app/core/assets/images/section_bg.webp") center/cover fixed no-repeat
}

body.page-teamspeak-commands .intro-note {
margin-bottom:28px;padding:18px 20px;border:1px solid rgba(96,181,218,.22);border-radius:16px;background:rgba(96,181,218,.08);color:var(--soft)
}

body.page-teamspeak-commands .bot-grid {
display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;align-items:start
}

body.page-teamspeak-commands .bot-card {
padding:25px;border-radius:20px;background:linear-gradient(145deg,rgba(39,42,64,.98),rgba(31,33,49,.97));border:1px solid var(--border);box-shadow:0 18px 42px rgba(0,0,0,.18)
}

body.page-teamspeak-commands .bot-card-head {
display:flex;justify-content:space-between;gap:20px;align-items:flex-start
}

body.page-teamspeak-commands .bot-card h2 {
font-size:31px;line-height:1;font-weight:900
}

body.page-teamspeak-commands .bot-symbol {
width:50px;height:50px;display:grid;place-items:center;border-radius:14px;background:linear-gradient(135deg,rgba(116,106,182,.32),rgba(96,181,218,.18));color:var(--cyan);font-size:23px;font-weight:900
}

body.page-teamspeak-commands .bot-description {
margin:14px 0 20px;color:var(--soft);font-size:14px
}

body.page-teamspeak-commands .command-list {
display:grid;gap:9px
}

body.page-teamspeak-commands .command-row {
display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px;border-radius:14px;background:rgba(20,22,34,.42);border:1px solid rgba(255,255,255,.055)
}

body.page-teamspeak-commands .command-main {
display:flex;align-items:center;gap:11px;min-width:0
}

body.page-teamspeak-commands .command-icon {
width:36px;height:36px;object-fit:contain;flex:0 0 auto
}

body.page-teamspeak-commands .command-copy {
display:flex;flex-direction:column;min-width:0
}

body.page-teamspeak-commands .command-copy code {
color:#fff;font-size:15px;font-weight:700;white-space:nowrap
}

body.page-teamspeak-commands .command-copy span {
color:var(--muted);font-size:12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:290px
}

body.page-teamspeak-commands .copy-btn {
display:inline-flex;align-items:center;gap:7px;flex:0 0 auto;border:1px solid rgba(96,181,218,.25);border-radius:10px;background:rgba(96,181,218,.10);color:var(--cyan);padding:8px 10px;cursor:pointer;font-weight:700;font-size:12px;transition:.18s
}

body.page-teamspeak-commands .copy-btn:hover {
background:rgba(96,181,218,.18);transform:translateY(-1px)
}

body.page-teamspeak-commands .copy-btn svg {
width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round
}

body.page-teamspeak-commands .playlist-section {
margin-top:28px;padding:28px;border-radius:20px;background:linear-gradient(145deg,rgba(39,42,64,.98),rgba(31,33,49,.97));border:1px solid var(--border);box-shadow:0 18px 42px rgba(0,0,0,.18)
}

body.page-teamspeak-commands .playlist-head {
display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:20px
}

body.page-teamspeak-commands .playlist-head h2 {
font-size:32px;font-weight:900
}

body.page-teamspeak-commands .playlist-head p {
color:var(--muted);font-size:13px
}

body.page-teamspeak-commands .playlist-grid {
display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px
}

body.page-teamspeak-commands .playlist-row {
display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px;border-radius:14px;background:rgba(20,22,34,.42);border:1px solid rgba(255,255,255,.055)
}

body.page-teamspeak-commands .playlist-row strong,
body.page-teamspeak-commands .playlist-row code {
display:block
}

body.page-teamspeak-commands .playlist-row code {
margin-top:2px;color:var(--cyan);font-size:12px
}

body.page-teamspeak-commands .partners-section {
padding:78px 0;background:#24273A;border-top:1px solid rgba(255,255,255,.04)
}

body.page-teamspeak-commands .partners-title {
margin-bottom:40px;color:var(--muted);text-align:center;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase
}

body.page-teamspeak-commands .partners-grid {
display:grid;grid-template-columns:repeat(4,minmax(0,1fr));align-items:center;gap:45px
}

body.page-teamspeak-commands .partner {
min-height:75px;display:flex;align-items:center;justify-content:center;opacity:.7;transition:.22s
}

body.page-teamspeak-commands .partner:hover {
opacity:1;transform:translateY(-3px)
}

body.page-teamspeak-commands .partner img {
width:auto;max-width:165px;max-height:48px;object-fit:contain;filter:grayscale(1) brightness(3.2)
}

body.page-teamspeak-commands .partner:hover img {
filter:grayscale(0) brightness(1.12)
}

body.page-teamspeak-commands footer {
padding:40px 0;background:#191B28;color:var(--muted);text-align:center;font-size:14px
}

body.page-teamspeak-commands .footer-logo {
margin-bottom:6px;color:#fff;font-size:23px;font-weight:900
}

body.page-teamspeak-commands .footer-logo span {
color:var(--cyan)
}

body.page-teamspeak-commands .toast {
position:fixed;left:50%;bottom:28px;z-index:20000;transform:translate(-50%,18px);padding:11px 16px;border-radius:12px;background:#111522;border:1px solid rgba(96,181,218,.25);box-shadow:0 18px 45px rgba(0,0,0,.35);color:#fff;opacity:0;visibility:hidden;transition:.2s
}

body.page-teamspeak-commands .toast.show {
opacity:1;visibility:visible;transform:translate(-50%,0)
}

body.page-teamspeak-commands .reveal {
opacity:0;transform:translateY(14px);transition:.5s
}

body.page-teamspeak-commands .reveal.visible {
opacity:1;transform:none
}

@media (max-width:850px) {
    body.page-teamspeak-commands .bot-grid,
    body.page-teamspeak-commands .playlist-grid {
grid-template-columns:1fr
    }

    body.page-teamspeak-commands .partners-grid {
grid-template-columns:repeat(2,1fr)
    }
}

@media (max-width:650px) {
    body.page-teamspeak-commands .container,
    body.page-teamspeak-commands .topbar,
    body.page-teamspeak-commands .hero-content {
width:calc(100% - 24px)
    }

    body.page-teamspeak-commands .hero {
min-height:430px
    }

    body.page-teamspeak-commands .topbar {
padding:21px 0
    }

    body.page-teamspeak-commands .logo-symbol {
width:49px;height:43px;font-size:30px
    }

    body.page-teamspeak-commands .logo-word {
font-size:36px
    }

    body.page-teamspeak-commands .quick-menu-wrapper {
top:18px;right:12px
    }

    body.page-teamspeak-commands .quick-menu-button {
width:44px;height:44px
    }

    body.page-teamspeak-commands .quick-menu {
top:55px;width:min(285px,calc(100vw - 24px))
    }

    body.page-teamspeak-commands .hero-content {
padding:55px 0 78px
    }

    body.page-teamspeak-commands .hero p {
font-size:15px
    }

    body.page-teamspeak-commands .content {
padding-top:34px;background-attachment:scroll
    }

    body.page-teamspeak-commands .bot-card {
padding:18px
    }

    body.page-teamspeak-commands .command-row {
align-items:flex-start
    }

    body.page-teamspeak-commands .command-copy span {
white-space:normal;max-width:none
    }

    body.page-teamspeak-commands .copy-btn span {
display:none
    }

    body.page-teamspeak-commands .playlist-section {
padding:18px
    }

    body.page-teamspeak-commands .partners-grid {
gap:22px
    }

    body.page-teamspeak-commands .partner img {
max-width:125px;max-height:40px
    }
}

/* ==========================================================
   Kleine globale Korrekturen
   ========================================================== */

/* Quick-Menü: identische Icon-Proportionen auf allen Seiten */
.quick-menu-icon {
    flex: 0 0 32px;
    line-height: 1;
}

.quick-menu-link strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

/* Hauptlogo: kräftigeres Z im farbigen Logo-Symbol */
.logo-symbol {
    font-weight: 1000;
    -webkit-text-stroke: 0.45px currentColor;
    text-shadow:
        0.35px 0 currentColor,
        -0.35px 0 currentColor,
        0 0.35px currentColor,
        0 -0.35px currentColor;
}
/* ==========================================================
   ZUUO Logo – einheitliche Darstellung auf allen Seiten
   ========================================================== */

.logo-symbol {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 36px !important;
    font-weight: 1000 !important;
    line-height: 1 !important;

    padding: 0 !important;
    margin: 0 !important;

    transform: none !important;
}
/* ==========================================================
   TEAMSPEAK VIEWER
   ========================================================== */

/* ----------------------------------------------------------
   SCHWEBENDER BUTTON
   ---------------------------------------------------------- */

.ts-viewer-button {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9000;

    min-height: 44px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 13px;

    background: linear-gradient(
        135deg,
        #25b95f,
        #2ecc71
    );

    color: #ffffff;

    box-shadow:
        0 14px 34px rgba(0, 0, 0, .30),
        0 0 22px rgba(46, 204, 113, .10);

    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.ts-viewer-button::before {
    content: "";

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 7px rgba(255, 255, 255, .6);
}

.ts-viewer-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, .36),
        0 0 26px rgba(46, 204, 113, .16);
}


/* ----------------------------------------------------------
   OVERLAY
   ---------------------------------------------------------- */

.ts-viewer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background:
        rgba(8, 10, 16, .68);

    backdrop-filter:
        blur(7px);

    -webkit-backdrop-filter:
        blur(7px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .24s ease,
        visibility .24s ease;
}

.ts-viewer-overlay.open {
    opacity: 1;
    visibility: visible;
}


/* ----------------------------------------------------------
   MODAL / PANEL
   ---------------------------------------------------------- */

.ts-viewer-panel {
    width: min(
        500px,
        calc(100vw - 48px)
    );

    height: min(
        780px,
        calc(100vh - 48px)
    );

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, .10);

    border-radius: 20px;

    background: #1b1d2b;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .62);

    transform:
        translateY(18px)
        scale(.97);

    transition:
        transform .26s ease;
}

.ts-viewer-overlay.open
.ts-viewer-panel {
    transform:
        translateY(0)
        scale(1);
}


/* ----------------------------------------------------------
   MODAL HEADER
   ---------------------------------------------------------- */

.ts-viewer-header {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding:
        13px 14px
        13px 20px;

    flex-shrink: 0;

    background:
        linear-gradient(
            135deg,
            #24273a,
            #202335
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, .07);
}

.ts-viewer-header > div {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 3px;

    padding: 0;
    margin: 0;
}

.ts-viewer-header strong {
    display: block;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: .01em;
}

.ts-viewer-header span {
    display: block;

    margin: 0;
    padding: 0;

    color: #8b90aa;

    font-size: 10px;
    font-weight: 400;
    line-height: 1.25;
}


/* ----------------------------------------------------------
   CLOSE BUTTON
   ---------------------------------------------------------- */

.ts-viewer-close {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex: 0 0 38px;

    padding: 0;

    border:
        1px solid
        rgba(255, 255, 255, .08);

    border-radius: 11px;

    background:
        rgba(27, 29, 43, .92);

    color: #d8dae4;

    font-size: 18px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition:
        color .18s ease,
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.ts-viewer-close:hover {
    color: #ffffff;

    background:
        rgba(116, 106, 182, .18);

    border-color:
        rgba(96, 181, 218, .38);

    transform: scale(1.04);
}


/* ----------------------------------------------------------
   IFRAME
   ---------------------------------------------------------- */

.ts-viewer-frame {
    width: 100%;
    height: 100%;

    flex: 1;

    display: block;

    border: 0;

    background: #1b1d2b;
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 650px) {

    .ts-viewer-button {
        right: 12px;
        bottom: 12px;

        min-height: 42px;

        padding: 0 14px;

        font-size: 8px;
    }


    .ts-viewer-overlay {
        padding: 12px;
    }


    .ts-viewer-panel {
        width: 100%;
        height: 100%;

        border-radius: 18px;
    }


    .ts-viewer-header {
        min-height: 64px;

        padding:
            11px 12px
            11px 16px;
    }


    .ts-viewer-header strong {
        font-size: 13px;
    }


    .ts-viewer-header span {
        font-size: 9px;
    }


    .ts-viewer-close {
        width: 36px;
        height: 36px;

        flex-basis: 36px;
    }
}
/* ==========================================================
   TS VIEWER – FINAL OVERRIDES
   Muss ganz ans Ende der main.css
   ========================================================== */


/* ----------------------------------------------------------
   BUTTON
   ---------------------------------------------------------- */

body.page-home .ts-viewer-button {
    position: fixed !important;
    right: 28px !important;
    bottom: 28px !important;
    z-index: 9000 !important;

    min-height: 42px !important;
    height: 42px !important;

    padding: 0 15px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 7px !important;

    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 12px !important;

    background: linear-gradient(
        135deg,
        #25b95f,
        #2ecc71
    ) !important;

    color: #ffffff !important;

    font-family: "Titillium Web", sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .08em !important;

    text-transform: uppercase !important;
    white-space: nowrap !important;

    box-shadow:
        0 13px 32px rgba(0, 0, 0, .30),
        0 0 20px rgba(46, 204, 113, .10) !important;

    cursor: pointer !important;
}


/* kleiner Statuspunkt */

body.page-home .ts-viewer-button::before {
    content: "" !important;

    width: 5px !important;
    height: 5px !important;

    flex: 0 0 5px !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    box-shadow:
        0 0 6px rgba(255, 255, 255, .60) !important;
}


body.page-home .ts-viewer-button:hover {
    transform: translateY(-2px) !important;

    filter: brightness(1.07) !important;
}


/* ----------------------------------------------------------
   OVERLAY
   ---------------------------------------------------------- */

body.page-home .ts-viewer-overlay {
    position: fixed !important;
    inset: 0 !important;

    z-index: 9500 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 24px !important;

    background:
        rgba(7, 9, 15, .74) !important;

    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transition:
        opacity .22s ease,
        visibility .22s ease !important;
}


body.page-home .ts-viewer-overlay.open {
    opacity: 1 !important;
    visibility: visible !important;
}


/* ----------------------------------------------------------
   MODAL
   ---------------------------------------------------------- */

body.page-home .ts-viewer-panel {
    position: relative !important;

    width: min(
        500px,
        calc(100vw - 48px)
    ) !important;

    height: min(
        780px,
        calc(100vh - 48px)
    ) !important;

    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    overflow: hidden !important;

    border:
        1px solid
        rgba(255, 255, 255, .10) !important;

    border-radius: 20px !important;

    background: #1B1D2B !important;

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, .65) !important;

    transform:
        translateY(15px)
        scale(.98) !important;

    transition:
        transform .24s ease !important;
}


body.page-home
.ts-viewer-overlay.open
.ts-viewer-panel {
    transform:
        translateY(0)
        scale(1) !important;
}


/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */

body.page-home .ts-viewer-header {
    width: 100% !important;
    min-height: 68px !important;
    height: 68px !important;

    flex: 0 0 68px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding:
        0 14px
        0 20px !important;

    margin: 0 !important;

    gap: 18px !important;

    background:
        linear-gradient(
            135deg,
            #24273A,
            #202335
        ) !important;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .07) !important;
}


/* Textblock links */

body.page-home .ts-viewer-header > div {
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;

    gap: 3px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}


/* TeamSpeak 6 */

body.page-home .ts-viewer-header strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-family:
        "Titillium Web",
        sans-serif !important;

    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 14px !important;
    letter-spacing: 0 !important;

    text-align: left !important;
}


/* Wer ist online? */

body.page-home .ts-viewer-header span {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #8b90aa !important;

    font-family:
        "Titillium Web",
        sans-serif !important;

    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 12px !important;
    letter-spacing: 0 !important;

    text-align: left !important;
}


/* ----------------------------------------------------------
   X BUTTON
   ---------------------------------------------------------- */

body.page-home .ts-viewer-close {
    width: 38px !important;
    height: 38px !important;

    flex: 0 0 38px !important;

    display: grid !important;
    place-items: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border:
        1px solid
        rgba(255, 255, 255, .08) !important;

    border-radius: 11px !important;

    background:
        rgba(27, 29, 43, .92) !important;

    color: #d8dae4 !important;

    font-family: Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    cursor: pointer !important;
}


body.page-home .ts-viewer-close:hover {
    color: #ffffff !important;

    background:
        rgba(116, 106, 182, .18) !important;

    border-color:
        rgba(96, 181, 218, .38) !important;
}


/* ----------------------------------------------------------
   IFRAME
   ---------------------------------------------------------- */

body.page-home .ts-viewer-frame {
    width: 100% !important;
    height: auto !important;

    flex: 1 1 auto !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;

    background: #1B1D2B !important;
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 650px) {

    body.page-home .ts-viewer-button {
        right: 12px !important;
        bottom: 12px !important;

        height: 40px !important;
        min-height: 40px !important;

        padding:
            0 13px !important;

        font-size:
            8px !important;
    }


    body.page-home .ts-viewer-overlay {
        padding:
            12px !important;
    }


    body.page-home .ts-viewer-panel {
        width: 100% !important;

        height:
            calc(100vh - 24px) !important;

        border-radius:
            17px !important;
    }
}
/* ==========================================================
   TS MODAL – Z-INDEX FIX
   ========================================================== */

body.page-home .ts-viewer-overlay {
    z-index: 20000 !important;
}

body.page-home .ts-viewer-panel {
    position: relative !important;
    z-index: 20001 !important;
}

body.page-home .ts-viewer-close {
    position: relative !important;
    z-index: 20002 !important;
}

body.page-home .quick-menu-wrapper {
    z-index: 10000 !important;
}
