#bg-video {
            position: fixed;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            object-fit: cover;
            transform: translate(-50%, -50%);
        }

        .status-container {
            position: fixed;
            top: 25px;
            right: 25px;
            z-index: 100;
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 20px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 4px;
            font-family: 'Marcellus SC', serif;
            display: flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        .audio-controls {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 100;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 15px;
            backdrop-filter: blur(5px);
        }
        .volume-slider {
            width: 80px;
            height: 4px;
            accent-color: #ffd700;
            cursor: pointer;
            opacity: 0.7;
        }
        .mute-btn {
            color: #ffd700;
            cursor: pointer;
            font-size: 18px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #555;
        }

        .pulse {
            animation: pulse-animation 2s infinite;
        }

        @keyframes pulse-animation {
            0% { box-shadow: 0 0 0 0px rgba(46, 204, 113, 0.4); }
            100% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
        }

        .logo-subtext-custom {
            color: #ffffff !important;
            font-size: 3.5rem !important;
            letter-spacing: 0.6em;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
            margin-top: -5px;
            font-weight: 900;
            display: block;
        }

        .register-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: white;
            padding: 12px;
            width: 100%;
            margin-bottom: 15px;
            font-family: 'Marcellus', serif;
            outline: none;
            transition: all 0.3s;
            text-align: center;
        }
        .register-input:focus {
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.1);
        }
        .register-label {
            display: block;
            text-align: left;
            font-family: 'Marcellus SC', serif;
            font-size: 10px;
            color: rgba(255, 215, 0, 0.6);
            letter-spacing: 2px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .captcha-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            transform: scale(0.9);
        }

        .staff-section {
            font-family: 'Marcellus SC', serif;
            margin-bottom: 20px;
        }
        .staff-member {
            display: inline-block;
            margin: 0 20px;
        }
        .staff-role {
            display: block;
            font-size: 9px;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .staff-name {
            display: block;
            font-size: 14px;
            letter-spacing: 2px;
            color: #ffd700;
            font-weight: bold;
        }

        .download-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.1);
            padding: 20px;
            border-radius: 4px;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .download-item:hover {
            border-color: rgba(255, 215, 0, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }
        .download-img {
            width: 80px;
            height: 80px;
            cursor: pointer;
            transition: transform 0.2s;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
        }
        .download-img:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .logo-subtext-custom { font-size: 2rem !important; }
            .status-container { top: 10px; right: 10px; padding: 8px 12px; }
        }

/* ======================================================================
   ABOUT US BUTTON
   ====================================================================== */
.btn-about {
    background: rgba(107, 70, 168, 0.15);
    border-color: #8a5cd6;
    color: #d9c8f5;
}
.btn-about:hover {
    background: rgba(107, 70, 168, 0.4);
    border-color: #b794f4;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(138, 92, 214, 0.5);
}


/* ======================================================================
   WELCOME OVERLAY
   ====================================================================== */
#welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 4, 2, 0.35);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    opacity: 1;
    transition: opacity 0.6s ease;
    padding: 20px;
}
#welcome-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}
#welcome-overlay.hidden-permanent {
    display: none;
}
.welcome-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(160deg, rgba(20, 17, 12, 0.55), rgba(10, 9, 6, 0.55));
    border: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 25px 60px -15px rgba(0,0,0,0.7), 0 0 80px -10px rgba(197,160,89,0.15) inset;
    padding: 48px 36px;
    text-align: center;
    border-radius: 10px;
    animation: welcomeIn 0.7s cubic-bezier(.16,.84,.44,1);
}
@keyframes welcomeIn {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.welcome-box .window-corner {
    width: 26px;
    height: 26px;
}
.welcome-title {
    font-family: 'Marcellus SC', serif;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 0%, var(--l2-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    line-height: 1.5;
}
.welcome-sub {
    color: rgba(255,255,255,0.5);
    font-family: 'Marcellus', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.discord-pulse-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
.discord-pulse {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.discord-pulse .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(88, 101, 242, 0.6);
    animation: discordRing 2.2s ease-out infinite;
}
.discord-pulse .ring:nth-child(2) { animation-delay: 0.7s; }
.discord-pulse .ring:nth-child(3) { animation-delay: 1.4s; }
@keyframes discordRing {
    0% { transform: scale(0.7); opacity: 0.9; }
    100% { transform: scale(1.9); opacity: 0; }
}
.discord-pulse svg {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 6px rgba(88,101,242,0.7));
    animation: discordBob 2.4s ease-in-out infinite;
}
@keyframes discordBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.welcome-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}
@media (min-width: 480px) {
    .welcome-buttons { flex-direction: row; }
}
.welcome-btn {
    flex: 1;
    padding: 13px 18px;
    font-family: 'Marcellus', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.welcome-btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752c4);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}
.welcome-btn-discord:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(88,101,242,0.6);
}
.welcome-btn-site {
    background: transparent;
    color: var(--l2-gold-light);
    border: 1px solid rgba(197,160,89,0.5);
}
.welcome-btn-site:hover {
    background: rgba(197,160,89,0.12);
    border-color: rgba(197,160,89,0.9);
    transform: translateY(-2px);
}
.welcome-close {
    position: absolute;
    top: 14px;
    right: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    background: none;
    border: none;
}
.welcome-close:hover { color: #fff; }

/* ======================================================================
   VIEW TRANSITION ANIMATION (Create Account / Downloads / Home)
   ====================================================================== */
#home-view, #register-view, #forgot-view, #download-view {
    will-change: transform, opacity, filter;
}

.view-enter {
    animation: viewReveal 0.75s cubic-bezier(.19,1,.22,1) both;
}

@keyframes viewReveal {
    0%   { opacity: 0; transform: translateY(28px) scale(0.94); filter: blur(8px); }
    55%  { filter: blur(0px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Staggered cascade for headings + form fields inside the entering view */
.view-enter > h2,
.view-enter form > *,
.view-enter .grid > *,
.view-enter .about-content > * {
    opacity: 0;
    animation: viewChildIn 0.55s ease both;
}
.view-enter > h2 { animation-delay: 0.06s; }
.view-enter form > *:nth-child(1),  .view-enter .grid > *:nth-child(1),  .view-enter .about-content > *:nth-child(1)  { animation-delay: 0.14s; }
.view-enter form > *:nth-child(2),  .view-enter .grid > *:nth-child(2),  .view-enter .about-content > *:nth-child(2)  { animation-delay: 0.20s; }
.view-enter form > *:nth-child(3),  .view-enter .grid > *:nth-child(3),  .view-enter .about-content > *:nth-child(3)  { animation-delay: 0.26s; }
.view-enter form > *:nth-child(4),  .view-enter .about-content > *:nth-child(4)  { animation-delay: 0.32s; }
.view-enter form > *:nth-child(5),  .view-enter .about-content > *:nth-child(5)  { animation-delay: 0.38s; }
.view-enter form > *:nth-child(6),  .view-enter .about-content > *:nth-child(6)  { animation-delay: 0.44s; }
.view-enter form > *:nth-child(7),  .view-enter .about-content > *:nth-child(7)  { animation-delay: 0.50s; }
.view-enter form > *:nth-child(8)  { animation-delay: 0.54s; }
.view-enter form > *:nth-child(9)  { animation-delay: 0.60s; }
.view-enter form > *:nth-child(10) { animation-delay: 0.66s; }
.view-enter form > *:nth-child(11) { animation-delay: 0.72s; }

@keyframes viewChildIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Glowing energy sweep that flashes across the window when a view opens */
.l2-window { overflow: hidden; }
.l2-window .energy-sweep {
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(197, 160, 89, 0) 35%,
        rgba(197, 160, 89, 0.18) 50%,
        rgba(255, 255, 255, 0.35) 52%,
        rgba(197, 160, 89, 0.18) 54%,
        rgba(197, 160, 89, 0) 65%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 6;
    opacity: 0;
}
.l2-window .energy-sweep.sweep-play {
    animation: sweepAcross 0.9s cubic-bezier(.19,1,.22,1) both;
}
@keyframes sweepAcross {
    0%   { left: -60%; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

/* Corner accents pulse briefly on view change */
.corner-pulse {
    animation: cornerPulse 0.9s ease both;
}
@keyframes cornerPulse {
    0%   { opacity: 0.3; box-shadow: 0 0 0px rgba(197,160,89,0); }
    40%  { opacity: 1;   box-shadow: 0 0 14px rgba(197,160,89,0.9); }
    100% { opacity: 0.7; box-shadow: 0 0 0px rgba(197,160,89,0); }
}

/* ======================================================================
   CREATE ACCOUNT - COMING SOON BLOCK
   ====================================================================== */
.reg-coming-soon {
    padding: 6px 0 28px;
}
.reg-coming-soon .sleep-pc {
    position: relative;
    width: 150px;
    margin: 0 auto 26px;
}
.reg-coming-soon .sleep-pc svg {
    width: 100%;
    height: auto;
    display: block;
}
.reg-coming-soon .pc-screen-glow {
    animation: pcGlow 3.2s ease-in-out infinite;
    transform-origin: center;
}
@keyframes pcGlow {
    0%, 100% { opacity: .18; }
    50%      { opacity: .55; }
}
.reg-coming-soon .zzz {
    position: absolute;
    top: -4px;
    right: 2px;
    pointer-events: none;
}
.reg-coming-soon .zzz span {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    opacity: 0;
    font-family: 'Marcellus SC', serif;
    font-weight: 700;
    color: var(--l2-gold-light);
    animation: zFloat 3.6s ease-in infinite;
}
.reg-coming-soon .zzz span:nth-child(1) { font-size: 12px; animation-delay: 0s; }
.reg-coming-soon .zzz span:nth-child(2) { font-size: 16px; animation-delay: .7s; right: -8px; }
.reg-coming-soon .zzz span:nth-child(3) { font-size: 20px; animation-delay: 1.4s; right: -18px; }
@keyframes zFloat {
    0%   { opacity: 0; transform: translate(0,0) scale(.55); }
    15%  { opacity: 1; }
    65%  { opacity: .55; }
    100% { opacity: 0; transform: translate(16px,-34px) scale(1.15); }
}
.reg-coming-soon .cs-title {
    font-family: 'Marcellus SC', serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}
.reg-coming-soon .cs-sub {
    color: var(--l2-gold-light);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 28px;
}

/* Fold the coming-soon block into the existing staggered view-enter animation */
.view-enter .reg-coming-soon > * {
    opacity: 0;
    animation: viewChildIn 0.55s ease both;
}
.view-enter .reg-coming-soon > *:nth-child(1) { animation-delay: 0.14s; }
.view-enter .reg-coming-soon > *:nth-child(2) { animation-delay: 0.22s; }
.view-enter .reg-coming-soon > *:nth-child(3) { animation-delay: 0.30s; }
.view-enter .reg-coming-soon > *:nth-child(4) { animation-delay: 0.38s; }

/* ======================================================================
   MINIMUM SYSTEM REQUIREMENTS MODAL
   ====================================================================== */
#sysreq-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 4, 2, 0.78);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
#sysreq-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
#sysreq-overlay .sysreq-box {
    position: relative;
    transform: translateY(18px) scale(.97);
    opacity: 0;
    transition: all 0.35s cubic-bezier(.16,.84,.44,1);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
}
#sysreq-overlay.active .sysreq-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.sysreq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 640px) {
    .sysreq-grid { grid-template-columns: 1fr 1fr; }
}
.sysreq-col h3 {
    font-family: 'Marcellus SC', serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
    color: var(--l2-gold-light);
}
.sysreq-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.sysreq-row:last-child { border-bottom: none; }
.sysreq-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--l2-gold-light);
    animation: sysIconPulse 2.6s ease-in-out infinite;
}
.sysreq-icon svg { width: 100%; height: 100%; display: block; }
@keyframes sysIconPulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.1); }
}
.sysreq-label {
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .5;
    margin-bottom: 2px;
}
.sysreq-value {
    font-size: 12px;
    color: rgba(255,255,255,.85);
    line-height: 1.4;
}

/* ======================================================================
   DOWNLOADS - COMING SOON BLOCK
   ====================================================================== */
.dl-coming-soon {
    padding: 6px 0 8px;
}
.dl-coming-soon .dl-icon-wrap {
    width: 96px;
    margin: 0 auto 6px;
}
.dl-coming-soon .dl-icon-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}
.dl-coming-soon .dl-arrow {
    animation: dlArrowBounce 1.6s ease-in-out infinite;
    transform-origin: center;
}
@keyframes dlArrowBounce {
    0%, 100% { transform: translateY(0);   opacity: 1; }
    50%      { transform: translateY(7px); opacity: .55; }
}
.dl-coming-soon .dl-progress-track {
    position: relative;
    width: 200px;
    height: 6px;
    margin: 22px auto 26px;
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}
.dl-coming-soon .dl-progress-fill {
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--l2-gold-light), transparent);
    animation: dlSweep 1.8s ease-in-out infinite;
}
@keyframes dlSweep {
    0%   { left: -40%; }
    100% { left: 100%; }
}
.dl-coming-soon .cs-title {
    font-family: 'Marcellus SC', serif;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}
.dl-coming-soon .cs-sub {
    color: var(--l2-gold-light);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 28px;
}

/* Fold the downloads coming-soon block into the existing staggered view-enter animation */
.view-enter .dl-coming-soon > * {
    opacity: 0;
    animation: viewChildIn 0.55s ease both;
}
.view-enter .dl-coming-soon > *:nth-child(1) { animation-delay: 0.14s; }
.view-enter .dl-coming-soon > *:nth-child(2) { animation-delay: 0.22s; }
.view-enter .dl-coming-soon > *:nth-child(3) { animation-delay: 0.30s; }
.view-enter .dl-coming-soon > *:nth-child(4) { animation-delay: 0.38s; }
.view-enter .dl-coming-soon > *:nth-child(5) { animation-delay: 0.46s; }

/* ======================================================================
   ABOUT US - PHOENIX RISING FROM THE ASHES
   ====================================================================== */
.about-phoenix {
    position: relative;
    width: 130px;
    margin: 0 auto 22px;
}
.about-phoenix svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}
.about-phoenix .phoenix-flame {
    animation: phoenixFlicker 1.6s ease-in-out infinite;
    transform-origin: 70px 168px;
}
@keyframes phoenixFlicker {
    0%, 100% { transform: scaleY(1)    skewX(0deg); }
    25%      { transform: scaleY(1.06) skewX(-2deg); }
    50%      { transform: scaleY(0.95) skewX(2deg); }
    75%      { transform: scaleY(1.04) skewX(-1deg); }
}
.about-phoenix .phoenix-bird {
    animation: phoenixRise 3.4s ease-in-out infinite;
    transform-origin: 70px 100px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.45));
}
@keyframes phoenixRise {
    0%, 100% { transform: translateY(0)   rotate(0deg); }
    50%      { transform: translateY(-9px) rotate(-2deg); }
}
.about-phoenix .phoenix-embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.about-phoenix .phoenix-embers span {
    position: absolute;
    bottom: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--l2-gold-light);
    opacity: 0;
    animation: phoenixEmber 3s ease-in infinite;
}
.about-phoenix .phoenix-embers span:nth-child(1) { left: 28%; animation-delay: 0s; }
.about-phoenix .phoenix-embers span:nth-child(2) { left: 42%; animation-delay: .6s; }
.about-phoenix .phoenix-embers span:nth-child(3) { left: 56%; animation-delay: 1.2s; }
.about-phoenix .phoenix-embers span:nth-child(4) { left: 66%; animation-delay: 1.8s; }
.about-phoenix .phoenix-embers span:nth-child(5) { left: 50%; animation-delay: 2.4s; }
@keyframes phoenixEmber {
    0%   { opacity: 0; transform: translateY(0) scale(.6); }
    20%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-95px) scale(1.3); }
}

/* ======================================================================
   SYSTEM REQUIREMENTS - PC TOWER HERO
   ====================================================================== */
.sysreq-hero {
    width: 74px;
    margin: 0 auto 10px;
}
.sysreq-hero svg {
    width: 100%;
    height: auto;
    display: block;
}
.sysreq-hero .sysreq-fan-blades {
    transform-origin: 60px 98px;
    animation: sysFanSpin 2.4s linear infinite;
}
@keyframes sysFanSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.sysreq-hero .sysreq-led {
    animation: sysLedBlink 1.5s ease-in-out infinite;
}
@keyframes sysLedBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: .25; }
}

/* Fix: the modal's decorative corners were overlapping and swallowing clicks
   meant for the close (✕) button — shrink + de-activate them like welcome-box,
   and force the close button above everything else in the stack. */
.sysreq-box .window-corner {
    width: 26px;
    height: 26px;
    pointer-events: none;
}
.sysreq-box #sysreqClose {
    z-index: 30;
    pointer-events: auto;
}

/* ======================================================================
   SERVER STATUS - (BETA) COMING SOON
   ====================================================================== */
.status-flame {
    width: 10px;
    height: 15px;
    display: block;
    flex: 0 0 auto;
    overflow: visible;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, .6));
}
.status-flame-right {
    transform: scaleX(-1);
}
.status-flame .flame-outer {
    transform-origin: 10px 27px;
    animation: flameOuterDance .9s ease-in-out infinite;
}
.status-flame .flame-inner {
    transform-origin: 10px 24px;
    animation: flameInnerDance .65s ease-in-out infinite;
}
.status-flame-left .flame-outer { animation-delay: 0s; }
.status-flame-right .flame-outer { animation-delay: .18s; }
.status-flame-left .flame-inner { animation-delay: .1s; }
.status-flame-right .flame-inner { animation-delay: .3s; }
@keyframes flameOuterDance {
    0%   { transform: scaleY(1)    scaleX(1)    skewX(0deg)  translateX(0); }
    20%  { transform: scaleY(1.1)  scaleX(0.92) skewX(-4deg) translateX(-0.5px); }
    45%  { transform: scaleY(0.9)  scaleX(1.06) skewX(3deg)  translateX(0.5px); }
    70%  { transform: scaleY(1.05) scaleX(0.95) skewX(-2deg) translateX(-0.3px); }
    100% { transform: scaleY(1)    scaleX(1)    skewX(0deg)  translateX(0); }
}
@keyframes flameInnerDance {
    0%   { transform: scaleY(1)    scaleX(1)   skewX(0deg); opacity: 1; }
    30%  { transform: scaleY(0.85) scaleX(1.1) skewX(4deg); opacity: .85; }
    55%  { transform: scaleY(1.12) scaleX(0.9) skewX(-3deg); opacity: 1; }
    80%  { transform: scaleY(0.92) scaleX(1.05) skewX(2deg); opacity: .9; }
    100% { transform: scaleY(1)    scaleX(1)   skewX(0deg); opacity: 1; }
}
.status-dot-static {
    background-color: var(--l2-gold-light) !important;
    animation: statusDotGlow 2.2s ease-in-out infinite;
}
@keyframes statusDotGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, .55); }
    50%      { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
}