/* ============================================================
   Dewgum Shared Theme
   CLEAN CRISP REPLACEMENT
   Upload to: public_html/assets/css/dewgum.css

   Purpose:
   - Global Dewgum colors, body background, wrapper, nav, footer,
     shared buttons, alerts, forms, cards, meters, and popup styling.
   - Page-specific files should handle only page layouts/details.
   - Visual/display layer only. Backend/database remain the authority.

   Direction:
   - Bright cozy Dewgum.
   - Crisp game UI.
   - No frosted-glass blur.
   - Solid readable surfaces.
   ============================================================ */
@font-face {
    font-family: 'Showpop';
    src: url('../fonts/Showpop.ttf') format('truetype');
}

@font-face {
    font-family: 'AliceYot';
    src: url('../fonts/AliceYot.ttf') format('truetype');
}
/* ===== Theme Tokens ===== */
:root {
    --dew-shell-width: 1080px;

    --dew-ink: #21324a;
    --dew-ink-soft: #374765;
    --dew-muted: #6b7890;
    --dew-muted-2: #8792a7;

    --dew-paper: #fffaf1;
    --dew-paper-solid: rgba(255, 250, 238, .985);
    --dew-paper-2: #fff3d8;
    --dew-card: #ffffff;
    --dew-card-warm: #fff8e8;

    --dew-blue: #23a9ff;
    --dew-blue-deep: #1684c7;
    --dew-turq: #30d6e8;
    --dew-green: #40d46f;
    --dew-green-deep: #188a3b;
    --dew-gold: #ffc93d;
    --dew-orange: #ff8a2b;
    --dew-orange-deep: #f05b00;
    --dew-red: #d52f2f;
    --dew-pink: #ff72bc;
    --dew-purple: #9b5cff;

    --dew-line: rgba(33, 50, 74, .14);
    --dew-line-strong: rgba(33, 50, 74, .22);
    --dew-white-line: rgba(255, 255, 255, .78);

    --dew-radius-sm: 12px;
    --dew-radius-md: 18px;
    --dew-radius-lg: 24px;
    --dew-radius-xl: 32px;

    --dew-shadow-soft: 0 10px 24px rgba(32, 50, 27, .14);
    --dew-shadow-card: 0 14px 34px rgba(30, 72, 20, .16);
    --dew-shadow-frame: 0 18px 48px rgba(25, 61, 20, .26);

    --dew-shell-red-a: #ff7a35;
    --dew-shell-red-b: #ff4d4d;
    --dew-shell-red-c: #d92a2a;
    --dew-border-warm: #ff8a3d;

    --dew-pattern-page: url('../img/scavabot-pattern-orange.png');
    --dew-pattern-card: url('../img/scavabot-pattern.png');
    --dew-pattern-pink: url('../img/scavabot-pattern-pink.png');
}

/* ===== Base Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    color: var(--dew-ink);
    font-family: 'AliceYot', Arial, sans-serif;
    background:
        linear-gradient(90deg, rgba(22, 101, 52, .14), rgba(22, 101, 52, .02), rgba(22, 101, 52, .14)),
        url('../img/dewgum-park-bg.webp') center center / cover fixed no-repeat,
        radial-gradient(circle at 20% 20%, #7ed957 0%, #4caf50 42%, #2e7d32 100%);
}

body,
button,
input,
select,
textarea {
    font-family: 'AliceYot', Arial, sans-serif;
    letter-spacing: .015em;
}

img,
svg {
    max-width: 100%;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}


h1,
h2,
h3,
.dew-title,
.arcade-title,
.logo-text,
.dew-popup-title,
.dew-global-brand {
    font-family: 'Showpop', Arial, sans-serif;
}
/* ===== Global Links ===== */
a {
    color: var(--dew-blue-deep);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--dew-orange-deep);
    text-decoration: none;
}

/* ===== Page Wrapper ===== */
.wrap {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* ===== Shared Page Frame Helpers ===== */
.dew-page-outer,
.dew-frame-outer,
.dew-inventory-outer,
.dew-town-outer,
.dew-slots-outer,
.dew-outer {
    flex: 1;
    width: min(var(--dew-shell-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin: 8px auto 28px;
    padding: 12px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 220, 120, .30), transparent 25%),
        radial-gradient(circle at 88% 92%, rgba(255, 120, 120, .16), transparent 28%),
        linear-gradient(135deg, var(--dew-shell-red-a) 0%, var(--dew-shell-red-b) 55%, var(--dew-shell-red-c) 100%);
    box-shadow:
        var(--dew-shadow-frame),
        inset 0 0 0 2px rgba(255, 255, 255, .36),
        inset 0 0 18px rgba(255, 255, 255, .16);
    position: relative;
    z-index: 5;
    overflow: visible;
}

.dew-page-outer::before,
.dew-frame-outer::before,
.dew-town-outer::before,
.dew-slots-outer::before,
.dew-outer::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, .46);
    box-shadow: inset 0 0 14px rgba(255, 255, 255, .18);
}

.dew-page,
.dew-frame-page {
    width: 100%;
    padding: 12px;
    border-radius: 26px;
    background:
        var(--dew-pattern-page),
        radial-gradient(circle at 12% 0%, rgba(48, 214, 232, .10), transparent 28%),
        radial-gradient(circle at 96% 100%, rgba(255, 201, 61, .12), transparent 30%),
        var(--dew-paper-solid);
    background-size: auto, auto, auto, auto;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat;
    background-position: center, center, center, center;
    border: 3px solid rgba(255, 255, 255, .86);
    box-shadow:
        0 20px 46px rgba(23, 70, 18, .15),
        inset 0 0 0 1px rgba(255, 255, 255, .50);
    overflow: visible;
}

/* ===== Shared Panels / Cards ===== */
.dew-panel,
.panel,
.dew-card-surface,
.dew-hero-surface {
    border-radius: 24px;
    border: 3px solid var(--dew-border-warm);
    background:
        var(--dew-pattern-card),
        linear-gradient(180deg, rgba(255, 250, 242, .97), rgba(255, 244, 224, .97));
    background-size: 140px 140px, 100% 100%;
    background-repeat: repeat, no-repeat;
    background-position: center, center;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .12),
        inset 0 2px 5px rgba(255, 255, 255, .48);
    color: var(--dew-ink);
}

.dew-panel,
.panel {
    padding: 18px;
    margin-bottom: 16px;
}

.dew-pattern-panel {
    background:
        var(--dew-pattern-card),
        linear-gradient(180deg, rgba(255, 250, 242, .96), rgba(255, 244, 224, .96));
    background-size: 140px 140px, 100% 100%;
    background-repeat: repeat, no-repeat;
    background-position: center, center;
}

.card-narrow {
    width: min(520px, calc(100vw - 36px));
    margin: 24px auto;
}

.muted,
.dew-muted {
    color: var(--dew-muted);
}

form.inline {
    display: inline-block;
    margin: 0;
}

/* ===== Global Account / Navigation Bar ===== */
.dew-global-bar {
    width: min(var(--dew-shell-width), calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    margin: 14px auto 10px;
    padding: 9px 12px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 235, .94));
    border: 2px solid rgba(255, 255, 255, .74);
    box-shadow:
        0 14px 32px rgba(22, 64, 32, .18),
        inset 0 1px 0 rgba(255,255,255,.82);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    color: var(--dew-ink);
    position: relative;
    z-index: 20;
}

.dew-global-brand {
    color: #f05a14 !important;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: .04em;
    text-decoration: none !important;
    white-space: nowrap;
}

.dew-global-logo {
    height: 45px;
    width: auto;
    display: block;
}

.dew-global-nav,
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.nav-menu {
    justify-content: flex-start;
    margin-top: 10px;
}

.dew-global-nav a,
.nav-menu a {
    padding: 7px 10px;
    border-radius: 999px;
    color: #114071 !important;
    background: #ffffff;
    border: 1px solid rgba(31, 67, 89, .10);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow:
        0 5px 12px rgba(41, 60, 34, .08),
        inset 0 1px 0 rgba(255,255,255,.80);
}

.dew-global-nav a:hover,
.dew-global-nav a:focus-visible,
.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: #fff6d6;
    color: #d84c00 !important;
    text-decoration: none !important;
    outline: none;
}

.dew-global-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex-wrap: wrap;
}

.dew-global-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 9px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(33, 50, 74, .10);
    color: #586782;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    box-shadow:
        0 7px 16px rgba(33,50,74,.08),
        inset 0 1px 0 rgba(255,255,255,.76);
}

.dew-global-chip b {
    color: var(--dew-ink);
    font-weight: 950;
}

.dew-global-user {
    color: #1f7a38;
}

.dew-global-wallet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a64d00;
}

.dew-global-wallet-icon,
.dew-global-pts-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.dew-global-logout {
    margin: 0;
}

.dew-global-pts {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ===== Shared Buttons ===== */
.btn,
.dew-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .72);
    background: linear-gradient(180deg, #fffdf6, #fff0c9);
    color: var(--dew-ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none !important;
    box-shadow:
        0 8px 18px rgba(40, 58, 85, .14),
        inset 0 1px 0 rgba(255, 255, 255, .80);
    transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}

.btn:hover,
.btn:focus-visible,
.dew-btn:hover,
.dew-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
    color: var(--dew-ink);
    text-decoration: none !important;
    outline: none;
}

.btn-primary,
.dew-btn-primary {
    background: linear-gradient(180deg, #ff5a5a, #d92a2a);
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(102, 39, 0, .35);
    box-shadow:
        0 5px 0 #c44100,
        0 0 16px rgba(255, 120, 0, .24),
        0 10px 22px rgba(153, 70, 0, .14),
        inset 0 1px 0 rgba(255, 255, 255, .48);
}

.btn-danger,
.dew-btn-danger {
    background: linear-gradient(180deg, #ff6d6d, #dc2626);
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(80, 0, 0, .28);
}

.btn:disabled,
.dew-btn:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: .56;
    transform: none !important;
    filter: grayscale(.12);
}

button {
    transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}

button:hover:not(:disabled) {
    transform: translateY(-1px);
}

/* ===== Forms ===== */
label {
    display: block;
    margin-bottom: 4px;
    color: #526079;
    font-weight: 850;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 14px;
    padding: 11px 12px;
    border-radius: 12px;
    border: 2px solid rgba(33, 50, 74, .14);
    background: #fffaf1;
    color: var(--dew-ink);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(35, 169, 255, .56);
    box-shadow:
        0 0 0 4px rgba(35, 169, 255, .14),
        inset 0 1px 0 rgba(255, 255, 255, .72);
}

/* ===== Alerts / Flash Messages ===== */
.flash,
.dew-alert {
    max-width: 1180px;
    margin: 12px auto 16px;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 850;
    color: var(--dew-ink);
    background: #fffaf1;
    border: 2px solid rgba(255, 255, 255, .72);
    box-shadow: 0 8px 18px rgba(33, 50, 74, .10);
}

.flash-success,
.dew-alert-success {
    background: #e8ffe9;
    color: #17622f;
    border-color: #9df0a8;
}

.flash-error,
.dew-alert-error {
    background: #ffe2e2;
    color: #8b1d1d;
    border-color: #ffb4b4;
}

.flash-warning,
.dew-alert-warning {
    background: #fff3ce;
    color: #7a4b00;
    border-color: #ffd778;
}

.flash-info,
.dew-alert-info {
    background: #e6f7ff;
    color: #114071;
    border-color: #a9e4ff;
}

/* ===== Generic Topbar Helper ===== */
.topbar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* ===== Shared Dewgum Meters ===== */
.dew-meter,
.dew-bar {
    height: 13px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(33, 50, 74, .12);
}

.dew-meter span,
.dew-bar span {
    display: block;
    height: 10px;
    border-radius: 999px;
    position: relative;
    background: linear-gradient(90deg, #2ecc71, #a8e63a, #ffd84d);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, .35),
        inset 0 -2px 4px rgba(0, 0, 0, .18),
        0 2px 6px rgba(0, 0, 0, .15);
    overflow: hidden;
}

.dew-meter span::after,
.dew-bar span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    opacity: .5;
    animation: dewMeterSweep 3s linear infinite;
}

@keyframes dewMeterSweep {
    0% { left: -50%; }
    100% { left: 120%; }
}

/* ===== Shared Small Reward/Pickup Cards ===== */
.dew-pickup-item,
.dew-reward-item {
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    background: #fffaf1;
    border: 1px solid rgba(220, 185, 126, .36);
}

.dew-reward-icon,
.pickup-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    font-weight: 950;
    font-size: 18px;
    box-shadow:
        0 5px 10px rgba(50, 42, 34, .16),
        inset 0 1px 0 rgba(255, 255, 255, .55);
}

.dew-reward-icon.exp,
.pickup-icon-exp {
    background: linear-gradient(180deg, #ffe45c, #ffac00);
    color: #7a4b00;
}

.dew-reward-icon.bucks,
.pickup-icon-bucks {
    background: linear-gradient(180deg, #ffd65f, #f28b00);
    color: #7a3c00;
    border-radius: 999px;
}

.dew-reward-icon.item,
.pickup-icon-item {
    background: linear-gradient(180deg, #b34dff, #6b1eb8);
}

/* ===== Footer ===== */
.dew-footer {
    width: 100%;
    max-width: none;
    min-height: 50px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #ff7a35, #ff4d4d, #f05b00);
    border-top: 1px solid rgba(255,255,255,.30);
    box-shadow: 0 -10px 28px rgba(25,61,20,.12);
    position: relative;
    z-index: 10;
}

.dew-footer-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    color: #fff;
}

.dew-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.dew-footer-links a {
    color: #ffffff !important;
    font-weight: 700;
    opacity: .92;
    text-decoration: none !important;
}

.dew-footer-links a:hover,
.dew-footer-links a:focus-visible {
    opacity: 1;
    text-decoration: none !important;
    outline: none;
}

/* ===== Global Popup System ===== */
.dew-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(33, 50, 74, .48);
}

.dew-popup-card {
    width: min(420px, calc(100vw - 32px));
    border-radius: 28px;
    padding: 18px;
    text-align: center;
    color: var(--dew-ink);
    background:
        radial-gradient(circle at 16% 10%, rgba(255, 201, 61, .22), transparent 25%),
        linear-gradient(135deg, rgba(255, 252, 240, .99), rgba(255, 246, 220, .99));
    border: 3px solid rgba(255,255,255,.92);
    box-shadow:
        0 24px 70px rgba(25, 61, 20, .34),
        inset 0 0 0 2px rgba(255, 255, 255, .60);
}

.dew-popup-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffe45c, #ffac00);
    color: #7a4b00;
    font-size: 28px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62), 0 8px 18px rgba(133, 82, 0, .20);
}

.dew-popup-title {
    margin: 0 0 8px;
    color: #f05a14;
    font-size: 22px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: .04em;
}

.dew-popup-body {
    max-width: 330px;
    margin: 0 auto 16px;
    color: #526079;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.dew-popup-actions {
    display: flex;
    justify-content: center;
}

.dew-popup-btn {
    min-width: 104px;
    min-height: 42px;
    padding: 9px 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    background: linear-gradient(180deg, #ff9b2f, #f05b00);
    text-shadow: 0 1px 0 rgba(102, 39, 0, .35);
    box-shadow: 0 8px 18px rgba(40, 58, 85, .18), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.dew-popup-btn:hover,
.dew-popup-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    outline: none;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .dew-global-bar,
    .dew-page-outer,
    .dew-frame-outer,
    .dew-inventory-outer,
    .dew-town-outer,
    .dew-slots-outer,
    .dew-outer {
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
    }
}

@media (max-width: 900px) {
    .dew-global-bar {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
    }

    .dew-global-status {
        justify-content: center;
    }

    .dew-page-outer,
    .dew-frame-outer {
        padding: 9px;
        border-radius: 26px;
    }

    .dew-page,
    .dew-frame-page {
        padding: 10px;
        border-radius: 22px;
    }

    .dew-panel,
    .panel {
        border-radius: 22px;
        padding: 14px;
    }

    .dew-popup-card {
        width: min(360px, calc(100vw - 24px));
        border-radius: 24px;
        padding: 16px;
    }

    .dew-popup-title {
        font-size: 20px;
    }

    .dew-popup-body {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    body {
        background:
            linear-gradient(90deg, rgba(22, 101, 52, .16), rgba(22, 101, 52, .04), rgba(22, 101, 52, .16)),
            url('../img/dewgum-park-bg.webp') center center / cover fixed no-repeat,
            radial-gradient(circle at 20% 20%, #7ed957 0%, #4caf50 42%, #2e7d32 100%);
    }

    .dew-global-bar {
        width: min(1080px, calc(100vw - 18px));
        max-width: calc(100vw - 18px);
        border-radius: 18px;
    }

    .dew-global-nav a,
    .nav-menu a,
    .dew-global-chip {
        font-size: 12px;
    }

    .dew-footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .dew-footer-links {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

/* ===== Scavabot HUD Overlay ===== */
.dew-scava-hud {
    position: fixed;
    right: 0;
    top: 185px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: transform .22s ease;
    transform: translateX(250px);
}

.dew-scava-hud.is-expanded {
    transform: translateX(0);
}

.dew-scava-tab {
    width: 64px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.dew-scava-tab:hover,
.dew-scava-tab:focus,
.dew-scava-tab:active {
    transform: translateY(-50%) !important;
}

.dew-scava-tab img {
    display: block;
    width: 64px;
    height: auto;
}

.dew-scava-panel {
    width: 250px;
    padding: 10px;
    border-radius: 22px 0 0 22px;
    background: #f5f5f5;
    border: 3px solid #fff;
    border-right: 0;
    box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.dew-scava-screen {
    background: #031217;
    border-radius: 16px;
    padding: 12px;
    color: #fff;
    border: 2px solid var(--hud-accent, #ff2f2f);
}

.dew-scava-time b {
    display: block;
    color: #14f4ff;
    font-size: 22px;
    line-height: 1;
}

.dew-scava-time span,
.dew-scava-row span {
    font-size: 11px;
    opacity: .8;
}

.dew-scava-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.dew-scava-row b {
    color: #ffe85c;
    font-size: 17px;
    font-weight: 900;
}

.dew-scava-energy-meter {
    position: relative;
    width: 100%;
    height: 16px;
    margin-top: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.16);
}

.dew-scava-energy-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #16ff70 0%, #7dff57 55%, #ffe84a 100%);
    box-shadow: 0 0 10px rgba(22,255,112,.55);
    transition: width .35s ease;
}

.dew-scava-energy-shine {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 35%, transparent 70%);
    transform: translateX(-70%);
    animation: dewScavaMeterShine 3s linear infinite;
    pointer-events: none;
}

@keyframes dewScavaMeterShine {
    0% { transform: translateX(-80%); }
    100% { transform: translateX(90%); }
}

.dew-scava-regen {
    margin-top: 9px;
    color: #7dff4f;
    font-weight: 900;
    text-align: center;
}
