:root {
    --bg: #120814;
    --bg2: #25102c;
    --card: rgba(255, 255, 255, .08);
    --card2: rgba(255, 255, 255, .12);
    --text: #fff8ff;
    --muted: #d9bddf;
    --pink: #ff4fa3;
    --rose: #ff7cc2;
    --violet: #9b5cff;
    --gold: #ffd166;
    --green: #35e08b;
    --red: #ff6961;
    --border: rgba(255, 255, 255, .16);
    --shadow: 0 18px 60px rgba(0, 0, 0, .36);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 35%),
        radial-gradient(circle at top right, rgba(155,92,255,.30), transparent 32%),
        linear-gradient(135deg, var(--bg), var(--bg2));
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(18, 8, 20, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-heart {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 10px 30px rgba(255,79,163,.35);
}

.brand strong {
    display: block;
    font-size: 20px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.menu-wrap {
    position: relative;
}

.menu-button {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: white;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 260px;
    display: none;
    padding: 10px;
    background: rgba(28, 12, 34, .96);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.menu-wrap:hover .menu-panel,
.menu-wrap:focus-within .menu-panel {
    display: grid;
    gap: 5px;
}

.menu-panel a,
.menu-heading {
    padding: 11px 13px;
    border-radius: 14px;
    text-decoration: none;
}

.menu-panel a:hover {
    background: var(--card2);
}

.menu-heading {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.main {
    width: min(1180px, calc(100% - 28px));
    margin: 28px auto;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: stretch;
}

.card,
.hero-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-box h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 6vw, 70px);
    line-height: .95;
}

.hero-box p,
.card p {
    color: var(--muted);
    line-height: 1.65;
}

.grid {
    display: grid;
    gap: 18px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn,
button,
input[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: white;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}

.btn.secondary {
    background: var(--card2);
    border: 1px solid var(--border);
}

.btn.danger {
    background: linear-gradient(135deg, #ff4d6d, #a4133c);
}

.form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 13px 14px;
    background: rgba(255,255,255,.09);
    color: var(--text);
    outline: none;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

select option {
    background: #25102c;
}

.flash {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card2);
    font-weight: 800;
}

.flash-success {
    border-color: rgba(53,224,139,.5);
}

.flash-error {
    border-color: rgba(255,105,97,.65);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--card2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.profile-img {
    width: 132px;
    height: 132px;
    border-radius: 36px;
    object-fit: cover;
    border: 2px solid var(--border);
    background: var(--card2);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.user-card {
    display: grid;
    gap: 12px;
}

.user-line {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-line img {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.chat-box {
    display: grid;
    gap: 12px;
    max-height: 480px;
    overflow: auto;
    padding-right: 6px;
}

.msg {
    max-width: 78%;
    padding: 12px 14px;
    border-radius: 18px;
    background: var(--card2);
}

.msg.me {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(255,79,163,.65), rgba(155,92,255,.65));
}

.footer {
    color: var(--muted);
    text-align: center;
    padding: 24px;
}

@media (max-width: 820px) {
    .hero,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .topbar {
        align-items: flex-start;
    }

    .brand small {
        display: none;
    }

    .menu-panel {
        right: 0;
        width: min(92vw, 320px);
    }
}

.match-card {
    position: relative;
    overflow: hidden;
}

.match-card::after {
    content: "❤";
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 46px;
    opacity: .12;
}

.mini-stat {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--card2);
    border: 1px solid var(--border);
    font-weight: 900;
}

.notice-box {
    border-left: 5px solid var(--pink);
    background: rgba(255, 79, 163, .10);
}

.safe-list {
    display: grid;
    gap: 10px;
}

.safe-list div {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,.06);
}

.inline-form {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.progress-wrap {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.12);
    border: 1px solid var(--border);
}

.progress-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
}

.match-percent {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,79,163,.85), rgba(155,92,255,.85));
    box-shadow: var(--shadow);
    font-size: 24px;
    font-weight: 1000;
}

.question-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
}

.radio-grid {
    display: grid;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    cursor: pointer;
}

.radio-option input {
    width: auto;
}

.icebreaker-big {
    font-size: clamp(26px, 5vw, 48px);
    line-height: 1.08;
    font-weight: 1000;
}

.checklist {
    display: grid;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.check-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: var(--card2);
    font-weight: 1000;
}

.verify-ok {
    border-color: rgba(53,224,139,.6);
    color: #baffd8;
}

.verify-open {
    border-color: rgba(255,209,102,.7);
    color: #ffe7a5;
}

.verify-bad {
    border-color: rgba(255,105,97,.7);
    color: #ffb9b5;
}

.privacy-box {
    display: grid;
    gap: 12px;
}

.compliment {
    position: relative;
    padding-left: 54px;
}

.compliment::before {
    content: "💌";
    position: absolute;
    left: 16px;
    top: 18px;
    font-size: 26px;
}

.date-idea {
    min-height: 220px;
}

.locked-note {
    border-left: 5px solid var(--red);
    background: rgba(255,105,97,.12);
}

/* Love in the Air - Menü und Regeln Feinschliff */
.topbar {
    z-index: 99999;
}

.menu-wrap {
    z-index: 100000;
}

.menu-panel {
    position: fixed;
    top: 92px;
    right: 22px;
    width: min(330px, calc(100vw - 28px));
    max-height: calc(100vh - 115px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.menu-panel::-webkit-scrollbar {
    width: 8px;
}

.menu-panel::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.25);
    border-radius: 999px;
}

.rules-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    margin-bottom: 16px;
}

.rule-card h2 {
    color: #fff;
    margin-top: 0;
}

.rule-card p {
    font-size: 16px;
}

.warning-card {
    border-color: rgba(255, 209, 102, .55);
    background: rgba(255, 209, 102, .10);
}

.warning-card h2 {
    color: var(--gold);
}

@media (max-width: 820px) {
    .menu-panel {
        top: 78px;
        right: 10px;
        width: calc(100vw - 20px);
        max-height: calc(100vh - 95px);
    }

    .rules-hero,
    .rule-card {
        padding: 20px;
    }
}

/* Seiten-Ausbau */
.info-hero {
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.22), transparent 35%),
        var(--card);
}

.big-number {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    font-size: 26px;
    font-weight: 1000;
    box-shadow: var(--shadow);
}

.faq-item {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
}

.faq-item h2 {
    margin-top: 0;
}

.ticket-status,
.story-status,
.event-date {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--border);
    font-weight: 900;
    color: var(--muted);
}

.event-card {
    min-height: 260px;
}

.story-card {
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: "❤";
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 70px;
    opacity: .08;
}

.admin-note {
    background: rgba(255,209,102,.10);
    border-left: 5px solid var(--gold);
}

/* Erfolgsgeschichten: kompakte Übersicht + Detailseite */
.success-grid {
    align-items: stretch;
}

.story-compact {
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.story-topline {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.story-preview {
    position: relative;
    line-height: 1.75;
    color: var(--muted);
}

.story-compact .story-preview {
    max-height: 190px;
    overflow: hidden;
}

.story-compact .story-preview::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(38,18,45,.96));
    pointer-events: none;
}

.story-meta {
    margin-top: auto;
    padding-top: 14px;
    color: var(--muted);
}

.story-detail-hero h1 {
    max-width: 980px;
}

.story-full-card {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.story-full-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    white-space: normal;
}

.story-full-text::first-letter {
    font-size: 54px;
    line-height: .9;
    font-weight: 1000;
    color: var(--rose);
    float: left;
    padding-right: 10px;
}

@media (max-width: 820px) {
    .story-compact {
        min-height: auto;
    }

    .story-full-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .story-full-text::first-letter {
        font-size: 42px;
    }
}


/* LITA_RULES_EXTREME_START */
.rules-big-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.26), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.30), transparent 34%),
        rgba(255,255,255,.08);
}

.rules-big-hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: .95;
    margin: 18px 0;
}

.rules-big-hero p {
    font-size: 18px;
}

.rules-warning-box {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255,209,102,.55);
    background: rgba(255,209,102,.12);
    color: #fff4c8;
    font-size: 17px;
    line-height: 1.65;
}

.rules-toc h2 {
    margin-top: 0;
}

.rules-toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.rules-toc-grid a {
    display: block;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 900;
}

.rules-toc-grid a:hover {
    background: rgba(255,79,163,.18);
    transform: translateY(-1px);
}

.rule-detail-card {
    margin-top: 18px;
    position: relative;
    overflow: hidden;
}

.rule-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--pink), var(--violet), var(--gold));
    opacity: .9;
}

.rule-detail-card h2 {
    font-size: clamp(25px, 4vw, 38px);
    margin-top: 0;
}

.rule-detail-card p {
    font-size: 17px;
    line-height: 1.8;
}

.rules-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.rules-list li {
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    color: var(--text);
    font-weight: 750;
}

.rules-final-card {
    margin-top: 22px;
    border-color: rgba(255,79,163,.55);
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.24), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255,209,102,.14), transparent 35%),
        rgba(255,255,255,.09);
}

.rules-final-card h2 {
    font-size: clamp(30px, 5vw, 54px);
}

.rules-final-card p {
    font-size: 18px;
    line-height: 1.8;
}

.rules-love-line {
    margin-top: 18px;
    padding: 18px;
    text-align: center;
    font-size: clamp(20px, 4vw, 34px);
    font-weight: 1000;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,79,163,.25), rgba(155,92,255,.25));
    border: 1px solid var(--border);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 820px) {
    .rules-big-hero p,
    .rule-detail-card p,
    .rules-final-card p {
        font-size: 16px;
    }

    .rules-toc-grid {
        grid-template-columns: 1fr;
    }
}
/* LITA_RULES_EXTREME_END */


/* LITA_SHOP_FULL_START */
.shop-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255,209,102,.18), transparent 34%),
        rgba(255,255,255,.08);
}

.shop-hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    line-height: .95;
    margin: 14px 0;
}

.shop-grid {
    align-items: stretch;
}

.shop-item-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 420px;
    overflow: hidden;
}

.shop-item-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}

.shop-emoji {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,79,163,.55), rgba(155,92,255,.55));
    border: 1px solid var(--border);
    font-size: 38px;
    box-shadow: var(--shadow);
}

.shop-price {
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,209,102,.14);
    border: 1px solid rgba(255,209,102,.35);
    color: #ffe7a5;
    font-weight: 1000;
}

.shop-gift-form {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.rarity-normal {
    border-color: rgba(255,255,255,.16);
}

.rarity-selten {
    border-color: rgba(53,224,139,.45);
}

.rarity-episch {
    border-color: rgba(155,92,255,.65);
}

.rarity-legendär {
    border-color: rgba(255,209,102,.75);
    box-shadow: 0 18px 80px rgba(255,209,102,.16);
}

.equipped-card {
    border-color: rgba(53,224,139,.75);
    background:
        radial-gradient(circle at top right, rgba(53,224,139,.18), transparent 34%),
        var(--card);
}

button:disabled {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(1);
}

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

.shop-admin-stats {
    margin-top: 18px;
}

.shop-admin-stats .card {
    box-shadow: none;
    padding: 16px;
}

.shop-admin-stats strong {
    font-size: 32px;
}

.shop-admin-item {
    border-color: rgba(255,255,255,.20);
}

.shop-admin-head {
    display: flex;
    gap: 14px;
    align-items: center;
}

@media (max-width: 980px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .shop-item-card {
        min-height: auto;
    }

    .shop-hero h1 {
        font-size: 38px;
    }
}
/* LITA_SHOP_FULL_END */


/* LITA_SHOP_PLUS_START */
.shop-detail-hero {
    position: relative;
    overflow: hidden;
}

.shop-detail-layout {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    align-items: center;
}

.shop-detail-icon {
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    border-radius: 46px;
    background: linear-gradient(135deg, rgba(255,79,163,.65), rgba(155,92,255,.65));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 78px;
}

.shop-detail-hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: .95;
    margin: 14px 0;
}

.big-shop-price {
    font-size: 22px;
    margin: 14px 0;
}

.shop-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.shop-detail-stats span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 850;
}

.shop-item-card .actions {
    margin-top: 4px;
}

.shop-item-card form + form {
    margin-top: 8px;
}

@media (max-width: 760px) {
    .shop-detail-layout {
        grid-template-columns: 1fr;
    }

    .shop-detail-icon {
        width: 112px;
        height: 112px;
        border-radius: 34px;
        font-size: 58px;
    }
}
/* LITA_SHOP_PLUS_END */


/* LITA_SHOP_CLEAN_LAYOUT_START */
.shop-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
    gap: 22px;
    align-items: start;
}

.shop-card-clean {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: auto !important;
    overflow: visible !important;
    padding: 22px;
}

.shop-card-clean::after {
    display: none !important;
}

.shop-card-head {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    align-items: start;
}

.shop-emoji-clean {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,79,163,.62), rgba(155,92,255,.62));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 38px;
    line-height: 1;
}

.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: start;
}

.shop-tags span {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.shop-card-clean h2 {
    margin: 4px 0 0;
    font-size: 25px;
    line-height: 1.15;
}

.shop-desc {
    min-height: 58px;
    margin: 0;
    line-height: 1.65;
    color: var(--muted);
}

.shop-price-clean {
    width: fit-content;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,209,102,.14);
    border: 1px solid rgba(255,209,102,.40);
    color: #ffe7a5;
    font-weight: 1000;
}

.shop-small-note {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 850;
}

.shop-small-note.success {
    border-color: rgba(53,224,139,.55);
    color: #baffd8;
}

.shop-small-note.error {
    border-color: rgba(255,105,97,.60);
    color: #ffbab6;
}

.shop-button-stack {
    display: grid;
    gap: 10px;
}

.shop-button-stack form,
.shop-button-stack .btn {
    width: 100%;
}

.shop-button-stack button,
.shop-button-stack .btn {
    width: 100%;
}

.shop-gift-details {
    margin-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

.shop-gift-details summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    font-weight: 1000;
}

.shop-gift-details summary::-webkit-details-marker {
    display: none;
}

.shop-gift-details summary::after {
    content: " öffnen";
    color: var(--muted);
    font-weight: 700;
}

.shop-gift-details[open] summary::after {
    content: " schließen";
}

.shop-gift-details form {
    margin-top: 12px;
}

.shop-tabs,
.shop-categories {
    gap: 10px;
}

.shop-category-card {
    overflow: visible;
}

.rarity-normal {
    border-color: rgba(255,255,255,.16) !important;
}

.rarity-selten {
    border-color: rgba(53,224,139,.48) !important;
}

.rarity-episch {
    border-color: rgba(155,92,255,.68) !important;
}

.rarity-legendär {
    border-color: rgba(255,209,102,.80) !important;
    box-shadow: 0 18px 80px rgba(255,209,102,.12);
}

button:disabled {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(1);
}

@media (max-width: 760px) {
    .shop-grid-clean {
        grid-template-columns: 1fr;
    }

    .shop-card-head {
        grid-template-columns: 64px 1fr;
    }

    .shop-emoji-clean {
        width: 64px;
        height: 64px;
        border-radius: 22px;
        font-size: 32px;
    }

    .shop-card-clean {
        padding: 18px;
    }
}
/* LITA_SHOP_CLEAN_LAYOUT_END */


/* LITA_GUIDE_PAGES_START */
.lita-guide-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.26), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.28), transparent 34%),
        rgba(255,255,255,.08);
}

.lita-guide-hero h1 {
    font-size: clamp(34px, 6vw, 70px);
    line-height: .95;
    margin: 16px 0;
}

.lita-guide-hero p {
    font-size: 18px;
    line-height: 1.75;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.guide-tile {
    display: block;
    text-decoration: none;
    min-height: 250px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.guide-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(255,79,163,.55);
    background: rgba(255,255,255,.11);
}

.guide-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,79,163,.62), rgba(155,92,255,.62));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 36px;
    margin-bottom: 14px;
}

.guide-tile h2 {
    margin-top: 0;
}

.guide-tile p {
    color: var(--muted);
    line-height: 1.65;
}

.guide-article {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.guide-article .card {
    position: relative;
    overflow: hidden;
}

.guide-article .card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--pink), var(--violet), var(--gold));
    opacity: .8;
}

.example-box {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,209,102,.40);
    background: rgba(255,209,102,.10);
    color: #fff2c5;
    line-height: 1.7;
}

.timeline {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.timeline-item {
    border-left: 6px solid rgba(255,255,255,.20);
}

.timeline-item.done {
    border-left-color: rgba(53,224,139,.80);
}

.timeline-item.next {
    border-left-color: rgba(255,209,102,.80);
}

@media (max-width: 820px) {
    .guide-article {
        grid-template-columns: 1fr;
    }

    .lita-guide-hero p {
        font-size: 16px;
    }
}
/* LITA_GUIDE_PAGES_END */


/* LITA_HOME_EXTREME_START */
.home-hero-x {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.32), transparent 36%),
        rgba(255,255,255,.08);
}

.home-hero-content h1 {
    font-size: clamp(42px, 8vw, 96px);
    line-height: .9;
    margin: 18px 0;
    letter-spacing: -0.05em;
}

.home-lead {
    font-size: clamp(19px, 2.4vw, 26px);
    line-height: 1.55;
    color: #fff;
    font-weight: 750;
}

.home-actions {
    margin-top: 24px;
}

.home-hero-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
}

.home-heart-orb {
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border-radius: 42px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 24px 80px rgba(255,79,163,.35);
    font-size: 62px;
    margin-bottom: 18px;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-stat-card {
    text-align: center;
    padding: 20px;
}

.home-stat-card strong {
    display: block;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    color: #fff;
}

.home-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 850;
}

.home-section {
    position: relative;
    overflow: hidden;
}

.home-section h2 {
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1;
    margin: 14px 0;
}

.home-section p {
    font-size: 18px;
    line-height: 1.8;
}

.readmore-box,
.mini-readmore {
    margin-top: 16px;
}

.readmore-box summary,
.mini-readmore summary {
    cursor: pointer;
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 1000;
    list-style: none;
    box-shadow: var(--shadow);
}

.readmore-box summary::-webkit-details-marker,
.mini-readmore summary::-webkit-details-marker {
    display: none;
}

.readmore-box[open] summary,
.mini-readmore[open] summary {
    background: rgba(255,255,255,.12);
    border: 1px solid var(--border);
}

.readmore-content {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-feature-card,
.home-link-card {
    min-height: 285px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.home-link-card {
    display: block;
    text-decoration: none;
}

.home-link-card:hover,
.home-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,79,163,.55);
    background: rgba(255,255,255,.11);
}

.home-feature-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,79,163,.62), rgba(155,92,255,.62));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 36px;
    margin-bottom: 14px;
}

.home-feature-card h2,
.home-link-card h2,
.home-path-card h2 {
    margin-top: 0;
}

.home-feature-card p,
.home-link-card p,
.home-path-card p {
    color: var(--muted);
    line-height: 1.7;
}

.home-path-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-path-card {
    min-height: 210px;
}

.home-final-line {
    font-size: clamp(22px, 4vw, 34px) !important;
    font-weight: 1000;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,79,163,.20), rgba(155,92,255,.22));
    border: 1px solid var(--border);
}

@media (max-width: 1100px) {
    .home-hero-x,
    .home-feature-grid {
        grid-template-columns: 1fr;
    }

    .home-stats-grid,
    .home-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .home-stats-grid,
    .home-path-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-content h1 {
        font-size: 48px;
    }

    .home-section p {
        font-size: 16px;
    }

    .home-hero-side {
        padding: 18px;
    }
}
/* LITA_HOME_EXTREME_END */


/* LITA_ABOUT_50000_START */
.about-hero-long {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.30), transparent 34%),
        rgba(255,255,255,.08);
}

.about-hero-long h1 {
    font-size: clamp(42px, 8vw, 96px);
    line-height: .9;
    margin: 18px 0;
    letter-spacing: -0.045em;
}

.about-lead {
    font-size: clamp(19px, 2.4vw, 26px);
    line-height: 1.55;
    color: #fff;
    font-weight: 760;
}

.about-intro-card h2,
.about-index h2,
.about-final-card h2 {
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1;
    margin-top: 0;
}

.about-intro-card p,
.about-final-card p {
    font-size: 18px;
    line-height: 1.8;
}

.about-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}

.about-index-grid a {
    display: block;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 900;
}

.about-index-grid a:hover {
    background: rgba(255,79,163,.18);
    transform: translateY(-1px);
}

.about-long-grid {
    display: grid;
    gap: 18px;
}

.about-long-card {
    position: relative;
    overflow: hidden;
}

.about-long-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--pink), var(--violet), var(--gold));
    opacity: .9;
}

.about-section-head {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: center;
}

.about-section-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,79,163,.65), rgba(155,92,255,.65));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 38px;
}

.about-section-head h2 {
    margin: 8px 0 0;
    font-size: clamp(27px, 4.6vw, 52px);
    line-height: 1;
}

.about-short {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.about-readmore {
    margin-top: 16px;
}

.about-readmore summary {
    cursor: pointer;
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 1000;
    list-style: none;
    box-shadow: var(--shadow);
}

.about-readmore summary::-webkit-details-marker {
    display: none;
}

.about-readmore[open] summary {
    background: rgba(255,255,255,.12);
    border: 1px solid var(--border);
}

.about-readmore-content {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.about-readmore-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}

.about-love-line {
    font-size: clamp(22px, 4vw, 34px) !important;
    font-weight: 1000;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,79,163,.20), rgba(155,92,255,.22));
    border: 1px solid var(--border);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 720px) {
    .about-section-head {
        grid-template-columns: 1fr;
    }

    .about-section-icon {
        width: 66px;
        height: 66px;
        border-radius: 23px;
        font-size: 32px;
    }

    .about-readmore-content {
        padding: 16px;
    }

    .about-readmore-content p,
    .about-short,
    .about-intro-card p,
    .about-final-card p {
        font-size: 16px;
    }
}
/* LITA_ABOUT_50000_END */


/* LITA_USER_ADMIN_PLUS_START */
.user-admin-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.25), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.28), transparent 34%),
        rgba(255,255,255,.08);
}

.user-admin-hero h1 {
    font-size: clamp(38px, 7vw, 82px);
    line-height: .92;
    margin: 16px 0;
}

.user-admin-hero p {
    font-size: 18px;
    line-height: 1.75;
}

.user-admin-stats strong {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.user-admin-filter {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto auto;
    gap: 12px;
    align-items: end;
}

.user-admin-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.45fr);
    gap: 18px;
    align-items: start;
}

.user-admin-list {
    display: grid;
    gap: 10px;
    max-height: 920px;
    overflow: auto;
    padding-right: 4px;
}

.user-row {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    text-decoration: none;
}

.user-row:hover,
.user-row.selected {
    background: rgba(255,79,163,.14);
    border-color: rgba(255,79,163,.55);
}

.user-avatar-small,
.user-avatar-large {
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,79,163,.72), rgba(155,92,255,.72));
    border: 1px solid var(--border);
    font-weight: 1000;
    color: #fff;
}

.user-avatar-small {
    width: 54px;
    height: 54px;
    font-size: 22px;
}

.user-avatar-large {
    width: 96px;
    height: 96px;
    font-size: 42px;
}

.user-row small {
    display: block;
    color: var(--muted);
    margin-top: 3px;
}

.user-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.user-row-tags span,
.role-owner,
.role-admin,
.role-mod,
.role-support,
.role-team,
.role-user,
.status-active,
.status-inactive {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
}

.role-owner {
    color: #ffe7a5;
    border-color: rgba(255,209,102,.65);
    background: rgba(255,209,102,.12);
}

.role-admin {
    color: #ffc8dc;
    border-color: rgba(255,79,163,.58);
    background: rgba(255,79,163,.12);
}

.role-mod {
    color: #d8c8ff;
    border-color: rgba(155,92,255,.58);
    background: rgba(155,92,255,.12);
}

.role-support,
.role-team {
    color: #b8fff0;
    border-color: rgba(75,220,190,.48);
    background: rgba(75,220,190,.10);
}

.role-user {
    color: var(--muted);
}

.status-active {
    color: #baffd8;
    border-color: rgba(53,224,139,.55);
    background: rgba(53,224,139,.10);
}

.status-inactive {
    color: #ffbab6;
    border-color: rgba(255,105,97,.55);
    background: rgba(255,105,97,.10);
}

.danger-badge {
    border-color: rgba(255,105,97,.62) !important;
    color: #ffbab6 !important;
}

.user-detail-head {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 18px;
    align-items: center;
}

.user-detail-head h2 {
    font-size: clamp(28px, 5vw, 52px);
    line-height: 1;
    margin: 10px 0 4px;
}

.user-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.user-info-grid div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.user-info-grid strong {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 5px;
}

.user-info-grid span {
    font-weight: 900;
}

.inner-card {
    box-shadow: none;
    background: rgba(255,255,255,.055);
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.password-output code {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.35);
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: .03em;
}

.note-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.note-item {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
}

.note-item small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
}

.note-item p {
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .user-admin-layout {
        grid-template-columns: 1fr;
    }

    .user-admin-list {
        max-height: none;
    }

    .user-admin-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .user-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .user-admin-filter,
    .admin-action-grid,
    .user-info-grid,
    .user-detail-head {
        grid-template-columns: 1fr;
    }

    .user-row {
        grid-template-columns: 46px 1fr;
    }

    .user-avatar-small {
        width: 46px;
        height: 46px;
    }
}
/* LITA_USER_ADMIN_PLUS_END */


/* LITA_CREATE_USER_ADMIN_START */
.user-create-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(53,224,139,.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255,79,163,.16), transparent 34%),
        rgba(255,255,255,.08);
}

.user-create-card h2 {
    font-size: clamp(28px, 4.8vw, 52px);
    line-height: 1;
    margin-top: 0;
}

.admin-create-details {
    margin-top: 16px;
}

.admin-create-details summary {
    cursor: pointer;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 1000;
    list-style: none;
    box-shadow: var(--shadow);
}

.admin-create-details summary::-webkit-details-marker {
    display: none;
}

.admin-create-details[open] summary {
    background: rgba(255,255,255,.12);
    border: 1px solid var(--border);
}

.user-create-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.user-create-form button,
.user-create-form .create-user-active {
    grid-column: 1 / -1;
}

.password-output code {
    user-select: all;
}

@media (max-width: 980px) {
    .user-create-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .user-create-form {
        grid-template-columns: 1fr;
    }
}
/* LITA_CREATE_USER_ADMIN_END */


/* LITA_USER_VISIBLE_FIX_START */
.recent-user-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.recent-user-chip {
    display: grid;
    gap: 4px;
    min-width: 210px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
    text-decoration: none;
}

.recent-user-chip:hover {
    background: rgba(255,79,163,.14);
    border-color: rgba(255,79,163,.55);
}

.recent-user-chip span {
    color: var(--muted);
    font-size: 13px;
}

.user-create-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(53,224,139,.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255,79,163,.16), transparent 34%),
        rgba(255,255,255,.08);
}

.admin-create-details {
    margin-top: 16px;
}

.admin-create-details summary {
    cursor: pointer;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 1000;
    list-style: none;
    box-shadow: var(--shadow);
}

.admin-create-details summary::-webkit-details-marker {
    display: none;
}

.user-create-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.user-create-form button,
.user-create-form .create-user-active {
    grid-column: 1 / -1;
}

.password-output code {
    user-select: all;
    display: inline-block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.35);
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: .03em;
}

@media (max-width: 980px) {
    .user-create-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .user-create-form {
        grid-template-columns: 1fr;
    }
}
/* LITA_USER_VISIBLE_FIX_END */


/* LITA_BENUTZER_ANLEGEN_PAGE_START */
.user-create-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(53,224,139,.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255,79,163,.16), transparent 34%),
        rgba(255,255,255,.08);
}

.user-create-card h2 {
    font-size: clamp(28px, 4.8vw, 52px);
    line-height: 1;
    margin-top: 0;
}

.user-create-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.user-create-form button,
.user-create-form .create-user-active {
    grid-column: 1 / -1;
}

.password-output code {
    user-select: all;
    display: inline-block;
    margin: 6px 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.35);
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: .03em;
}

@media (max-width: 980px) {
    .user-create-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .user-create-form {
        grid-template-columns: 1fr;
    }
}
/* LITA_BENUTZER_ANLEGEN_PAGE_END */


/* LITA_CHAT_FULL_START */
.chat-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.24), transparent 34%),
        rgba(255,255,255,.08);
}

.chat-hero h1 {
    font-size: clamp(40px, 8vw, 86px);
    line-height: .92;
    margin: 14px 0;
}

.chat-hero p {
    font-size: 18px;
    line-height: 1.7;
}

.chat-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.55fr);
    gap: 18px;
    align-items: start;
}

.chat-sidebar,
.chat-main {
    min-height: 720px;
}

.chat-sidebar h2,
.chat-main h2 {
    margin-top: 0;
}

.chat-search {
    display: grid;
    gap: 10px;
}

.chat-tabs {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.chat-tabs details {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    overflow: hidden;
}

.chat-tabs summary {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 1000;
    list-style: none;
    background: rgba(255,255,255,.06);
}

.chat-tabs summary::-webkit-details-marker {
    display: none;
}

.chat-contact-list {
    display: grid;
    gap: 10px;
    padding: 12px;
    max-height: 560px;
    overflow: auto;
}

.chat-contact {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    text-decoration: none;
}

.chat-contact:hover,
.chat-contact.active {
    background: rgba(255,79,163,.16);
    border-color: rgba(255,79,163,.55);
}

.chat-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255,79,163,.72), rgba(155,92,255,.72));
    border: 1px solid var(--border);
    color: #fff;
    font-size: 22px;
    font-weight: 1000;
}

.chat-avatar.big {
    width: 82px;
    height: 82px;
    font-size: 36px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-contact-body strong {
    display: block;
    font-size: 15px;
}

.chat-contact-body small,
.chat-contact-body p,
.chat-time,
.muted {
    color: var(--muted);
}

.chat-contact-body small {
    display: block;
    margin-top: 2px;
}

.chat-contact-body p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.35;
}

.chat-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.chat-mini-tags span,
.chat-unread,
.chat-blocked {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 1000;
    border: 1px solid var(--border);
}

.chat-unread {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--violet));
}

.chat-blocked {
    color: #ffbab6;
    background: rgba(255,105,97,.12);
    border-color: rgba(255,105,97,.45);
}

.chat-header {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.chat-header h2 {
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1;
    margin: 8px 0 4px;
}

.chat-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.chat-messages {
    display: grid;
    gap: 12px;
    min-height: 420px;
    max-height: 720px;
    overflow: auto;
    padding: 18px 4px;
    scroll-behavior: smooth;
}

.chat-message {
    display: flex;
}

.chat-message.mine {
    justify-content: flex-end;
}

.chat-message.theirs {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: min(680px, 86%);
    padding: 13px 15px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.chat-message.mine .chat-bubble {
    background: linear-gradient(135deg, rgba(255,79,163,.72), rgba(155,92,255,.72));
    color: #fff;
    border-bottom-right-radius: 6px;
}

.chat-message.theirs .chat-bubble {
    background: rgba(255,255,255,.08);
    border-bottom-left-radius: 6px;
}

.chat-bubble p {
    margin: 0;
    line-height: 1.65;
    white-space: normal;
    overflow-wrap: anywhere;
}

.chat-time {
    margin-top: 8px;
    font-size: 12px;
}

.chat-message.mine .chat-time {
    color: rgba(255,255,255,.78);
}

.chat-delete-form {
    margin-top: 6px;
}

.link-button {
    border: 0 !important;
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
    min-height: auto !important;
    text-decoration: underline;
    font-size: 12px;
    box-shadow: none !important;
}

.chat-composer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-quick button {
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 18px;
}

.chat-send-form {
    display: grid;
    gap: 12px;
}

.chat-send-form textarea {
    min-height: 120px;
    resize: vertical;
}

.chat-empty {
    min-height: 460px;
    display: grid;
    place-items: center;
    text-align: center;
    align-content: center;
    gap: 12px;
}

.chat-empty div {
    font-size: 72px;
}

.chat-empty.small {
    min-height: 260px;
}

.chat-empty.small div {
    font-size: 50px;
}

@media (max-width: 1100px) {
    .chat-layout {
        grid-template-columns: 1fr;
    }

    .chat-sidebar,
    .chat-main {
        min-height: auto;
    }

    .chat-contact-list {
        max-height: none;
    }
}

@media (max-width: 720px) {
    .chat-header {
        grid-template-columns: 1fr;
    }

    .chat-header-actions {
        justify-content: flex-start;
    }

    .chat-bubble {
        max-width: 94%;
    }
}
/* LITA_CHAT_FULL_END */





/* LITA_CHAT_REPAIR_START */
.chat-hero {
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.22), transparent 34%),
        rgba(255,255,255,.08);
}

.chat-hero h1 {
    font-size: clamp(38px, 7vw, 80px);
    line-height: .92;
    margin: 14px 0;
}

.chat-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.55fr);
    gap: 18px;
    align-items: start;
}

.chat-contact-list {
    display: grid;
    gap: 10px;
    margin: 12px 0 20px;
}

.chat-contact {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    text-decoration: none;
}

.chat-contact:hover,
.chat-contact.active {
    background: rgba(255,79,163,.15);
    border-color: rgba(255,79,163,.55);
}

.chat-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255,79,163,.75), rgba(155,92,255,.75));
    color: #fff;
    font-weight: 1000;
    font-size: 22px;
}

.chat-avatar.big {
    width: 82px;
    height: 82px;
    font-size: 36px;
}

.chat-contact small,
.chat-contact p,
.chat-time {
    color: var(--muted);
}

.chat-contact p {
    margin: 5px 0 0;
    font-size: 13px;
}

.chat-unread {
    display: inline-flex;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
}

.chat-header {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.chat-header h2 {
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1;
    margin: 8px 0 4px;
}

.chat-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.chat-messages {
    display: grid;
    gap: 12px;
    min-height: 420px;
    max-height: 720px;
    overflow: auto;
    padding: 18px 4px;
}

.chat-message {
    display: flex;
}

.chat-message.mine {
    justify-content: flex-end;
}

.chat-message.theirs {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: min(680px, 88%);
    padding: 13px 15px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
}

.chat-message.mine .chat-bubble {
    background: linear-gradient(135deg, rgba(255,79,163,.72), rgba(155,92,255,.72));
    color: #fff;
}

.chat-bubble p {
    margin: 0;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.chat-time {
    margin-top: 8px;
    font-size: 12px;
}

.chat-composer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-quick button {
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 18px;
}

.chat-empty {
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    align-content: center;
    gap: 12px;
}

.chat-empty div {
    font-size: 70px;
}

.chat-empty.small {
    min-height: 240px;
}

.link-button {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    min-height: auto !important;
    text-decoration: underline;
    box-shadow: none !important;
    color: inherit !important;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .chat-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .chat-header {
        grid-template-columns: 1fr;
    }

    .chat-header-actions {
        justify-content: flex-start;
    }
}
/* LITA_CHAT_REPAIR_END */


/* LITA_CHAT_TYPING_START */
.chat-typing-indicator {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 900;
    animation: litaTypingPulse 1.2s ease-in-out infinite;
}

.chat-typing-indicator::before {
    content: "✍️ ";
}

@keyframes litaTypingPulse {
    0%, 100% {
        opacity: .55;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-1px);
    }
}
/* LITA_CHAT_TYPING_END */





/* LITA_CHAT_STABLE_FINAL_START */
.chat-hero {
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.22), transparent 34%),
        rgba(255,255,255,.08);
}

.chat-hero h1 {
    font-size: clamp(38px, 7vw, 80px);
    line-height: .92;
    margin: 14px 0;
}

.chat-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.55fr);
    gap: 18px;
    align-items: start;
}

.chat-contact-list {
    display: grid;
    gap: 10px;
    margin: 12px 0 20px;
}

.chat-contact {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    text-decoration: none;
}

.chat-contact:hover,
.chat-contact.active {
    background: rgba(255,79,163,.15);
    border-color: rgba(255,79,163,.55);
}

.chat-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255,79,163,.75), rgba(155,92,255,.75));
    color: #fff;
    font-weight: 1000;
    font-size: 22px;
}

.chat-avatar.big {
    width: 82px;
    height: 82px;
    font-size: 36px;
}

.chat-contact small,
.chat-contact p,
.chat-time,
.muted {
    color: var(--muted);
}

.chat-contact p {
    margin: 5px 0 0;
    font-size: 13px;
}

.chat-unread {
    display: inline-flex;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
}

.chat-header {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.chat-header h2 {
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1;
    margin: 8px 0 4px;
}

.chat-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.chat-typing-indicator {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 900;
    animation: litaTypingPulse 1.2s ease-in-out infinite;
}

.chat-typing-indicator::before {
    content: "✍️ ";
}

@keyframes litaTypingPulse {
    0%, 100% {
        opacity: .55;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-1px);
    }
}

.chat-messages {
    display: grid;
    gap: 12px;
    min-height: 420px;
    max-height: 720px;
    overflow: auto;
    padding: 18px 4px;
}

.chat-message {
    display: flex;
}

.chat-message.mine {
    justify-content: flex-end;
}

.chat-message.theirs {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: min(680px, 88%);
    padding: 13px 15px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
}

.chat-message.mine .chat-bubble {
    background: linear-gradient(135deg, rgba(255,79,163,.72), rgba(155,92,255,.72));
    color: #fff;
}

.chat-bubble p {
    margin: 0;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.chat-time {
    margin-top: 8px;
    font-size: 12px;
}

.chat-composer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-quick button {
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 18px;
}

.chat-empty {
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    align-content: center;
    gap: 12px;
}

.chat-empty div {
    font-size: 70px;
}

.chat-empty.small {
    min-height: 240px;
}

.link-button {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    min-height: auto !important;
    text-decoration: underline;
    box-shadow: none !important;
    color: inherit !important;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .chat-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .chat-header {
        grid-template-columns: 1fr;
    }

    .chat-header-actions {
        justify-content: flex-start;
    }
}
/* LITA_CHAT_STABLE_FINAL_END */


/* LITA_CHAT_AJAX_LIVE_START */
.chat-hero {
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.22), transparent 34%),
        rgba(255,255,255,.08);
}

.chat-hero h1 {
    font-size: clamp(38px, 7vw, 80px);
    line-height: .92;
    margin: 14px 0;
}

.chat-layout {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.55fr);
    gap: 18px;
    align-items: start;
}

.chat-contact-list {
    display: grid;
    gap: 10px;
    margin: 12px 0 20px;
}

.chat-contact {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    text-decoration: none;
}

.chat-contact:hover,
.chat-contact.active {
    background: rgba(255,79,163,.15);
    border-color: rgba(255,79,163,.55);
}

.chat-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255,79,163,.75), rgba(155,92,255,.75));
    color: #fff;
    font-weight: 1000;
    font-size: 22px;
}

.chat-avatar.big {
    width: 82px;
    height: 82px;
    font-size: 36px;
}

.chat-contact small,
.chat-contact p,
.chat-time,
.muted {
    color: var(--muted);
}

.chat-contact p {
    margin: 5px 0 0;
    font-size: 13px;
}

.chat-unread {
    display: inline-flex;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
}

.chat-header {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.chat-header h2 {
    font-size: clamp(28px, 5vw, 50px);
    line-height: 1;
    margin: 8px 0 4px;
}

.chat-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.chat-typing-indicator {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--border);
    color: var(--muted);
    font-weight: 900;
    animation: litaTypingPulse 1.2s ease-in-out infinite;
}

.chat-typing-indicator::before {
    content: "✍️ ";
}

@keyframes litaTypingPulse {
    0%, 100% {
        opacity: .55;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-1px);
    }
}

.chat-messages {
    display: grid;
    gap: 12px;
    min-height: 420px;
    max-height: 720px;
    overflow: auto;
    padding: 18px 4px;
}

.chat-message {
    display: flex;
    animation: litaChatIn .18s ease-out;
}

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

.chat-message.mine {
    justify-content: flex-end;
}

.chat-message.theirs {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: min(680px, 88%);
    padding: 13px 15px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
}

.chat-message.mine .chat-bubble {
    background: linear-gradient(135deg, rgba(255,79,163,.72), rgba(155,92,255,.72));
    color: #fff;
}

.chat-bubble p {
    margin: 0;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.chat-time {
    margin-top: 8px;
    font-size: 12px;
}

.chat-composer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-quick button,
.chat-emoji-btn {
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 18px;
}

.chat-empty {
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    align-content: center;
    gap: 12px;
}

.chat-empty div {
    font-size: 70px;
}

.chat-empty.small {
    min-height: 240px;
}

@media (max-width: 1100px) {
    .chat-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .chat-header {
        grid-template-columns: 1fr;
    }

    .chat-header-actions {
        justify-content: flex-start;
    }
}
/* LITA_CHAT_AJAX_LIVE_END */


/* LITA_MINI_GAMES_ALL_START */
.mini-hero {
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.24), transparent 34%),
        rgba(255,255,255,.08);
}

.mini-hero h1 {
    font-size: clamp(42px, 8vw, 92px);
    line-height: .9;
    margin: 16px 0;
}

.mini-hero p {
    font-size: 18px;
    line-height: 1.75;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mini-card {
    position: relative;
    overflow: hidden;
}

.mini-card h2 {
    font-size: clamp(24px, 3.4vw, 38px);
    line-height: 1;
    margin-top: 0;
}

.mini-card p {
    color: var(--muted);
    line-height: 1.65;
}

.mini-card form {
    margin-top: 12px;
}

.mini-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.mini-wide {
    grid-column: span 2;
}

.mini-result {
    margin: 14px 0;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.08);
    font-weight: 950;
    line-height: 1.55;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(54px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.memory-grid form {
    margin: 0;
}

.memory-card {
    width: 100%;
    min-height: 78px;
    border-radius: 20px;
    font-size: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
}

.memory-card.open {
    background: linear-gradient(135deg, rgba(255,79,163,.32), rgba(155,92,255,.28));
}

.progress-bar {
    height: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--border);
    overflow: hidden;
    margin: 14px 0 10px;
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--pink), var(--violet));
}

.mini-checklist {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: grid;
    gap: 8px;
}

.mini-checklist li {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
}

.task-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.task-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
}

.task-row small {
    margin-top: 4px;
}

.mini-history {
    display: grid;
    gap: 10px;
}

.mini-history div {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
}

.mini-history small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mini-wide {
        grid-column: span 1;
    }
}

@media (max-width: 720px) {
    .mini-grid,
    .task-row {
        grid-template-columns: 1fr;
    }

    .memory-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .memory-card {
        min-height: 58px;
        font-size: 24px;
    }
}
/* LITA_MINI_GAMES_ALL_END */


/* LITA_NUTZUNGSRICHTLINIEN_500K_START */
.nr-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.30), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.28), transparent 34%),
        rgba(255,255,255,.08);
}

.nr-hero h1 {
    font-size: clamp(42px, 8vw, 96px);
    line-height: .9;
    margin: 18px 0;
    letter-spacing: -0.045em;
}

.nr-hero p,
.nr-important p,
.nr-final p {
    font-size: 18px;
    line-height: 1.8;
}

.nr-important {
    border-color: rgba(255,209,102,.45);
    background:
        radial-gradient(circle at top left, rgba(255,209,102,.16), transparent 35%),
        rgba(255,255,255,.08);
}

.nr-index h2,
.nr-important h2,
.nr-final h2 {
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1;
    margin-top: 0;
}

.nr-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.nr-index-grid a {
    display: block;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 950;
}

.nr-index-grid a:hover {
    background: rgba(255,79,163,.18);
    transform: translateY(-1px);
}

.nr-chapters {
    display: grid;
    gap: 18px;
}

.nr-chapter {
    position: relative;
    overflow: hidden;
}

.nr-chapter::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--pink), var(--violet), var(--gold));
    opacity: .9;
}

.nr-head {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: center;
}

.nr-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,79,163,.68), rgba(155,92,255,.68));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 38px;
}

.nr-head h2 {
    margin: 8px 0 0;
    font-size: clamp(27px, 4.6vw, 52px);
    line-height: 1;
}

.nr-short {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.nr-readmore {
    margin-top: 16px;
}

.nr-readmore summary {
    cursor: pointer;
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 1000;
    list-style: none;
    box-shadow: var(--shadow);
}

.nr-readmore summary::-webkit-details-marker {
    display: none;
}

.nr-readmore[open] summary {
    background: rgba(255,255,255,.12);
    border: 1px solid var(--border);
}

.nr-content {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.nr-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 720px) {
    .nr-head {
        grid-template-columns: 1fr;
    }

    .nr-icon {
        width: 66px;
        height: 66px;
        border-radius: 23px;
        font-size: 32px;
    }

    .nr-content {
        padding: 16px;
    }

    .nr-content p,
    .nr-short,
    .nr-hero p,
    .nr-important p,
    .nr-final p {
        font-size: 16px;
    }
}
/* LITA_NUTZUNGSRICHTLINIEN_500K_END */


/* LITA_NUTZUNGSRICHTLINIEN_FINAL_START */
.nr-hero,
.nr-shortbox {
    background:
        radial-gradient(circle at top left, rgba(255,79,163,.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(155,92,255,.24), transparent 34%),
        rgba(255,255,255,.08);
}

.nr-hero h1 {
    font-size: clamp(42px, 8vw, 96px);
    line-height: .9;
    margin: 18px 0;
    letter-spacing: -0.045em;
}

.nr-hero p,
.nr-shortbox p,
.nr-final p {
    font-size: 18px;
    line-height: 1.8;
}

.nr-shortbox {
    border-color: rgba(255,209,102,.45);
}

.nr-shortbox h2,
.nr-index h2,
.nr-final h2 {
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1;
    margin-top: 0;
}

.nr-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.nr-index-grid a {
    display: block;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 950;
}

.nr-index-grid a:hover {
    background: rgba(255,79,163,.18);
    transform: translateY(-1px);
}

.nr-chapters {
    display: grid;
    gap: 18px;
}

.nr-chapter {
    position: relative;
    overflow: hidden;
}

.nr-chapter::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--pink), var(--violet), var(--gold));
    opacity: .9;
}

.nr-head {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: center;
}

.nr-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,79,163,.68), rgba(155,92,255,.68));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    font-size: 38px;
}

.nr-head h2 {
    margin: 8px 0 0;
    font-size: clamp(27px, 4.6vw, 52px);
    line-height: 1;
}

.nr-summary {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.nr-points {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.nr-points p {
    margin: 0;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    line-height: 1.65;
}

.nr-readmore {
    margin-top: 16px;
}

.nr-readmore summary {
    cursor: pointer;
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: #fff;
    font-weight: 1000;
    list-style: none;
    box-shadow: var(--shadow);
}

.nr-readmore summary::-webkit-details-marker {
    display: none;
}

.nr-readmore[open] summary {
    background: rgba(255,255,255,.12);
    border: 1px solid var(--border);
}

.nr-content {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.nr-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 720px) {
    .nr-head {
        grid-template-columns: 1fr;
    }

    .nr-icon {
        width: 66px;
        height: 66px;
        border-radius: 23px;
        font-size: 32px;
    }

    .nr-content {
        padding: 16px;
    }

    .nr-content p,
    .nr-summary,
    .nr-hero p,
    .nr-shortbox p,
    .nr-final p {
        font-size: 16px;
    }
}
/* LITA_NUTZUNGSRICHTLINIEN_FINAL_END */


/* LITA_NR_BUTTON_INDEX_START */
.nr-index .nr-index-grid.nr-index-buttons {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 12px !important;
    margin-top: 18px !important;
}

.nr-index .nr-index-button {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 58px !important;
    padding: 14px 16px !important;
    border-radius: 18px !important;
    text-decoration: none !important;
    font-weight: 1000 !important;
    color: #fff !important;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 34%),
        linear-gradient(135deg, rgba(255,79,163,.38), rgba(155,92,255,.32)) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
    line-height: 1.25 !important;
}

.nr-index .nr-index-button:hover {
    transform: translateY(-2px) !important;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.26), transparent 34%),
        linear-gradient(135deg, rgba(255,79,163,.62), rgba(155,92,255,.52)) !important;
    border-color: rgba(255,255,255,.42) !important;
}

.nr-index .nr-index-button span {
    display: block !important;
}

@media (max-width: 720px) {
    .nr-index .nr-index-grid.nr-index-buttons {
        grid-template-columns: 1fr !important;
    }
}
/* LITA_NR_BUTTON_INDEX_END */
