:root {
    --wk-gold:    #e8a020;
    --wk-gold2:   #f5c842;
    --wk-amber:   #f97316;
    --wk-emerald: #34d399;
    --wk-blue:    #60a5fa;
}
@keyframes wk-lava-flow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes wk-brand-glow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(232, 160, 32, 0.06));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(245, 200, 66, 0.18))
                drop-shadow(0 0 14px rgba(249, 115, 22, 0.08));
    }
}
.wk-brand-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(
        135deg,
        #ffe066 0%,
        #f5c842 12%,
        #f97316 28%,
        #ef4400 38%,
        #f97316 50%,
        #f5c842 62%,
        #e8a020 72%,
        #f5c842 85%,
        #ffe066 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    animation:
        wk-lava-flow  5s ease-in-out infinite,
        wk-brand-glow 3s ease-in-out infinite;
    position: relative;
}
.wk-brand-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: capitalize;
    color: #bdc7d8;
    margin-top: 0.5rem;
    padding-bottom: 0;
    position: relative;
}
.locked {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.active-section {
    border-color: rgba(232, 160, 32, 0.5) !important;
    box-shadow: 0 0 0 1px rgba(232, 160, 32, 0.15);
}
.item-icon {
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}
.lvl-tag {
    display: inline-block;
    background-color: #333;
    color: var(--wk-gold);
    font-size: 12px;
    font-weight: bold;
    padding: 1px 4px;
    border-radius: 4px;
    border: 1px solid #444;
    margin-top: 2px;
}
tbody tr:hover {
    box-shadow: inset 0 0 15px rgba(232, 160, 32, 0.05);
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
.input-error {
    animation: shake 0.4s ease;
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.animate-spin { animation: spin 0.8s linear infinite; }
#errorMsg { animation: fadeInDown 0.3s ease; }
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.alt-recipe  { display: none; }
.show-alts   { display: table-row; animation: slideDown 0.25s ease; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.alt-recipe.show-alts td:first-child { padding-left: 2.5rem; }
td.col-crafts { border-right: 1px solid rgba(232, 160, 32, 0.15) !important; }
.icon-result-table {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}
.group:hover .icon-result-table { transform: scale(1.06); }
.icon-ing-table {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 9px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}
.group:hover .icon-ing-table { transform: scale(1.08); }
.qty-badge-table {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--wk-emerald);
    background: rgba(52, 211, 153, 0.1);
    padding: 0.15em 0.55em;
    border-radius: 5px;
    border: 1px solid rgba(52, 211, 153, 0.25);
    letter-spacing: 0.02em;
}
.lvl-badge-table {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    background: #1e1e1e;
    padding: 0.15em 0.5em;
    border-radius: 5px;
    border: 1px solid #2e2e2e;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.wk-fab {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    isolation: isolate;
}
.wk-fab.guide-open {
    transform: translateX(calc(min(480px, 95vw) + 1rem));
}
.wk-fab-tooltip {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wk-gold);
    background: #0e0e0e;
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 7px;
    padding: 0.4rem 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}
.wk-fab:hover .wk-fab-tooltip { opacity: 1; transform: translateY(0); }
.wk-fab-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1.5px solid rgba(232, 160, 32, 0.5);
    background: linear-gradient(145deg, #1e1a12, #141010);
    box-shadow:
        0 0 0 5px rgba(232, 160, 32, 0.08),
        0 10px 36px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(232, 160, 32, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: wk-breathe 4s ease-in-out infinite;
}
.wk-fab-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(232, 160, 32, 0.2), transparent 60%);
    pointer-events: none;
}
.wk-fab-btn:hover {
    transform: scale(1.1) translateY(-2px);
    animation: none;
    border-color: rgba(232, 160, 32, 0.95);
    box-shadow:
        0 0 0 8px rgba(232, 160, 32, 0.12),
        0 0 36px rgba(232, 160, 32, 0.45),
        0 14px 44px rgba(0, 0, 0, 0.7);
}
.wk-fab-btn:active { transform: scale(0.96); }
@keyframes wk-breathe {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(232, 160, 32, 0.08), 0 10px 36px rgba(0, 0, 0, 0.65);
        border-color: rgba(232, 160, 32, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(232, 160, 32, 0.14), 0 0 26px rgba(232, 160, 32, 0.3), 0 10px 36px rgba(0, 0, 0, 0.65);
        border-color: rgba(232, 160, 32, 0.8);
    }
}
.wk-fab-icon-rune  { transition: opacity 0.2s, transform 0.2s; line-height: 1; }
.wk-fab-icon-close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); transition: opacity 0.2s, transform 0.2s; }
.wk-fab-btn.is-open .wk-fab-icon-rune  { opacity: 0; transform: rotate(90deg) scale(0.6); }
.wk-fab-btn.is-open .wk-fab-icon-close { opacity: 1; transform: rotate(0deg) scale(1); }
.wk-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.wk-overlay.visible { opacity: 1; pointer-events: all; }
.wk-drawer {
    position: fixed; top: 0; left: 0;
    height: 100dvh; width: min(480px, 95vw);
    z-index: 999;
    background: linear-gradient(180deg, #141414 0%, #111111 100%);
    border-left: 1px solid rgba(232, 160, 32, 0.2);
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.7);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; overflow: hidden;
}
.wk-drawer.visible { transform: translateX(0); }
.wk-drawer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--wk-gold), var(--wk-amber), transparent);
    opacity: 0.7;
}
.wk-drawer-header {
    padding: 1.5rem 1.5rem 1.2rem;
    border-bottom: 1px solid rgba(232, 160, 32, 0.15);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.wk-drawer-header-left { display: flex; align-items: center; gap: 0.85rem; }
.wk-drawer-rune {
    font-size: 1.6rem; color: var(--wk-gold);
    animation: wk-rune-pulse 3s ease-in-out infinite;
}
@keyframes wk-rune-pulse {
    0%, 100% { text-shadow: 0 0 14px rgba(232, 160, 32, 0.6); }
    50%       { text-shadow: 0 0 28px rgba(245, 200, 66, 1), 0 0 55px rgba(232, 160, 32, 0.35); }
}
.wk-drawer-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(135deg, var(--wk-gold2), var(--wk-amber), var(--wk-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wk-lava-flow 6s ease-in-out infinite;
}
.wk-drawer-subtitle {
    font-size: 0.68rem; color: #6b7280;
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px;
}
.wk-drawer-close {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: #6b7280; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.wk-drawer-close:hover { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.3); color: #f87171; }
.wk-drawer-body {
    flex: 1; overflow-y: auto; padding: 1.5rem;
    scrollbar-width: thin; scrollbar-color: rgba(232, 160, 32, 0.3) transparent;
}
.wk-drawer-body::-webkit-scrollbar { width: 4px; }
.wk-drawer-body::-webkit-scrollbar-thumb { background: rgba(232, 160, 32, 0.3); border-radius: 2px; }
.wk-tabs {
    display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(232, 160, 32, 0.1);
    border-radius: 10px; padding: 0.3rem;
}
.wk-tab {
    flex: 1; padding: 0.65rem 0.5rem; border-radius: 7px; border: none;
    background: transparent; color: #6b7280;
    font-family: 'IBM Plex Sans', sans-serif; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.03em; text-transform: uppercase; cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.wk-tab.active {
    background: linear-gradient(135deg, rgba(232,160,32,0.18), rgba(249,115,22,0.12));
    color: var(--wk-gold2); border: 1px solid rgba(232,160,32,0.25);
}
.wk-tab:not(.active):hover { color: #9ca3af; background: rgba(255,255,255,0.04); }
.wk-tab-panel { display: none; }
.wk-tab-panel.active { display: block; animation: wk-fadein 0.25s ease; }
@keyframes wk-fadein {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.wk-section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wk-gold);
    margin-bottom: 1.1rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-shadow: 0 0 12px rgba(232, 160, 32, 0.4);
}
.wk-section-label::before { content: '◈'; font-size: 0.65rem; color: rgba(232, 160, 32, 0.6); }
.wk-section-label::after  { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, rgba(232, 160, 32, 0.3), transparent); }
.wk-card {
    position: relative; background: linear-gradient(160deg, #1e1e1e, #161616);
    border: 1px solid rgba(232, 160, 32, 0.18); border-radius: 12px; padding: 1.2rem;
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    margin-bottom: 0.9rem; cursor: default;
}
.wk-card::after {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 100px; height: 100px; border-radius: 50%; pointer-events: none;
}
.wk-card[data-glow="gold"]::after    { background: radial-gradient(circle, rgba(232,160,32,0.18) 0%, transparent 70%); }
.wk-card[data-glow="emerald"]::after { background: radial-gradient(circle, rgba(52,211,153,0.15) 0%, transparent 70%); }
.wk-card[data-glow="blue"]::after    { background: radial-gradient(circle, rgba(96,165,250,0.15) 0%, transparent 70%); }
.wk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,160,32,0.3);
    border-color: rgba(232, 160, 32, 0.4);
}
.wk-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; font-size: 1.45rem; }
.wk-icon-gold    { background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3); }
.wk-icon-emerald { background: rgba(52,211,153,0.10);  border: 1px solid rgba(52,211,153,0.3); }
.wk-icon-blue    { background: rgba(96,165,250,0.10);  border: 1px solid rgba(96,165,250,0.3); }
.wk-card-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.3rem; }
.wk-label-gold    { color: var(--wk-gold); }
.wk-label-emerald { color: var(--wk-emerald); }
.wk-label-blue    { color: var(--wk-blue); }
.wk-card-title { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700; color: #f0f0f0; margin-bottom: 0.6rem; letter-spacing: 0.04em; }
.wk-card-text  { font-size: 0.94rem; line-height: 1.75; color: #c8cdd6; font-family: 'IBM Plex Sans', sans-serif; }
.wk-card-text strong { color: #e8ecf2; font-weight: 600; }
.wk-pill { display: inline-flex; font-size: 0.79rem; font-weight: 700; padding: 0.16em 0.58em; border-radius: 5px; vertical-align: middle; white-space: nowrap; }
.wk-pill-gold    { background: rgba(232,160,32,0.12); color: var(--wk-gold2);   border: 1px solid rgba(232,160,32,0.25); }
.wk-pill-emerald { background: rgba(52,211,153,0.10);  color: var(--wk-emerald); border: 1px solid rgba(52,211,153,0.25); }
.wk-pill-blue    { background: rgba(96,165,250,0.10);  color: var(--wk-blue);    border: 1px solid rgba(96,165,250,0.25); }
.wk-flow {
    background: linear-gradient(145deg, #181818, #141414);
    border: 1px solid rgba(232, 160, 32, 0.14); border-radius: 12px; padding: 1.3rem;
    position: relative; overflow: hidden; margin-bottom: 0.9rem;
}
.wk-flow::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--wk-gold), var(--wk-amber), transparent);
    opacity: 0.5;
}
.wk-flow-title {
    font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.13em; text-transform: uppercase; color: var(--wk-gold);
    margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem;
}
.wk-steps { display: flex; flex-direction: column; }
.wk-step  { display: flex; gap: 0.9rem; align-items: flex-start; position: relative; }
.wk-step:not(:last-child)::after {
    content: ''; position: absolute; left: 19px; top: 40px; bottom: -4px; width: 1px;
    background: linear-gradient(to bottom, rgba(232, 160, 32, 0.3), transparent);
}
.wk-step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #2a2520, #1e1a14);
    border: 1.5px solid rgba(232, 160, 32, 0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; color: var(--wk-gold);
    flex-shrink: 0; transition: box-shadow 0.25s, border-color 0.25s;
}
.wk-step:hover .wk-step-num { border-color: rgba(232,160,32,0.8); box-shadow: 0 0 16px rgba(232,160,32,0.35); }
.wk-step-body { padding: 0.25rem 0 1.2rem; flex: 1; }
.wk-step-title { font-size: 0.97rem; font-weight: 700; color: #e5e7eb; margin-bottom: 0.3rem; font-family: 'IBM Plex Sans', sans-serif; }
.wk-step-desc  { font-size: 0.9rem; color: #6b7280; line-height: 1.7; font-family: 'IBM Plex Sans', sans-serif; }
.wk-step-desc strong { color: #9ca3af; }
.wk-tip {
    margin-top: 1.2rem; background: rgba(232, 160, 32, 0.05);
    border: 1px solid rgba(232,160,32,0.2); border-left: 3px solid var(--wk-gold);
    border-radius: 8px; padding: 0.9rem 1.1rem; display: flex; gap: 0.7rem; align-items: flex-start;
}
.wk-tip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
.wk-tip-text { font-size: 0.9rem; color: #c8cdd6; line-height: 1.7; font-family: 'IBM Plex Sans', sans-serif; }
.wk-tip-text strong { color: var(--wk-gold2); }
.wk-lang-dropdown {
    position: relative;
    min-width: 160px;
}
.wk-lang-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #2a2a2a;
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.wk-lang-btn:hover,
.wk-lang-btn:focus {
    background: #333;
    border-color: rgba(232, 160, 32, 0.6);
    box-shadow: 0 0 0 2px rgba(232, 160, 32, 0.12);
}
.wk-lang-dropdown.open .wk-lang-btn {
    border-color: rgba(232, 160, 32, 0.7);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #333;
}
.wk-lang-flag {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}
.wk-lang-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f5c842;
    flex: 1;
    text-align: left;
}
.wk-lang-chevron {
    color: rgba(232, 160, 32, 0.6);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.wk-lang-dropdown.open .wk-lang-chevron {
    transform: rotate(180deg);
}
.wk-lang-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #1e1e1e;
    border: 1px solid rgba(232, 160, 32, 0.35);
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    z-index: 200;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    padding: 0.25rem 0;
    animation: wk-fadein 0.15s ease;
}
.wk-lang-dropdown.open .wk-lang-list {
    display: block;
}
.wk-lang-opt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
    list-style: none;
}
.wk-lang-opt:hover {
    background: rgba(232, 160, 32, 0.08);
}
.wk-lang-opt.active {
    background: rgba(232, 160, 32, 0.12);
}
.wk-lang-opt span:first-child {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}
.wk-lang-opt span:last-child {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e5e7eb;
}
.wk-lang-opt.active span:last-child {
    color: #f5c842;
}
.wk-site-footer {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-top: auto;
    padding-top: 2rem;
}
@media (min-width: 768px) {
    .wk-site-footer {
        width: calc(100% + 4rem);
        margin-left: -2rem;
    }
}
.wk-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 1.5rem;
    background: linear-gradient(145deg, #161616, #121212);
    border-top: 1px solid rgba(232, 160, 32, 0.18);
    border-radius: 0;
    padding: 1.2rem clamp(1.2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}
.wk-footer-inner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--wk-gold), var(--wk-amber), var(--wk-gold), transparent);
    opacity: 0.5;
}
.wk-footer-logo {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, #f5c842, #f97316, #e8a020);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
    animation: wk-lava-flow 6s ease-in-out infinite;
}
.wk-footer-tagline {
    font-size: 0.62rem;
    color: #6b7280;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}
.wk-footer-site-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--wk-gold);
    text-decoration: none;
    border: 1px solid rgba(232, 160, 32, 0.3);
    background: rgba(232, 160, 32, 0.06);
    border-radius: 6px;
    padding: 0.28rem 0.65rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.wk-footer-site-link:hover {
    background: rgba(232, 160, 32, 0.14);
    border-color: rgba(232, 160, 32, 0.6);
    color: var(--wk-gold2);
}
.wk-footer-section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wk-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(232, 160, 32, 0.3);
}
.wk-footer-credit-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    color: #c8cdd6;
    font-size: 0.75rem;
}
.wk-footer-discord-icon {
    color: #5865f2;
    flex-shrink: 0;
}
.wk-footer-creator-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #e8ecf2;
}
.wk-footer-contact {
    font-size: 0.68rem;
    color: #9ca3af;
}
.wk-footer-contact strong {
    color: #c8cdd6;
}
.wk-footer-contact svg {
    color: var(--wk-emerald);
    flex-shrink: 0;
}
.wk-footer-year {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: #4b5563;
    letter-spacing: 0.1em;
    margin-top: 0.4rem;
}
.wk-footer-legal {
    font-size: 0.68rem;
    line-height: 1.55;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}
.wk-footer-legal-small {
    font-size: 0.7rem;
    color: #4b5563;
    font-style: italic;
}
.wk-footer-ankama-link {
    color: var(--wk-gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.wk-footer-ankama-link:hover { color: var(--wk-gold2); }
.wk-footer-bottom {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #374151;
    padding: 0.6rem clamp(1rem, 4vw, 3rem);
    background: #0e0e0e;
}
@media (max-width: 768px) {
    .wk-footer-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 1.2rem;
    }
}
html, body { margin: 0; padding-bottom: 0 !important; }
body::after { display: none; }
@keyframes wk-hint-enter {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes wk-hint-leave {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); pointer-events: none; }
}
@keyframes wk-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
@keyframes wk-hint-lava {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.wk-fab-hint {
    position: fixed;
    width: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    pointer-events: none;
    z-index: 1001;
    animation: wk-hint-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}
.wk-fab-hint.hiding {
    animation: wk-hint-leave 0.5s ease forwards;
}
.wk-fab-hint.gone {
    display: none;
}
.wk-fab-hint-text {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    color: transparent;
    background: linear-gradient(270deg, #f5c842, #f97316, #e8a020, #f5c842);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: wk-hint-lava 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}
.wk-fab-hint-arrow {
    width: 30px;
    height: 44px;
    animation: wk-arrow-bounce 1.4s ease-in-out 1.8s infinite;
    filter: drop-shadow(0 0 7px rgba(245, 200, 66, 0.6));
}
.wk-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 1rem; 
}
.wk-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.wk-toggle-track {
    position: relative;
    width: 48px;
    height: 26px;
    background: #333;
    border-radius: 99px;
    border: 1px solid rgba(232, 160, 32, 0.2);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.wk-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #666;
    border-radius: 50%;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.28s ease,
                box-shadow 0.28s ease;
}
.wk-toggle input:checked + .wk-toggle-track {
    background: linear-gradient(135deg, #e8a020, #f97316);
    border-color: rgba(232, 160, 32, 0.6);
    box-shadow: 0 0 10px rgba(232, 160, 32, 0.35);
}
.wk-toggle input:checked + .wk-toggle-track .wk-toggle-thumb {
    transform: translateX(22px);
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.wk-toggle:hover .wk-toggle-track {
    border-color: rgba(232, 160, 32, 0.5);
}
.wk-toggle:hover input:checked + .wk-toggle-track {
    box-shadow: 0 0 14px rgba(232, 160, 32, 0.5);
}