.kb-shell-body {
    --kb-page-gutter: clamp(18px, 4vw, 48px);
    margin: 0 !important;
    min-width: 0;
    overflow-x: hidden;
    background: #04040f;
}

.kb-shell,
.kb-shell * {
    box-sizing: border-box;
}

.kb-shell {
    min-height: 100vh;
    color: #2d1d24;
    background: #04040f;
    font-family: Arial, Helvetica, sans-serif;
}

.kb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.kb-shell-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100vw;
    max-width: 100vw;
    min-height: 74px;
    padding: 14px var(--kb-page-gutter);
    background:
        linear-gradient(180deg, rgba(4, 4, 15, .42) 0%, rgba(4, 4, 15, .18) 100%);
    border-bottom: 1px solid rgba(255, 235, 194, .08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.kb-shell-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    transform: translateX(-18px);
    text-decoration: none;
}

.kb-shell-logo img {
    display: block;
    width: min(245px, 58vw);
    height: auto;
    max-height: 46px;
}

.kb-shell-menu-button,
.kb-shell-nav button {
    appearance: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.kb-shell-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    color: #fff8ed;
    background: rgba(255, 248, 237, .1);
    border: 1px solid rgba(255, 235, 194, .24);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}

.kb-shell-menu-button span:first-child {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.kb-shell-menu-button span:first-child::before,
.kb-shell-menu-button span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.kb-shell-menu-button span:first-child::before {
    top: -7px;
}

.kb-shell-menu-button span:first-child::after {
    top: 7px;
}

.kb-shell-nav[hidden] {
    display: none;
}

.kb-shell-nav {
    position: fixed;
    inset: 0;
    z-index: 1010;
    display: flex;
    justify-content: flex-end;
    background: rgba(22, 13, 18, .66);
}

.kb-shell-nav__panel {
    width: min(420px, 92vw);
    min-height: 100%;
    padding: 20px;
    color: #fff8ed;
    background:
        radial-gradient(circle at 90% 0%, rgba(246, 189, 109, .2), transparent 34%),
        linear-gradient(180deg, #2a1220 0%, #170d18 100%);
    box-shadow: -24px 0 46px rgba(20, 5, 14, .32);
    overflow-y: auto;
}

.kb-shell-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 235, 194, .14);
}

.kb-shell-nav__head strong {
    color: #f6bd6d;
    font-size: 18px;
}

.kb-shell-nav__head button {
    min-height: 36px;
    padding: 0 12px;
    color: #fff8ed;
    background: rgba(255, 248, 237, .1);
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.kb-shell-nav__list,
.kb-shell-nav__list ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kb-shell-nav__list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    color: #fff8ed;
    background: rgba(255, 248, 237, .07);
    border: 1px solid rgba(255, 235, 194, .12);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
}

.kb-shell-nav__list img,
.kb-shell-nav__list svg {
    display: none !important;
}

.kb-shell-nav__list a:hover,
.kb-shell-nav__list a:focus-visible,
.kb-shell-menu-button:hover,
.kb-shell-menu-button:focus-visible,
.kb-shell-nav__head button:hover,
.kb-shell-nav__head button:focus-visible {
    background: rgba(246, 189, 109, .18);
    outline: 2px solid rgba(246, 189, 109, .34);
    outline-offset: 2px;
}

.kb-shell-nav__legal {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 235, 194, .14);
}

.kb-shell-nav__legal strong {
    color: #f6bd6d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.kb-shell-nav__list--legal a {
    min-height: 38px;
    font-size: 13px;
}

.kb-shell-main {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.kb-shell-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    padding: 22px 16px 30px;
    color: rgba(255, 248, 237, .72);
    background: #04040f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.kb-shell-footer a {
    color: rgba(255, 248, 237, .84);
    font-weight: 800;
    text-decoration: none;
}

.kb-page {
    display: flex;
    flex-direction: column;
    color: #fff8ed;
    background: #04040f;
    font-family: Arial, Helvetica, sans-serif;
}

.kb-page--detail {
    min-height: calc(100vh - 76px);
    padding: 112px 0 48px;
    background:
        radial-gradient(circle at 52% 24%, rgba(56, 94, 159, .2), transparent 34%),
        radial-gradient(circle at 20% 48%, rgba(100, 55, 130, .16), transparent 32%),
        #04040f;
}

.kb-page *,
.kb-page *::before,
.kb-page *::after {
    box-sizing: border-box;
}

.kb-hero {
    order: 1;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: end;
    min-height: clamp(330px, 28vw, 460px);
    padding: 102px var(--kb-page-gutter) 88px;
    color: #fff8ed;
    background:
        linear-gradient(180deg, rgba(4, 4, 15, .04) 0%, rgba(18, 15, 22, .2) 56%, rgba(4, 4, 15, .88) 100%),
        linear-gradient(90deg, rgba(4, 4, 15, .58) 0%, rgba(18, 15, 22, .06) 46%, rgba(4, 4, 15, .46) 100%),
        url("kerzenbuch-banner-20260617.jpg") center top / cover no-repeat;
    overflow: hidden;
}

.kb-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.kb-sparkles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.kb-sparkles i {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    box-shadow:
        0 0 5px rgba(169, 213, 255, .72),
        0 0 11px rgba(112, 170, 255, .34);
    opacity: .08;
    animation: kbStarBlink var(--dur) ease-in-out infinite;
    animation-delay: var(--delay);
}

.kb-shooting-star {
    position: absolute;
    left: var(--star-x, 22%);
    top: var(--star-y, 18%);
    z-index: 1;
    width: clamp(74px, 7vw, 132px);
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(170, 215, 255, .2) 36%, rgba(255, 255, 255, .96) 100%);
    border-radius: 999px;
    box-shadow:
        0 0 8px rgba(180, 221, 255, .7),
        0 0 22px rgba(104, 168, 255, .35);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0) rotate(var(--star-angle, 17deg));
    transform-origin: 100% 50%;
}

.kb-shooting-star::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 9px rgba(255, 255, 255, .95),
        0 0 18px rgba(160, 214, 255, .72);
    transform: translateY(-50%);
}

.kb-shooting-star.is-active {
    animation: kbShootingStar var(--star-duration, 1.8s) ease-out forwards;
}

.kb-hero__content p,
.kb-section-head p {
    margin: 0 0 8px;
    color: #f6bd6d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.kb-hero h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.8vw, 62px);
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 6px 28px rgba(0, 0, 0, .4);
}

.kb-hero__content span {
    display: block;
    max-width: 760px;
    color: rgba(255, 248, 237, .84);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 2px 9px rgba(0, 0, 0, .32);
}

.kb-hero__candles {
    display: none;
}

.kb-alert {
    order: 2;
    width: min(1344px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 18px auto 30px;
    padding: 13px 16px;
    color: #27432e;
    background: #e8f6ea;
    border: 1px solid #c6e7cc;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.kb-alert a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-left: 10px;
    padding: 0 10px;
    color: #ffffff;
    background: #1f7a3a;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
}

.kb-alert--error {
    color: #6f1b1b;
    background: #fff0ed;
    border-color: #efc4bd;
}

.kb-alert--soft {
    color: #554124;
    background: #fff8e8;
    border-color: #efd8a7;
}

.kb-alert--success {
    color: #183d22;
    background: #e4f8e7;
    border-color: #afe3bb;
}

.kb-featured-entry {
    order: 3;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(190px, 31%) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 38px);
    width: min(1120px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: -38px auto 34px;
    padding: clamp(18px, 3.2vw, 34px);
    color: #fff8ed;
    background:
        radial-gradient(circle at 22% 16%, rgba(246, 189, 109, .18), transparent 32%),
        linear-gradient(135deg, rgba(255, 248, 237, .11), rgba(255, 248, 237, .035)),
        rgba(9, 7, 21, .84);
    border: 1px solid rgba(255, 235, 194, .22);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .14),
        0 28px 76px rgba(0, 0, 0, .34);
    scroll-margin-top: 92px;
    overflow: hidden;
}

.kb-featured-entry::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(4, 4, 15, .08), rgba(4, 4, 15, .62)),
        url("kerzenbuch-banner-20260617.jpg") center top / cover no-repeat;
    opacity: .38;
}

.kb-featured-entry--premium {
    border-color: rgba(255, 213, 112, .44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        0 0 0 1px rgba(255, 213, 112, .08),
        0 30px 80px rgba(0, 0, 0, .38),
        0 0 34px rgba(255, 194, 79, .12);
}

.kb-featured-entry__candle {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(310px, 35vw, 430px);
    padding: 34px 20px;
    background:
        radial-gradient(circle at 50% 31%, rgba(255, 224, 151, .3), transparent 27%),
        radial-gradient(circle at 50% 47%, rgba(111, 72, 149, .24), transparent 42%),
        rgba(4, 4, 15, .42);
    border: 1px solid rgba(255, 235, 194, .14);
    border-radius: 10px;
    overflow: hidden;
}

.kb-featured-entry__candle > span {
    position: relative;
    display: grid;
    place-items: center;
    width: min(210px, 72%);
    min-height: 290px;
}

.kb-featured-entry__candle > span::before {
    content: "";
    position: absolute;
    inset: 16% 1% 2%;
    z-index: 0;
    background:
        radial-gradient(ellipse at center, rgba(255, 221, 138, .24), rgba(255, 184, 64, .08) 40%, transparent 69%);
    border-radius: 50%;
    filter: blur(2px);
}

.kb-featured-entry__candle img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(150px, 74%);
    height: 270px;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, .42));
}

.kb-featured-entry__candle i {
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: 1;
    width: 92px;
    height: 108px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 251, 190, .92) 0 8%, rgba(255, 184, 66, .68) 21%, rgba(230, 75, 38, .24) 44%, transparent 72%);
    border-radius: 999px;
    mix-blend-mode: screen;
    transform: translateX(-50%);
    animation: kbFlameGlow 2.4s infinite ease-in-out;
    opacity: .62;
}

.kb-featured-entry__candle mark {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    color: #3b2612;
    background: linear-gradient(135deg, #fff4c8, #f0ba4f 55%, #c88925);
    border: 1px solid rgba(255, 244, 219, .58);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28), 0 0 18px rgba(255, 213, 112, .22);
    font-size: 12px;
    font-weight: 900;
}

.kb-featured-entry__body {
    display: grid;
    align-content: center;
    gap: 14px;
    min-width: 0;
}

.kb-featured-entry__all-link {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    color: #fff8ed;
    background: rgba(4, 4, 15, .42);
    border: 1px solid rgba(255, 235, 194, .22);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.kb-featured-entry__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kb-featured-entry__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: #f6bd6d;
    background: rgba(255, 235, 194, .08);
    border: 1px solid rgba(255, 235, 194, .15);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.kb-featured-entry h1 {
    margin: 0;
    color: #fff8ed;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-shadow: 0 12px 30px rgba(0, 0, 0, .36);
}

.kb-featured-entry__body > p {
    margin: -5px 0 2px;
    color: rgba(255, 248, 237, .72);
    font-size: 15px;
    font-weight: 800;
}

.kb-featured-entry blockquote {
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 18px 0 18px 18px;
    color: rgba(255, 248, 237, .94);
    border-left: 2px solid rgba(246, 189, 109, .6);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(19px, 2vw, 27px);
    line-height: 1.42;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kb-featured-premium {
    display: grid;
    gap: 3px;
    padding: 12px 14px;
    color: #ffefc5;
    background: rgba(255, 213, 112, .1);
    border: 1px solid rgba(255, 213, 112, .28);
    border-radius: 10px;
}

.kb-featured-premium strong {
    color: #ffe8a6;
    font-size: 13px;
    font-weight: 900;
}

.kb-featured-premium span {
    color: rgba(255, 248, 237, .76);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-featured-burn {
    display: grid;
    gap: 6px;
}

.kb-featured-burn > span {
    display: block;
    height: 9px;
    overflow: hidden;
    background: rgba(255, 235, 194, .16);
    border-radius: 999px;
}

.kb-featured-burn > span > b {
    display: block;
    width: var(--burn);
    height: 100%;
    background: linear-gradient(90deg, #d64537, #f6bd6d);
    border-radius: inherit;
}

.kb-featured-burn small,
.kb-featured-burn em {
    color: rgba(255, 248, 237, .68);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
}

.kb-featured-share {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 12;
}

.kb-featured-share summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    color: rgba(255, 248, 237, .88);
    background: rgba(4, 4, 15, .56);
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    list-style: none;
    white-space: nowrap;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.kb-featured-share summary::marker {
    content: "";
}

.kb-featured-share summary::-webkit-details-marker {
    display: none;
}

.kb-featured-share[open] summary,
.kb-featured-share summary:hover,
.kb-featured-share summary:focus-visible {
    color: #fff8ed;
    background: rgba(111, 36, 51, .74);
    border-color: rgba(255, 235, 194, .3);
}

.kb-featured-share__label-open {
    display: none;
}

.kb-featured-share[open] .kb-featured-share__label {
    display: none;
}

.kb-featured-share[open] .kb-featured-share__label-open {
    display: inline;
}

.kb-featured-share div {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    display: grid;
    gap: 7px;
    width: min(250px, calc(100vw - 44px));
    padding: 10px;
    background: rgba(9, 7, 21, .94);
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
    backdrop-filter: blur(12px);
}

.kb-featured-share a,
.kb-featured-share button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 11px;
    color: rgba(255, 248, 237, .84);
    background: rgba(255, 248, 237, .07);
    border: 1px solid rgba(255, 235, 194, .15);
    border-radius: 8px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.kb-featured-share a {
    color: #271118;
    background: linear-gradient(135deg, #ffe1a3, #f6bd6d);
    border-color: rgba(255, 235, 194, .38);
}

.kb-featured-share button.is-copied,
.kb-share-actions button.is-copied,
.kb-status-share button.is-copied {
    color: #eaffef;
    background: #28784f;
    border-color: rgba(169, 255, 196, .46);
}

.kb-featured-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.kb-status-share {
    order: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    width: min(860px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 16px auto 18px;
    padding: 14px;
    color: rgba(255, 248, 237, .78);
    background:
        linear-gradient(135deg, rgba(255, 248, 237, .08), rgba(255, 248, 237, .035)),
        rgba(4, 4, 15, .74);
    border: 1px solid rgba(255, 235, 194, .16);
    border-radius: 10px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
    scroll-margin-top: 96px;
}

.kb-status-share[hidden] {
    display: none;
}

.kb-status-share--modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    width: auto;
    margin: 0;
    padding: 18px;
    background: rgba(4, 4, 15, .82);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
}

.kb-status-share__panel {
    display: grid;
    gap: 12px;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    padding: 14px;
    background:
        radial-gradient(circle at 50% 0%, rgba(246, 189, 109, .14), transparent 32%),
        rgba(9, 7, 21, .96);
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 12px;
    box-shadow: 0 28px 72px rgba(0, 0, 0, .46);
}

.kb-status-share__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.kb-status-share__head strong {
    color: #fff8ed;
    font-size: 14px;
    font-weight: 900;
}

.kb-status-share__head button {
    min-height: 30px;
    padding: 0 10px;
    color: rgba(255, 248, 237, .7);
    background: rgba(255, 248, 237, .06);
    border: 1px solid rgba(255, 235, 194, .14);
}

.kb-status-share__text {
    display: grid;
    gap: 4px;
}

.kb-status-share__text span {
    color: #f6bd6d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.kb-status-share__text strong {
    color: #fff8ed;
    font-size: 17px;
    font-weight: 900;
}

.kb-status-share__text p {
    margin: 0;
    color: rgba(255, 248, 237, .62);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-status-share__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.kb-status-share__link {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.kb-status-share button,
.kb-status-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    color: #fff8ed;
    background: rgba(255, 248, 237, .08);
    border: 1px solid rgba(255, 235, 194, .18);
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.kb-status-share button:first-child {
    color: #261119;
    background: linear-gradient(135deg, #ffe1a3, #f6bd6d);
    border-color: rgba(255, 235, 194, .38);
}

.kb-status-share button:disabled {
    cursor: wait;
    opacity: .62;
}

.kb-status-share__link input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    color: rgba(255, 248, 237, .78);
    background: rgba(4, 4, 15, .42);
    border: 1px solid rgba(255, 235, 194, .16);
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
}

.kb-status-share canvas {
    grid-column: 1 / -1;
    width: min(240px, 100%);
    height: auto;
    justify-self: center;
    aspect-ratio: 9 / 16;
    background: #04040f;
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.kb-status-share--modal canvas {
    width: min(260px, 100%);
}

.kb-status-share small {
    grid-column: 1 / -1;
    min-height: 16px;
    color: rgba(255, 248, 237, .6);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.kb-thought-mailbox {
    display: grid;
    gap: 12px;
    padding: 14px;
    background:
        radial-gradient(circle at 10% 0%, rgba(246, 189, 109, .16), transparent 28%),
        rgba(255, 248, 237, .07);
    border: 1px solid rgba(255, 235, 194, .18);
    border-radius: 10px;
}

.kb-thought-mailbox__head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.kb-thought-mailbox__head > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #351521;
    background: linear-gradient(135deg, #fff4d6, #f6bd6d);
    border: 1px solid rgba(255, 244, 219, .54);
    border-radius: 10px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .2);
    font-size: 23px;
}

.kb-thought-mailbox__head strong {
    display: block;
    color: #fff8ed;
    font-size: 15px;
    font-weight: 900;
}

.kb-thought-mailbox__head small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 248, 237, .68);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-thought-mailbox__head b {
    display: grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    padding: 0 9px;
    color: #fff8ed;
    background: #8d3448;
    border: 1px solid rgba(255, 235, 194, .22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.kb-thought-list {
    display: grid;
    gap: 8px;
}

.kb-thought-list article,
.kb-thought-admin__list article,
.kb-thought-admin__approved article {
    padding: 12px;
    background: rgba(4, 4, 15, .26);
    border: 1px solid rgba(255, 235, 194, .13);
    border-radius: 8px;
}

.kb-thought-list blockquote,
.kb-thought-admin blockquote {
    margin: 0;
    padding: 0;
    color: rgba(255, 248, 237, .9);
    border: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.45;
}

.kb-thought-list small,
.kb-thought-admin small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 248, 237, .58);
    font-size: 12px;
    font-weight: 800;
}

.kb-thought-compose,
.kb-thought-owner {
    border-top: 1px solid rgba(255, 235, 194, .12);
    padding-top: 10px;
}

.kb-thought-compose summary,
.kb-thought-owner summary {
    width: max-content;
    max-width: 100%;
    color: #f6bd6d;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.kb-thought-compose form,
.kb-thought-owner div {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.kb-thought-compose__hint {
    margin: 0;
    color: #ffe1a3;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
}

.kb-thought-code-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .26);
    border-radius: 8px;
}

.kb-thought-code-panel div {
    display: grid;
    gap: 7px;
}

.kb-thought-code-panel strong {
    color: #f5fff6;
    font-size: 13px;
    font-weight: 900;
}

.kb-thought-code-panel small {
    color: rgba(255, 248, 237, .66);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-thought-code-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 36px;
    padding: 0 13px;
    color: #ffffff;
    background: #25d366;
    border: 1px solid rgba(190, 255, 211, .45);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.kb-thought-code-panel img {
    display: block;
    width: 92px;
    height: 92px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid rgba(190, 255, 211, .7);
    border-radius: 8px;
}

.kb-thought-owner div {
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
    padding: 10px;
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .26);
    border-radius: 8px;
}

.kb-thought-compose label {
    display: grid;
    gap: 5px;
}

.kb-thought-compose label span {
    color: rgba(255, 248, 237, .72);
    font-size: 12px;
    font-weight: 900;
}

.kb-thought-compose label small {
    color: rgba(255, 248, 237, .58);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-thought-compose input,
.kb-thought-compose textarea {
    width: 100%;
    min-width: 0;
    padding: 10px 11px;
    color: #fff8ed;
    background: rgba(4, 4, 15, .34);
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
}

.kb-thought-compose textarea {
    resize: vertical;
}

.kb-thought-compose button,
.kb-thought-owner a,
.kb-thought-admin button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 36px;
    padding: 0 13px;
    color: #2c1420;
    background: #f6bd6d;
    border: 1px solid rgba(255, 244, 219, .48);
    border-radius: 8px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.kb-thought-compose form > small,
.kb-thought-owner p {
    margin: 0;
    color: rgba(255, 248, 237, .62);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.kb-thought-owner p {
    grid-column: 1;
}

.kb-thought-owner a {
    width: 100%;
    color: #ffffff;
    background: #25d366;
    border-color: rgba(190, 255, 211, .45);
}

.kb-thought-owner img {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: block;
    width: 92px;
    height: 92px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid rgba(190, 255, 211, .7);
    border-radius: 8px;
}

.kb-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.kb-thought-admin {
    display: grid;
    gap: 14px;
    color: rgba(255, 248, 237, .9);
    background:
        linear-gradient(135deg, rgba(255, 235, 194, .1), rgba(255, 255, 255, .035)),
        rgba(18, 12, 27, .93);
    border: 1px solid rgba(255, 235, 194, .28);
    border-radius: 10px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        0 20px 58px rgba(0, 0, 0, .34);
    padding: 20px;
}

.kb-thought-admin h2 {
    margin: 0;
    color: #fff8ed;
    font-size: 24px;
}

.kb-thought-admin__empty {
    padding: 13px;
    color: rgba(255, 248, 237, .72);
    background: rgba(4, 4, 15, .24);
    border: 1px solid rgba(255, 235, 194, .12);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.kb-thought-admin__list {
    display: grid;
    gap: 10px;
}

.kb-thought-admin__list article > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.kb-thought-admin__list form {
    margin: 0;
}

.kb-thought-admin button.kb-button-secondary {
    color: #fff8ed;
    background: rgba(255, 248, 237, .1);
    border-color: rgba(255, 235, 194, .22);
}

.kb-thought-admin__approved {
    border-top: 1px solid rgba(255, 235, 194, .13);
    padding-top: 10px;
}

.kb-thought-admin__approved summary {
    color: #f6bd6d;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.kb-thought-admin__approved > div {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.kb-featured-entry .kb-entry-manage-actions,
.kb-featured-entry .kb-payment-actions {
    margin-top: 0;
}

.kb-featured-entry .kb-entry-manage-actions summary {
    color: #fff8ed;
    background: rgba(255, 248, 237, .1);
    border-color: rgba(255, 235, 194, .22);
}

.kb-featured-entry .kb-payment-actions summary {
    min-height: 34px;
}

.kb-payment-actions--featured {
    margin-top: -2px;
}

.kb-payment-actions--featured summary {
    min-height: 38px;
    padding: 0 14px;
    color: #f5fff6;
    background: linear-gradient(135deg, #259b58, #126c3a);
    border-color: rgba(177, 255, 201, .36);
    box-shadow: 0 10px 22px rgba(18, 108, 58, .24), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.kb-payment-actions--featured div {
    max-width: 520px;
    background:
        linear-gradient(135deg, rgba(39, 174, 96, .13), rgba(255, 248, 237, .04)),
        rgba(4, 4, 15, .34);
    border-color: rgba(177, 255, 201, .18);
}

.kb-featured-entry__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 42px;
    height: 64px;
    color: rgba(255, 248, 237, .92);
    background: rgba(4, 4, 15, .42);
    border: 1px solid rgba(255, 235, 194, .16);
    border-radius: 999px;
    text-decoration: none;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}

.kb-featured-entry__arrow:hover,
.kb-featured-entry__arrow:focus-visible {
    background: rgba(246, 189, 109, .18);
    transform: translateY(-50%) scale(1.04);
}

.kb-featured-entry__arrow span {
    margin-top: -3px;
    font-size: 42px;
    line-height: 1;
}

.kb-featured-entry__arrow--prev {
    left: 10px;
}

.kb-featured-entry__arrow--next {
    right: 10px;
}

.kb-featured-entry__mobile-nav {
    display: none;
}

.kb-page--detail .kb-featured-entry {
    order: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.kb-page--detail .kb-alert {
    order: 0;
    margin-top: 0;
}

.kb-detail-topline {
    order: 0;
    display: flex;
    justify-content: flex-end;
    width: min(1120px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 0 auto 10px;
}

.kb-detail-topline .kb-audio-player {
    margin: 0;
}

.kb-detail-support {
    order: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 18px;
    align-items: stretch;
    width: min(1120px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 18px auto 0;
}

.kb-detail-support .kb-thought-mailbox {
    min-height: 100%;
    align-content: start;
}

.kb-detail-support .kb-mini-board-nav {
    order: initial;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 0;
    justify-items: center;
    text-align: center;
}

.kb-detail-support .kb-mini-board-nav__head {
    display: grid;
    gap: 10px;
    justify-items: center;
}

.kb-detail-support .kb-mini-board-nav__head span {
    max-width: 260px;
}

.kb-detail-support .kb-mini-board-nav__actions {
    justify-content: center;
}

.kb-detail-support .kb-mini-board-nav__actions a {
    flex: 0 1 auto;
}

.kb-detail-support .kb-mini-board {
    justify-self: center;
}

.kb-mini-board-nav {
    order: 2;
    --kb-mini-slot: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    width: min(1120px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 18px auto 0;
    padding: 14px;
    color: #fff8ed;
    background:
        linear-gradient(135deg, rgba(255, 248, 237, .09), rgba(255, 248, 237, .025)),
        rgba(9, 7, 21, .74);
    border: 1px solid rgba(255, 235, 194, .17);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        0 18px 44px rgba(0, 0, 0, .24);
}

.kb-mini-board-nav__head {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.kb-mini-board-nav__head strong {
    display: block;
    color: #f6bd6d;
    font-size: 16px;
    font-weight: 900;
}

.kb-mini-board-nav__head span {
    display: block;
    max-width: 520px;
    margin-top: 3px;
    color: rgba(255, 248, 237, .68);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-mini-board-nav__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.kb-mini-board-nav__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    color: #fff8ed;
    background: rgba(255, 248, 237, .1);
    border: 1px solid rgba(255, 235, 194, .22);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.kb-mini-board {
    display: grid;
    grid-template-columns: repeat(10, var(--kb-mini-slot));
    gap: 4px;
    justify-self: end;
    width: auto;
    padding: 10px;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 213, 112, .08), transparent 52%),
        rgba(4, 4, 15, .5);
    border: 1px solid rgba(255, 235, 194, .11);
    border-radius: 10px;
}

.kb-mini-board__slot {
    display: block;
    width: var(--kb-mini-slot);
    height: var(--kb-mini-slot);
    background: rgba(255, 248, 237, .05);
    border: 1px solid rgba(255, 235, 194, .09);
    border-radius: 4px;
    text-decoration: none;
}

.kb-mini-board__slot--lit {
    background:
        radial-gradient(circle at 50% 45%, #fff4c8 0 12%, rgba(246, 189, 109, .78) 22%, rgba(219, 72, 44, .2) 46%, transparent 68%),
        rgba(255, 213, 112, .12);
    border-color: rgba(246, 189, 109, .38);
    box-shadow: 0 0 10px rgba(246, 189, 109, .18);
}

.kb-mini-board__slot--lit:hover,
.kb-mini-board__slot--lit:focus-visible {
    border-color: rgba(255, 244, 219, .72);
    box-shadow:
        0 0 0 2px rgba(246, 189, 109, .2),
        0 0 14px rgba(246, 189, 109, .28);
}

.kb-mini-board__slot.is-active {
    background:
        radial-gradient(circle at 50% 45%, #fffdf0 0 14%, #f6bd6d 25%, rgba(48, 204, 108, .36) 52%, transparent 72%),
        rgba(48, 204, 108, .16);
    border-color: rgba(128, 255, 167, .92);
    box-shadow:
        0 0 0 2px rgba(48, 204, 108, .28),
        0 0 18px rgba(48, 204, 108, .24);
}

.kb-mini-board__slot--reserved {
    background:
        repeating-linear-gradient(135deg, rgba(246, 189, 109, .13) 0 2px, rgba(255, 248, 237, .02) 2px 4px),
        rgba(255, 248, 237, .04);
    border-color: rgba(246, 189, 109, .16);
}

.kb-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
    gap: 18px;
    width: min(1344px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 16px auto 0;
}

.kb-main-grid--single {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}

.kb-main-grid--pending {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
}

.kb-main-grid--pending .kb-code-box {
    margin-top: 4px;
}

.kb-create-panel {
    order: 4;
    width: min(1344px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 24px auto 34px;
}

.kb-create-panel summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #8d3448, #5f243a);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 235, 194, .22);
    font-size: 15px;
    font-weight: 900;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

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

.kb-create-panel summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: auto;
    height: auto;
    margin-left: 10px;
    color: rgba(255, 255, 255, .82);
    background: transparent;
    border-radius: 0;
    font-size: 18px;
    line-height: 1;
}

.kb-create-panel[open] summary::after {
    content: "-";
}

.kb-entry {
    background: #fffaf3;
    border: 1px solid #ead8c0;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(70, 35, 36, .08);
}

.kb-form,
.kb-code-box {
    color: rgba(255, 248, 237, .9);
    background:
        linear-gradient(135deg, rgba(255, 235, 194, .1), rgba(255, 255, 255, .035)),
        rgba(18, 12, 27, .93);
    border: 1px solid rgba(255, 235, 194, .28);
    border-radius: 10px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .16),
        0 20px 58px rgba(0, 0, 0, .34);
}

.kb-form,
.kb-code-box {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.kb-position-note {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 8px;
    align-items: center;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    padding: 8px 10px;
    color: #ffe8bb;
    background: rgba(255, 189, 109, .1);
    border: 1px solid rgba(246, 189, 109, .34);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.kb-position-note span {
    color: rgba(255, 235, 194, .72);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.kb-position-note strong {
    color: #f6bd6d;
    font-size: 18px;
    line-height: 1;
}

.kb-position-note--compact {
    width: 100%;
    justify-content: space-between;
}

.kb-whatsapp-required {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px;
    color: #ddffe5;
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .32);
    border-radius: 8px;
}

.kb-whatsapp-required span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: #25d366;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(37, 211, 102, .25);
}

.kb-whatsapp-required svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.kb-whatsapp-required strong {
    grid-column: 2;
    color: #eaffee;
    font-size: 14px;
    line-height: 1.25;
}

.kb-whatsapp-required em {
    grid-column: 2;
    color: rgba(221, 255, 229, .74);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.35;
}

.kb-reservation-note,
.kb-code-empty {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.kb-reservation-note {
    color: #fff0ce;
    background: rgba(246, 189, 109, .11);
    border: 1px solid rgba(246, 189, 109, .32);
}

.kb-reservation-note strong,
.kb-reservation-note em {
    color: #f6bd6d;
    font-style: normal;
    font-weight: 900;
}

.kb-reservation-note.is-expired {
    color: #7a2a24;
    background: #fff0ed;
    border-color: #efc4bd;
}

.kb-code-empty {
    color: rgba(255, 248, 237, .76);
    background: rgba(255, 248, 237, .07);
    border: 1px solid rgba(255, 235, 194, .18);
}

.kb-pending-preview {
    display: grid;
    gap: 6px;
    padding: 12px;
    color: #5a423b;
    background: #f4eee6;
    border: 1px solid #d9c8b6;
    border-radius: 8px;
}

.kb-pending-preview strong {
    color: #6f2433;
    font-size: 15px;
}

.kb-pending-preview span {
    color: #8a6b5d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.kb-pending-preview p,
.kb-pending-preview blockquote,
.kb-pending-preview em {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.kb-pending-preview em {
    color: #7d6258;
    font-style: normal;
    font-weight: 800;
}

.kb-form input:disabled,
.kb-form textarea:disabled,
.kb-form select:disabled {
    color: #6f615d;
    background: #eee8e2;
    border-color: #d8c9be;
    opacity: 1;
}

.kb-form.is-locked .kb-candle-picker label {
    cursor: default;
    opacity: .62;
}

.kb-form h2 {
    margin: 0;
    color: #fff4dd;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.15;
}

.kb-code-box h2 {
    margin: 0;
    color: #fff4dd;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.15;
}

.kb-section-head h2 {
    margin: 0;
    color: #fff8ed;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.1;
}

.kb-code-box p,
.kb-form__hint {
    margin: 0;
    color: rgba(255, 248, 237, .72);
    font-size: 14px;
    line-height: 1.45;
}

.kb-form__hint--privacy {
    padding: 10px 11px;
    color: rgba(255, 248, 237, .78);
    background: rgba(255, 248, 237, .06);
    border: 1px solid rgba(255, 235, 194, .14);
    border-radius: 8px;
    font-size: 13px;
}

.kb-code-form {
    display: grid;
    gap: 18px;
    padding-top: 8px;
}

.kb-code-form label {
    margin-top: 10px;
}

.kb-code-form button {
    margin-top: 8px;
}

.kb-form label,
.kb-code-box label {
    display: grid;
    gap: 7px;
    color: #fff0ce;
    font-size: 13px;
    font-weight: 900;
}

.kb-form label small {
    color: rgba(255, 248, 237, .62);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-form input,
.kb-form textarea,
.kb-form select,
.kb-code-box input {
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    color: #251722;
    background: #fffaf3;
    border: 1px solid rgba(246, 189, 109, .36);
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    line-height: 1.35;
}

.kb-form input:focus,
.kb-form textarea:focus,
.kb-form select:focus,
.kb-code-box input:focus {
    outline: 0;
    border-color: #f6bd6d;
    box-shadow: 0 0 0 3px rgba(246, 189, 109, .18);
}

.kb-form select {
    appearance: none;
    padding-right: 38px;
    background-image:
        linear-gradient(45deg, transparent 50%, #7b4b44 50%),
        linear-gradient(135deg, #7b4b44 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 52%,
        calc(100% - 12px) 52%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.kb-form textarea {
    resize: vertical;
}

.kb-form button,
.kb-code-box button,
.kb-payment-actions button {
    min-height: 42px;
    padding: 0 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #9e3d50, #6f243d);
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.kb-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    padding-bottom: 2px;
}

.kb-form-actions button {
    flex: 1 1 170px;
}

.kb-form-message {
    margin-top: 2px;
    padding: 11px 12px;
    color: #ddffe5;
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .32);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
}

.kb-form-message--error {
    color: #ffe0dc;
    background: rgba(183, 55, 48, .14);
    border-color: rgba(255, 139, 124, .34);
}

.kb-form button.kb-button-secondary,
.kb-code-box button.kb-button-secondary {
    color: #ffe8bb;
    background: rgba(255, 235, 194, .16);
    border: 1px solid rgba(255, 235, 194, .2);
}

.kb-candle-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
    gap: 10px;
}

.kb-candle-picker label {
    display: block;
    cursor: pointer;
}

.kb-candle-picker input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    appearance: none;
    clip-path: inset(50%);
    pointer-events: none;
}

.kb-candle-picker span {
    position: relative;
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 106px;
    padding: 8px;
    background: rgba(255, 250, 243, .96);
    border: 2px solid rgba(246, 189, 109, .28);
    border-radius: 8px;
}

.kb-candle-picker input:checked + span {
    background:
        radial-gradient(circle at 50% 28%, rgba(246, 189, 109, .24), transparent 52%),
        #fff8e8;
    border-color: #f6bd6d;
    box-shadow: 0 0 0 4px rgba(246, 189, 109, .26), 0 10px 28px rgba(0, 0, 0, .24);
}

.kb-candle-picker input:checked + span::after {
    content: "✓";
    position: absolute;
    top: 6px;
    right: 6px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: #271822;
    background: #f6bd6d;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    z-index: 4;
}

.kb-candle-picker img {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 68px;
    object-fit: contain;
    transform-origin: center top;
    animation: kbCandleFlicker 3.2s infinite ease-in-out;
}

.kb-candle-picker b {
    position: relative;
    z-index: 2;
    color: #6f5750;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}

.kb-candle-picker input:checked + span b {
    color: #6f2433;
}

.kb-plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kb-plans article {
    display: grid;
    gap: 3px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ead8c0;
    border-radius: 8px;
}

.kb-plans strong {
    color: #6f2433;
    font-size: 20px;
}

.kb-plans span {
    color: #715f55;
    font-size: 12px;
    font-weight: 800;
}

.kb-whatsapp-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 14px;
    align-items: center;
    padding: 13px;
    background: #f5fff7;
    border: 1px solid #bfe7c6;
    border-radius: 8px;
}

.kb-whatsapp-panel--idle {
    display: grid;
    grid-template-columns: 1fr;
    color: #4d6b52;
}

.kb-whatsapp-panel__copy {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.kb-whatsapp-panel strong {
    color: #184d27;
    font-size: 15px;
}

.kb-whatsapp-panel span {
    color: #4d6b52;
    font-size: 13px;
    line-height: 1.35;
}

.kb-whatsapp-panel code {
    display: block;
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 9px 10px;
    color: #203025;
    background: #ffffff;
    border: 1px solid #cfead4;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.kb-whatsapp-panel em {
    color: #315c39;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.kb-whatsapp-panel a,
.kb-share-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    color: #ffffff;
    background: #1f7a3a;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.kb-whatsapp-qr {
    display: block;
    width: 132px;
    height: 132px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #cfead4;
    border-radius: 8px;
}

.kb-list {
    order: 3;
    position: relative;
    z-index: 2;
    width: min(1344px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: -40px auto 34px;
}

.kb-list.kb-list--after-alert {
    margin-top: 0;
}

.kb-featured-entry ~ .kb-list {
    margin-top: 0;
}

.kb-audio-player {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 0 8px auto;
}

.kb-audio-player > span {
    color: #f6d58f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(246, 176, 74, .2);
}

.kb-audio-player i {
    display: inline-block;
    margin-right: 1px;
    color: currentColor;
    font-style: normal;
    transform-origin: 50% 80%;
    animation: kbMusicNoteBounce 2.4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(246, 176, 74, .34);
}

.kb-audio-player button {
    min-width: 66px;
    min-height: 30px;
    padding: 0 10px;
    color: #fff8ed;
    background: rgba(255, 248, 237, .1);
    border: 1px solid rgba(255, 235, 194, .28);
    border-radius: 8px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.kb-board-topline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
    padding: 0;
}

.kb-board-title {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.kb-board-title h1 {
    margin: 0;
    color: #f6d58f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.04;
    font-weight: 900;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .32), 0 0 18px rgba(246, 176, 74, .16);
}

.kb-board-title p {
    margin: 0;
    color: #d9d6ee;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
}

.kb-board-topline .kb-audio-player {
    flex: 0 0 auto;
    margin: 0;
}


.kb-section-head {
    margin-bottom: 12px;
    color: #fff8ed;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .5);
}

.kb-section-head span {
    display: block;
    max-width: 680px;
    margin-top: 8px;
    color: rgba(255, 248, 237, .82);
    font-size: 14px;
    line-height: 1.45;
}

.kb-candle-board-shell {
    overflow-x: auto;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .025)),
        rgba(5, 4, 14, .5);
    border: 1px solid rgba(255, 235, 194, .2);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .26),
        inset 0 -1px 0 rgba(255, 255, 255, .08),
        0 28px 80px rgba(0, 0, 0, .42);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.kb-candle-board {
    display: grid;
    grid-template-columns: 34px repeat(10, minmax(88px, 1fr));
    gap: 8px;
    min-width: 1060px;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 196, 93, .11), transparent 38%),
        linear-gradient(135deg, rgba(28, 13, 28, .94) 0%, rgba(6, 5, 15, .97) 100%);
    border: 1px solid rgba(255, 235, 194, .16);
    border-radius: 10px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 238, 203, .05),
        inset 0 18px 42px rgba(0, 0, 0, .26);
}

.kb-candle-board--mobile {
    display: none;
}

.kb-board-axis {
    display: grid;
    place-items: center;
    min-height: 26px;
    color: rgba(255, 235, 194, .74);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.kb-board-axis--letter {
    min-height: 80px;
    color: rgba(184, 146, 88, .86);
    background: rgba(4, 4, 15, .62);
    border: 1px solid rgba(255, 235, 194, .08);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.kb-board-axis--number {
    color: rgba(184, 146, 88, .86);
    background: rgba(4, 4, 15, .68);
    border: 1px solid rgba(255, 235, 194, .09);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.kb-candle-slot {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 104px;
    padding: 8px 5px;
    color: #f9e8c6;
    background:
        linear-gradient(180deg, rgba(255, 244, 219, .09), rgba(255, 244, 219, .02)),
        rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 235, 194, .14);
    border-radius: 8px;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
}

.kb-candle-slot::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 8px;
    height: 5px;
    background: rgba(255, 224, 164, .14);
    border-radius: 999px;
}

.kb-candle-slot--lit::before {
    content: "";
    position: absolute;
    left: 10%;
    bottom: 8px;
    z-index: 1;
    width: var(--burn);
    max-width: 80%;
    height: 5px;
    background: linear-gradient(90deg, #d64537, #f6bd6d);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(246, 189, 109, .28);
}

.kb-candle-slot > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 42px;
    margin-top: 8px;
}

.kb-candle-slot img {
    position: relative;
    z-index: 2;
    display: block;
    width: 30px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 6px 8px rgba(0, 0, 0, .42));
}

.kb-candle-slot i {
    position: absolute;
    top: 6px;
    left: 50%;
    z-index: 1;
    width: 36px;
    height: 42px;
    background: radial-gradient(circle at 50% 38%, rgba(255, 242, 177, .86) 0 10%, rgba(255, 174, 54, .54) 24%, rgba(219, 72, 44, .19) 48%, transparent 72%);
    border-radius: 999px;
    opacity: calc(.22 + (var(--burn) / 100) * .58);
    transform: translateX(-50%);
    animation: kbFlameGlow 2.4s infinite ease-in-out;
}

.kb-candle-slot--tall i {
    top: 4px;
}

.kb-candle-slot b {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    color: rgba(255, 244, 219, .66);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.kb-candle-slot small {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    color: rgba(255, 244, 219, .76);
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow-wrap: anywhere;
}

.kb-candle-slot em {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: rgba(255, 244, 219, .76);
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kb-candle-slot--lit small {
    align-self: start;
    min-height: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.kb-candle-slot em {
    color: #f6bd6d;
    font-size: 10px;
}

.kb-candle-slot--lit em {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 4;
    max-width: calc(100% - 10px);
    color: #fff8ed;
    background: rgba(30, 15, 25, .78);
    border: 1px solid rgba(246, 189, 109, .48);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .24);
    padding: 1px 4px;
    font-size: 6px;
    line-height: 1.1;
}

.kb-candle-slot--lit:hover,
.kb-candle-slot--lit.is-active {
    border-color: rgba(255, 197, 92, .82);
    background:
        radial-gradient(circle at 50% 36%, rgba(255, 199, 92, .2), transparent 45%),
        rgba(255, 255, 255, .05);
    box-shadow: 0 0 0 2px rgba(255, 197, 92, .18), 0 0 22px rgba(255, 167, 62, .16);
}

.kb-candle-slot--new {
    border-color: rgba(112, 255, 151, .92);
    box-shadow: 0 0 0 2px rgba(92, 255, 127, .28), 0 0 28px rgba(92, 255, 127, .28);
    animation: kbNewCandlePulse 1.25s ease-in-out 8;
}

.kb-candle-slot--new > span::after {
    content: "Neu entzündet";
    position: absolute;
    left: 50%;
    top: -12px;
    z-index: 5;
    padding: 2px 6px;
    color: #ddffe5;
    background: rgba(14, 76, 38, .92);
    border: 1px solid rgba(139, 255, 170, .52);
    border-radius: 999px;
    font-size: 7px;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
    transform: translateX(-50%);
}

.kb-candle-slot--premium {
    border-color: rgba(255, 213, 112, .58);
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 220, 130, .24), transparent 46%),
        linear-gradient(180deg, rgba(255, 244, 219, .1), rgba(255, 244, 219, .03)),
        rgba(255, 255, 255, .035);
    box-shadow:
        inset 0 0 0 1px rgba(255, 225, 142, .12),
        0 0 0 1px rgba(255, 213, 112, .18),
        0 0 18px rgba(255, 194, 79, .18);
}

.kb-candle-slot--premium::before {
    box-shadow: 0 0 12px rgba(255, 213, 112, .44);
}

.kb-candle-slot--premium > span::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0 calc(50% - 21px) 3px;
    border: 1px solid rgba(255, 226, 149, .62);
    border-radius: 999px;
    box-shadow:
        0 0 12px rgba(255, 197, 92, .34),
        inset 0 0 10px rgba(255, 244, 219, .13);
    pointer-events: none;
}

.kb-candle-slot--premium-year > span::before {
    inset: -1px calc(50% - 23px) 2px;
    border-color: rgba(255, 238, 178, .82);
    box-shadow:
        0 0 16px rgba(255, 213, 112, .48),
        0 0 30px rgba(255, 183, 72, .22),
        inset 0 0 12px rgba(255, 244, 219, .18);
}

.kb-candle-slot mark {
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 5;
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 14px;
    padding: 0 4px;
    color: #3b2612;
    background: linear-gradient(135deg, #ffe8a6, #e9a83d);
    border: 1px solid rgba(255, 244, 219, .5);
    border-radius: 999px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .22), 0 0 10px rgba(255, 213, 112, .24);
    font-size: 7px;
    font-weight: 900;
    line-height: 1;
}

.kb-candle-slot--premium-year mark {
    background: linear-gradient(135deg, #fff4c8, #f0ba4f 55%, #c88925);
}

.kb-candle-slot__thoughts {
    position: absolute;
    top: 20px;
    left: 3px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    min-width: 22px;
    height: 14px;
    padding: 0 4px;
    color: #f9edf8;
    background: rgba(29, 19, 43, .86);
    border: 1px solid rgba(246, 189, 109, .38);
    border-radius: 999px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .26), 0 0 10px rgba(185, 129, 255, .18);
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.kb-candle-slot .kb-candle-slot__thoughts span,
.kb-candle-slot .kb-candle-slot__thoughts b {
    position: static;
    display: inline;
    max-width: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.kb-candle-slot--empty {
    opacity: .78;
}

.kb-candle-slot--empty span,
.kb-candle-slot--reserved span {
    width: 18px;
    min-height: 18px;
    border: 1px dashed rgba(255, 236, 193, .28);
    border-radius: 999px;
}

.kb-candle-slot--empty b {
    color: rgba(255, 244, 219, .42);
}

.kb-candle-slot--empty:hover {
    opacity: 1;
    border-color: rgba(255, 236, 193, .45);
    background: rgba(255, 244, 219, .08);
}

.kb-candle-slot--reserved {
    opacity: .88;
    cursor: default;
    border-color: rgba(246, 189, 109, .42);
    background:
        repeating-linear-gradient(
            135deg,
            rgba(246, 189, 109, .11) 0 6px,
            rgba(255, 244, 219, .025) 6px 12px
        ),
        rgba(64, 34, 45, .42);
    box-shadow: inset 0 0 0 1px rgba(246, 189, 109, .08);
}

.kb-candle-slot--reserved span {
    border-color: rgba(246, 189, 109, .55);
    background: rgba(246, 189, 109, .08);
}

.kb-candle-slot--reserved small {
    color: #f6bd6d;
}

.kb-candle-slot--reserved b {
    color: rgba(255, 244, 219, .74);
}

.kb-candle-slot.is-selected {
    opacity: 1;
    border-color: rgba(111, 219, 137, .92);
    background:
        radial-gradient(circle at 50% 38%, rgba(77, 201, 103, .2), transparent 48%),
        rgba(73, 190, 96, .12);
    box-shadow: 0 0 0 2px rgba(77, 201, 103, .2), 0 0 22px rgba(77, 201, 103, .16);
}

.kb-candle-slot.is-selected b,
.kb-candle-slot.is-selected small {
    color: #c8ffd3;
}

.kb-entry-detail-stack {
    margin-top: 18px;
}

.kb-manage-panel {
    order: 5;
    width: min(1344px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 18px auto 52px;
    color: rgba(255, 248, 237, .7);
    font-size: 13px;
    text-align: center;
}

.kb-manage-panel summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    list-style: none;
    color: rgba(255, 248, 237, .74);
    font-weight: 800;
    cursor: pointer;
}

.kb-manage-panel summary::marker {
    content: "";
}

.kb-manage-panel summary::-webkit-details-marker {
    display: none;
}

.kb-manage-panel div {
    max-width: 680px;
    margin: 8px auto 0;
    padding: 12px 14px;
    background: rgba(255, 250, 243, .08);
    border: 1px solid rgba(255, 235, 194, .16);
    border-radius: 8px;
}

.kb-manage-panel p {
    margin: 0;
    line-height: 1.45;
}

.kb-manage-panel--detail {
    order: 5;
    width: min(520px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 20px auto 42px;
}

.kb-manage-panel--detail summary {
    min-height: 34px;
    padding: 0 12px;
    color: rgba(255, 248, 237, .82);
    background: rgba(255, 248, 237, .08);
    border: 1px solid rgba(255, 235, 194, .18);
    border-radius: 999px;
}

.kb-manage-panel--detail div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
    align-items: center;
    max-width: none;
    padding: 10px;
    text-align: left;
    background: rgba(37, 211, 102, .1);
    border-color: rgba(37, 211, 102, .26);
}

.kb-manage-panel--detail a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    color: #ffffff;
    background: #25d366;
    border: 1px solid rgba(190, 255, 211, .45);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.kb-manage-panel--detail p {
    grid-column: 1;
    color: rgba(255, 248, 237, .66);
    font-size: 12px;
    font-weight: 700;
}

.kb-manage-panel--detail img {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: block;
    width: 92px;
    height: 92px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid rgba(190, 255, 211, .7);
    border-radius: 8px;
}

.kb-manage-action-panel {
    order: 6;
    width: min(860px, calc(100% - (2 * var(--kb-page-gutter))));
    margin: 18px auto 52px;
}

.kb-delete-form .kb-form__hint strong {
    color: #f6bd6d;
}

.kb-entry {
    display: none;
    scroll-margin-top: 110px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
}

.kb-entry.is-active {
    display: grid;
}

.kb-entry--premium {
    border: 1px solid rgba(212, 159, 61, .34);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 219, 126, .18), transparent 34%),
        linear-gradient(135deg, rgba(255, 248, 237, .98), rgba(255, 240, 207, .92));
    box-shadow:
        0 0 0 1px rgba(255, 244, 219, .34),
        0 18px 36px rgba(77, 39, 21, .1);
}

.kb-entry--premium-year {
    border-color: rgba(212, 159, 61, .48);
    box-shadow:
        0 0 0 1px rgba(255, 244, 219, .42),
        0 0 28px rgba(255, 205, 98, .16),
        0 18px 38px rgba(77, 39, 21, .12);
}

.kb-entry__candle {
    position: relative;
    display: grid;
    place-items: start center;
    min-height: 142px;
    padding-top: 20px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 190, 82, .28), transparent 33%),
        linear-gradient(#3b1525, #1c1020);
    border-radius: 8px;
    overflow: hidden;
}

.kb-entry__candle img {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 98px;
    object-fit: contain;
    filter: drop-shadow(0 12px 12px rgba(0, 0, 0, .28));
}

.kb-flame-glow {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 50%;
    width: 48px;
    height: 58px;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 251, 190, .9) 0 8%, rgba(255, 184, 66, .62) 20%, rgba(230, 75, 38, .24) 42%, transparent 70%);
    border-radius: 999px;
    mix-blend-mode: screen;
    transform: translateX(-50%);
    animation: kbFlameGlow 2.4s infinite ease-in-out;
    opacity: calc(.18 + (var(--burn) / 100) * .52);
    pointer-events: none;
}

.kb-entry__body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.kb-entry__body p {
    margin: 0;
    color: #a45141;
    font-size: 12px;
    font-weight: 900;
}

.kb-entry__occasion {
    color: #7b6259;
    font-weight: 900;
}

.kb-entry h3 {
    margin: 0;
    color: #2d1d24;
    font-size: 18px;
}

.kb-entry h3 span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-left: 6px;
    padding: 0 7px;
    color: #6f2433;
    background: #fff2d7;
    border-radius: 999px;
    font-size: 12px;
    vertical-align: middle;
}

.kb-premium-note {
    display: grid;
    gap: 2px;
    padding: 8px 10px;
    color: #5a3919;
    background:
        linear-gradient(135deg, rgba(255, 232, 166, .72), rgba(255, 250, 235, .72)),
        #fff4d8;
    border: 1px solid rgba(212, 159, 61, .38);
    border-radius: 8px;
}

.kb-premium-note strong {
    color: #6b4215;
    font-size: 12px;
    line-height: 1.2;
}

.kb-premium-note span {
    color: #755127;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.kb-entry blockquote {
    margin: 0;
    color: #554640;
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.kb-entry small {
    color: #81706a;
    font-size: 12px;
    line-height: 1.35;
}

.kb-burn {
    display: grid;
    gap: 5px;
}

.kb-burn > span {
    display: block;
    height: 7px;
    overflow: hidden;
    background: #ead8c0;
    border-radius: 999px;
}

.kb-burn > span > b {
    display: block;
    width: var(--burn);
    height: 100%;
    background: linear-gradient(90deg, #d64537, #f2b24d);
    border-radius: inherit;
}

.kb-payment-actions {
    margin-top: 4px;
}

.kb-payment-actions summary {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    color: #ffefc5;
    background: rgba(255, 248, 237, .08);
    border: 1px solid rgba(246, 189, 109, .42);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.kb-payment-actions summary::-webkit-details-marker {
    display: none;
}

.kb-payment-actions div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 8px;
    max-width: 460px;
    padding: 10px;
    background: rgba(255, 248, 237, .055);
    border: 1px solid rgba(255, 235, 194, .14);
    border-radius: 10px;
}

.kb-payment-actions button {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    color: #fff8ed;
    background: linear-gradient(135deg, #7d395b, #4e2446);
    border: 1px solid rgba(255, 235, 194, .22);
    box-shadow: 0 8px 18px rgba(25, 9, 31, .18);
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
}

.kb-payment-actions form:nth-child(2) button {
    color: #32151f;
    background: linear-gradient(135deg, #ffe1a3, #f6bd6d);
    border-color: rgba(255, 235, 194, .42);
    box-shadow: 0 10px 22px rgba(246, 189, 109, .2);
}

.kb-payment-note {
    grid-column: 1 / -1;
    color: rgba(255, 248, 237, .58);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.kb-share-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    align-items: center;
}

.kb-share-actions button {
    min-height: 36px;
    padding: 0 11px;
    color: #fff8ed;
    background: #6f2433;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.kb-share-actions input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 9px;
    color: #6c5a55;
    background: #fff;
    border: 1px solid #ead8c0;
    border-radius: 8px;
    font-size: 12px;
}

.kb-entry-manage-actions {
    margin-top: -2px;
}

.kb-entry-manage-actions summary {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    color: #6f2433;
    background: #fff2d7;
    border: 1px solid #ead8c0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.kb-entry-manage-actions summary::-webkit-details-marker {
    display: none;
}

.kb-entry-manage-actions div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    padding: 10px;
    background: #f5fff7;
    border: 1px solid #bfe7c6;
    border-radius: 8px;
}

.kb-entry-manage-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    color: #ffffff;
    background: #25d366;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.kb-entry-manage-actions small {
    grid-column: 1;
    color: #4d6b52;
}

.kb-entry-manage-actions img {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: block;
    width: 82px;
    height: 82px;
    padding: 5px;
    background: #ffffff;
    border: 1px solid #cfead4;
    border-radius: 8px;
}

@keyframes kbFlameGlow {
    0%, 100% {
        transform: translateX(-50%) scale(.92, .94);
        filter: blur(.2px);
    }
    42% {
        transform: translateX(calc(-50% - 1px)) scale(1.04, 1.08);
        filter: blur(.8px);
    }
    68% {
        transform: translateX(calc(-50% + 1px)) scale(.98, 1.02);
        filter: blur(.35px);
    }
}

@keyframes kbCandleFlicker {
    0%, 100% {
        filter: drop-shadow(0 8px 10px rgba(80, 30, 20, .18)) brightness(1);
    }
    46% {
        filter: drop-shadow(0 8px 15px rgba(255, 153, 49, .28)) brightness(1.08);
    }
    63% {
        filter: drop-shadow(0 7px 12px rgba(255, 205, 92, .2)) brightness(1.03);
    }
}

@keyframes kbNewCandlePulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(92, 255, 127, .22), 0 0 24px rgba(92, 255, 127, .18);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(92, 255, 127, .42), 0 0 42px rgba(92, 255, 127, .42);
    }
}

@keyframes kbStarBlink {
    0%, 72%, 100% {
        opacity: .08;
        transform: scale(1);
    }
    78% {
        opacity: .95;
        transform: scale(1.6);
    }
    84% {
        opacity: .18;
        transform: scale(1);
    }
}

@keyframes kbShootingStar {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) rotate(var(--star-angle, 17deg)) scaleX(.72);
    }
    8% {
        opacity: .95;
    }
    74% {
        opacity: .82;
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--star-travel-x, 420px), var(--star-travel-y, 120px), 0) rotate(var(--star-angle, 17deg)) scaleX(1.1);
    }
}

@keyframes kbMusicNoteBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    35% {
        transform: translateY(-1.5px) rotate(-2deg) scale(1.03);
    }

    62% {
        transform: translateY(.5px) rotate(1deg) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kb-shooting-star {
        display: none;
    }

    .kb-audio-player i {
        animation: none;
    }
}

@media (max-width: 760px) {
    .kb-shell-header {
        gap: 10px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        min-height: 74px;
        padding: 12px 14px;
    }

    .kb-shell-logo {
        max-width: 100%;
        transform: none;
    }

    .kb-shell-logo img {
        width: min(198px, 100%);
        max-height: 44px;
    }

    .kb-shell-menu-button {
        position: fixed;
        top: 16px;
        right: 14px;
        z-index: 1002;
        flex: 0 0 46px;
        justify-content: center;
        width: 46px;
        min-height: 42px;
        padding: 0;
    }

    .kb-shell-menu-button span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .kb-page {
        overflow-x: hidden;
    }

    .kb-alert,
    .kb-create-panel,
    .kb-list,
    .kb-manage-panel {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .kb-hero,
    .kb-main-grid {
        grid-template-columns: 1fr;
    }

    .kb-hero {
        min-height: 340px;
        padding: 94px 18px 91px;
        background-position: center top;
        background-size: auto 100%;
        overflow: hidden;
    }

    .kb-hero__content {
        min-width: 0;
    }

    .kb-hero h1 {
        max-width: 9ch;
        margin-bottom: 7px;
        font-size: 30px;
        line-height: 1.02;
    }

    .kb-hero__content p {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: .07em;
    }

    .kb-hero__content span {
        max-width: 330px;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .kb-hero__candles {
        display: none;
    }

    .kb-page--detail {
        min-height: calc(100vh - 70px);
        padding: 86px 0 30px;
    }

    .kb-featured-entry {
        grid-template-columns: 1fr;
        gap: 14px;
        width: calc(100% - 24px);
        max-width: 520px;
        margin: -28px auto 24px;
        padding: 14px;
        border-radius: 10px;
        scroll-margin-top: 82px;
    }

    .kb-page--detail .kb-featured-entry {
        margin-top: 0;
    }

    .kb-detail-topline {
        width: calc(100% - 24px);
        max-width: 520px;
        margin-bottom: 8px;
    }

    .kb-detail-support {
        grid-template-columns: 1fr;
        gap: 12px;
        width: calc(100% - 24px);
        max-width: 520px;
        margin-top: 14px;
    }

    .kb-detail-support .kb-mini-board-nav {
        width: 100%;
    }

    .kb-mini-board-nav {
        grid-template-columns: 1fr;
        gap: 12px;
        width: calc(100% - 24px);
        margin-top: 14px;
        padding: 12px;
    }

    .kb-mini-board-nav__head {
        display: grid;
        gap: 10px;
    }

    .kb-mini-board-nav__head span {
        display: none;
    }

    .kb-mini-board-nav__actions {
        justify-content: stretch;
    }

    .kb-mini-board-nav__actions a {
        flex: 1;
    }

    .kb-mini-board {
        gap: 3px;
        justify-self: start;
        padding: 8px;
    }

    .kb-mini-board__slot {
        border-radius: 3px;
    }

    .kb-featured-entry__candle {
        min-height: 230px;
        padding: 22px 12px 16px;
    }

    .kb-featured-entry__candle > span {
        width: min(170px, 70%);
        min-height: 210px;
    }

    .kb-featured-entry__candle img {
        width: min(110px, 68%);
        height: 198px;
    }

    .kb-featured-entry__candle i {
        top: 10px;
        width: 66px;
        height: 78px;
    }

    .kb-featured-entry__candle mark {
        left: 10px;
        top: 10px;
        min-height: 24px;
        padding: 0 9px;
        font-size: 10px;
    }

    .kb-featured-entry__body {
        gap: 11px;
        min-width: 0;
        max-width: 100%;
    }

    .kb-featured-share {
        right: 12px;
        bottom: 12px;
    }

    .kb-featured-share div {
        width: min(246px, calc(100vw - 36px));
    }

    .kb-status-share {
        grid-template-columns: 1fr;
        width: calc(100% - 24px);
        margin-top: 12px;
        padding: 12px;
    }

    .kb-status-share--modal {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 14px;
    }

    .kb-status-share--modal .kb-status-share__panel {
        width: min(340px, calc(100vw - 28px));
    }

    .kb-status-share__actions {
        justify-content: stretch;
    }

    .kb-status-share button,
    .kb-status-share a {
        flex: 1 1 auto;
    }

    .kb-status-share__link {
        grid-template-columns: 1fr;
    }

    .kb-status-share canvas {
        width: min(210px, 100%);
    }

    .kb-featured-entry h1 {
        font-size: 30px;
    }

    .kb-featured-entry__body > p {
        font-size: 13px;
    }

    .kb-featured-entry blockquote {
        width: 100%;
        max-width: 24ch;
        padding: 14px 0 14px 14px;
        font-size: 19px;
        white-space: normal;
    }

    .kb-featured-entry__arrow {
        display: grid;
        width: 36px;
        height: 52px;
    }

    .kb-featured-entry__arrow--prev {
        left: 8px;
    }

    .kb-featured-entry__arrow--next {
        right: 8px;
    }

    .kb-featured-entry__arrow span {
        font-size: 34px;
    }

    .kb-featured-entry__mobile-nav {
        display: none;
    }

    .kb-featured-entry__mobile-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 10px;
        color: #fff8ed;
        background: rgba(255, 248, 237, .1);
        border: 1px solid rgba(255, 235, 194, .2);
        border-radius: 8px;
        font-size: 12px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
    }

    .kb-featured-entry__all-link {
        position: static;
        justify-self: end;
        order: -2;
        min-height: 34px;
        font-size: 12px;
    }

    .kb-featured-tools {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .kb-list {
        margin-top: -53px;
        margin-bottom: 24px;
    }

    .kb-board-topline {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
        padding: 0;
    }

    .kb-board-title {
        flex: 1 1 auto;
    }

    .kb-board-title h1 {
        font-size: 13px;
    }

    .kb-board-title p {
        max-width: 22ch;
        font-size: 10px;
        line-height: 1.25;
    }

    .kb-board-topline .kb-audio-player {
        flex: 0 0 auto;
        gap: 6px;
        justify-content: flex-end;
        justify-self: auto;
    }

    .kb-board-topline .kb-audio-player > span {
        font-size: 10px;
    }

    .kb-board-topline .kb-audio-player button {
        min-width: 54px;
        min-height: 28px;
        padding: 0 8px;
        font-size: 11px;
    }

    .kb-featured-entry ~ .kb-list {
        margin-top: 0;
    }

    .kb-section-head {
        margin-bottom: 10px;
    }

    .kb-section-head h2 {
        font-size: 28px;
    }

    .kb-candle-board-shell {
        padding: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)),
            rgba(5, 4, 14, .72);
        border-radius: 12px;
    }

    .kb-entry {
        grid-template-columns: 78px minmax(0, 1fr);
        padding: 12px;
    }

    .kb-candle-board--desktop {
        display: none;
    }

    .kb-candle-board--mobile {
        display: grid;
        grid-template-columns: 18px repeat(5, minmax(0, 1fr));
        min-width: 0;
        gap: 4px;
        padding: 8px;
        background: linear-gradient(135deg, rgba(18, 10, 24, .96) 0%, rgba(4, 4, 15, .98) 100%);
    }

    .kb-board-axis {
        min-height: 16px;
        font-size: 9px;
    }

    .kb-board-axis--letter {
        min-height: 70px;
        border-radius: 5px;
    }

    .kb-board-axis--number {
        border-radius: 6px;
    }

    .kb-candle-slot {
        min-height: 70px;
        padding: 5px 2px 8px;
    }

    .kb-candle-slot > span {
        margin-top: 15px;
    }

    .kb-candle-slot img {
        width: 15px;
        height: 25px;
    }

    .kb-candle-slot i {
        top: 6px;
        width: 20px;
        height: 22px;
    }

    .kb-candle-slot--tall i {
        top: 3px;
    }

    .kb-candle-slot b {
        font-size: 8px;
    }

    .kb-candle-slot small,
    .kb-candle-slot em {
        font-size: 8px;
    }

    .kb-candle-slot--lit small {
        min-height: 18px;
        margin-top: -1px;
        margin-bottom: 6px;
    }

    .kb-candle-slot--lit em {
        top: 3px;
        right: 3px;
        max-width: calc(100% - 6px);
        padding: 1px 3px;
        font-size: 6px;
    }

    .kb-candle-slot--premium em {
        display: none;
    }

    .kb-candle-slot mark {
        top: 2px;
        left: 2px;
        min-width: 20px;
        height: 13px;
        padding: 0 3px;
        font-size: 6px;
    }

    .kb-candle-slot__thoughts {
        top: 17px;
        left: 2px;
        min-width: 18px;
        height: 12px;
        padding: 0 3px;
        font-size: 6px;
    }

    .kb-form,
    .kb-code-box {
        min-width: 0;
        padding: 16px;
    }

    .kb-create-panel {
        margin-bottom: 36px;
    }

    .kb-manage-panel,
    .kb-manage-action-panel {
        margin-top: 20px;
        margin-bottom: 48px;
    }

    .kb-manage-panel--detail div {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kb-manage-panel--detail p {
        grid-column: auto;
    }

    .kb-manage-panel--detail img {
        grid-row: auto;
        grid-column: auto;
        width: 96px;
        height: 96px;
        justify-self: center;
    }

    .kb-form-actions {
        gap: 10px;
        margin-top: 8px;
    }

    .kb-payment-actions div {
        grid-template-columns: 1fr;
    }

    .kb-create-panel summary {
        display: flex;
        width: 100%;
    }

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

    .kb-candle-picker span {
        min-height: 106px;
        min-width: 0;
        padding: 8px 5px;
    }

    .kb-entry__candle {
        min-height: 126px;
    }

    .kb-plans {
        grid-template-columns: 1fr;
    }

    .kb-whatsapp-panel {
        grid-template-columns: 1fr;
    }

    .kb-whatsapp-qr {
        display: none;
    }

    .kb-share-actions {
        grid-template-columns: 1fr;
    }

    .kb-share-actions input {
        display: none;
    }

    .kb-entry-manage-actions div {
        grid-template-columns: 1fr;
    }

    .kb-entry-manage-actions img {
        grid-row: auto;
        grid-column: auto;
        width: 96px;
        height: 96px;
        justify-self: center;
    }

    .kb-thought-code-panel {
        grid-template-columns: 1fr;
    }

    .kb-thought-code-panel a {
        width: 100%;
    }

    .kb-thought-code-panel img {
        width: 96px;
        height: 96px;
        justify-self: center;
    }

    .kb-thought-owner div {
        grid-template-columns: 1fr;
    }

    .kb-thought-owner img {
        grid-row: auto;
        grid-column: auto;
        width: 96px;
        height: 96px;
        justify-self: center;
    }
}
