body { margin: 0; overflow: hidden; font-family: 'Segoe UI', Tahoma, sans-serif; background: #0a0a0a; color: #fff; }

/* === BOOT LOADER === */
#bootLoader {
    position: fixed; inset: 0; z-index: 9999;
    background: radial-gradient(ellipse at center, #1a2818 0%, #0a0e0a 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
#bootLoader.hide { opacity: 0; pointer-events: none; }
#bootLoader .bl-title {
    font-size: 32px; color: #8bc34a; font-weight: 700;
    text-shadow: 0 0 18px rgba(139,195,74,0.7);
    margin-bottom: 14px;
}
#bootLoader .bl-sub { color: #aabba8; font-size: 14px; margin-bottom: 22px; }
#bootLoader .bl-bar {
    width: 260px; height: 6px; border-radius: 3px;
    background: rgba(139,195,74,0.15); overflow: hidden;
}
#bootLoader .bl-fill {
    width: 30%; height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, transparent, #8bc34a, transparent);
    animation: blScan 1.2s ease-in-out infinite;
}
@keyframes blScan {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(360%); }
}
canvas { display: block; outline: none; }

#ui {
    position: absolute; top: 20px; left: 20px;
    background: rgba(15, 25, 15, 0.92);
    padding: 18px; border-radius: 12px;
    border: 2px solid #4a7c3a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6), inset 0 0 20px rgba(74,124,58,0.2);
    z-index: 100; min-width: 320px; max-width: 380px;
    max-height: 95vh; overflow-y: auto;
}
#ui h3 { margin: 0 0 10px 0; color: #8bc34a; text-shadow: 0 0 10px rgba(139,195,74,0.5); }
#ui hr { border: 0; border-top: 1px solid #4a7c3a; margin: 10px 0; }
#ui .section-label { font-size: 11px; color: #8bc34a; text-transform: uppercase; letter-spacing: 1px; margin: 6px 0 4px 0; }
input, button {
    padding: 9px; margin-top: 5px; width: 100%; box-sizing: border-box;
    background: #1a2a1a; color: #fff; border: 1px solid #4a7c3a; border-radius: 6px;
    font-size: 13px;
}
button { cursor: pointer; transition: all 0.2s; font-weight: bold; }
button:hover { background: #4a7c3a; box-shadow: 0 0 12px rgba(139,195,74,0.6); }
#status { font-size: 12px; color: #aaa; word-break: break-all; }

#skinPicker, #pauseSkinPicker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 4px 0 14px 0; }
#difficultyPicker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 4px 0 14px 0; }
.diff-opt {
    padding: 8px 6px; background: #1a2a1a; border: 2px solid #2a3a2a; border-radius: 6px;
    cursor: pointer; text-align: center; transition: all 0.15s;
}
.diff-opt:hover { border-color: #4a7c3a; }
.diff-opt.active { border-color: #8bc34a; background: rgba(139,195,74,0.18); box-shadow: 0 0 10px rgba(139,195,74,0.4); }
.diff-opt .diff-name { font-size: 13px; font-weight: 700; color: #cce0bb; }
.diff-opt .diff-desc { font-size: 10px; color: #99aa88; margin-top: 3px; }
.diff-opt[data-diff="medium"] .diff-name { color: #ffd790; }
.diff-opt[data-diff="hard"] .diff-name { color: #ff8866; }
.skin-opt {
    padding: 8px 4px; background: #1a2a1a; border: 2px solid #2a3a2a; border-radius: 6px;
    cursor: pointer; text-align: center; transition: all 0.15s; font-size: 11px;
}
.skin-opt:hover { border-color: #4a7c3a; }
.skin-opt.active { border-color: #8bc34a; background: rgba(139,195,74,0.18); box-shadow: 0 0 10px rgba(139,195,74,0.4); }
.skin-swatch { width: 24px; height: 24px; margin: 0 auto 4px; border-radius: 50%; box-shadow: 0 0 6px rgba(0,0,0,0.5); }

.pvp-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 13px; }
.pvp-row input { width: auto; margin: 0; }
.pvp-row label { cursor: pointer; }

.coopTip {
    font-size: 11px; color: #aac8a0; line-height: 1.45;
    background: rgba(74,124,58,0.12);
    border-left: 3px solid #8bc34a;
    padding: 7px 10px; border-radius: 4px;
    margin: 4px 0 8px;
}
.coopTip b { color: #ffd54a; }

#hostIdRow { display: none; margin-top: 8px; }
.hostIdGrid {
    display: grid; grid-template-columns: 1fr auto; gap: 6px;
    margin-top: 4px;
}
.hostIdGrid input {
    margin: 0; font-family: monospace; font-size: 11px;
    background: rgba(255,213,74,0.08);
    border-color: #ffd54a; color: #fff7e0;
}
.hostIdGrid button {
    margin: 0; width: auto; padding: 9px 14px;
    background: #4a3a1a; border-color: #ffd54a; color: #ffd54a;
}
.hostIdGrid button:hover {
    background: #ffd54a; color: #000;
    box-shadow: 0 0 12px rgba(255,213,74,0.5);
}

#leaderboard { list-style: none; padding: 0; margin: 6px 0 0 0; font-size: 12px; max-height: 160px; overflow-y: auto; }
#leaderboard li { padding: 3px 8px; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.05); }
#leaderboard li:nth-child(1) { color: #ffd700; font-weight: bold; }
#leaderboard li:nth-child(2) { color: #c0c0c0; }
#leaderboard li:nth-child(3) { color: #cd7f32; }
.lb-empty { color: #888; font-style: italic; font-size: 12px; }

#crosshair {
    position: absolute; top: 50%; left: 50%;
    width: 26px; height: 26px;
    transform: translate(-50%, -50%);
    z-index: 99; pointer-events: none;
    transition: opacity 0.15s;
}
#crosshair .line {
    position: absolute; background: rgba(255,255,255,0.9);
    box-shadow: 0 0 4px rgba(0,0,0,0.9);
    transition: all 0.12s;
}
#crosshair .top, #crosshair .bottom { left: 50%; width: 2px; height: 8px; transform: translateX(-50%); }
#crosshair .top { top: 0; }
#crosshair .bottom { bottom: 0; }
#crosshair .left, #crosshair .right { top: 50%; height: 2px; width: 8px; transform: translateY(-50%); }
#crosshair .left { left: 0; }
#crosshair .right { right: 0; }
#crosshair .dot {
    position: absolute; top: 50%; left: 50%; width: 3px; height: 3px;
    background: #ff3030; border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px #ff3030;
}

#hud {
    position: absolute; bottom: 20px; left: 20px; z-index: 99;
    display: none; gap: 18px; align-items: center;
    background: rgba(0,0,0,0.55); padding: 12px 20px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; font-size: 13px; min-width: 70px; }
.stat-label { color: #aaa; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.stat-value { font-size: 22px; font-weight: bold; }
#healthBar { width: 180px; height: 14px; background: #2a0a0a; border: 1px solid #500; border-radius: 4px; overflow: hidden; }
#healthFill { height: 100%; width: 100%; background: linear-gradient(90deg, #ff3030, #ff6060); transition: width 0.2s; }

#weaponWheel {
    position: absolute; bottom: 20px; right: 20px; z-index: 99;
    display: none; gap: 8px;
    background: rgba(0,0,0,0.55); padding: 10px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
}
.wpn-slot {
    background: rgba(255,255,255,0.05); padding: 8px 12px; border-radius: 6px;
    min-width: 80px; text-align: center; border: 2px solid transparent;
    transition: all 0.15s; cursor: pointer; font-size: 12px;
}
.wpn-slot .key { font-size: 10px; color: #888; }
.wpn-slot .name { font-weight: bold; margin: 2px 0; }
.wpn-slot .ammo { font-size: 11px; color: #ccc; }
.wpn-slot.active { border-color: #8bc34a; background: rgba(139,195,74,0.18); box-shadow: 0 0 12px rgba(139,195,74,0.4); }

#minimapBox {
    position: absolute; top: 20px; left: 20px; z-index: 60;
    background: rgba(15, 25, 15, 0.85);
    border: 1px solid #4a7c3a; border-radius: 8px;
    padding: 8px; display: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}
#minimapBox.show { display: block; }
#minimapBox .mm-title {
    color: #8bc34a; font-weight: 700; letter-spacing: 1px;
    font-size: 11px; margin-bottom: 6px; text-align: center;
}
#minimap {
    display: block; width: 200px; height: 200px;
    background: radial-gradient(circle at center, #2a3a25 0%, #1a2415 100%);
    border-radius: 50%;
    border: 2px solid #3a5a2a;
}
#minimapBox .mm-legend {
    margin-top: 6px; font-size: 10px; color: #aac9a0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px 6px;
    line-height: 14px;
}
#minimapBox .mm-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    margin-right: 4px; vertical-align: middle;
}
#minimapBox .mm-you    { background: #ffffff; }
#minimapBox .mm-friend { background: #66d9ff; }
#minimapBox .mm-enemy  { background: #66cc44; }
#minimapBox .mm-boss   { background: #ff8030; }

#rosterBox {
    position: absolute; top: 70px; right: 20px; z-index: 60;
    background: rgba(15, 25, 15, 0.85);
    border: 1px solid #4a7c3a; border-radius: 8px;
    padding: 8px 12px; min-width: 170px; max-width: 240px;
    font-size: 12px; display: none;
}
#rosterBox.show { display: block; }
#rosterBox .roster-title { color: #8bc34a; font-weight: 700; letter-spacing: 1px; font-size: 11px; margin-bottom: 6px; }
#rosterList { list-style: none; padding: 0; margin: 0; }
#rosterList li { display: flex; justify-content: space-between; gap: 8px; padding: 3px 0; border-bottom: 1px dashed #2a3a2a; }
#rosterList li:last-child { border-bottom: none; }
#rosterList li.me { color: #aed280; font-weight: 700; }
#rosterList .rs-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px; }
#rosterList .rs-kills { color: #ffd790; }
#pvpBadge {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(120,0,0,0.85); color: #fff; padding: 6px 14px; border-radius: 6px;
    font-size: 12px; font-weight: bold; z-index: 99; display: none;
    border: 1px solid #ff3030; letter-spacing: 1px;
}

#instructions {
    position: absolute; top: 20px; right: 20px; z-index: 99;
    background: rgba(0,0,0,0.55); padding: 14px 18px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15); font-size: 12px; display: none;
    max-width: 220px;
}
#instructions h4 { margin: 0 0 8px 0; color: #8bc34a; font-size: 13px; }
#instructions div { margin: 3px 0; color: #ddd; }
kbd {
    background: #333; color: #fff; padding: 2px 6px; border-radius: 4px;
    border: 1px solid #555; font-size: 10px; font-family: monospace;
}

#lockMsg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.85); padding: 25px 40px; border-radius: 12px;
    border: 2px solid #8bc34a; z-index: 200; display: none;
    font-size: 16px; text-align: center; cursor: pointer;
    box-shadow: 0 0 30px rgba(139,195,74,0.4);
}
#lockMsg h2 { margin: 0 0 10px 0; color: #8bc34a; }

#pauseMenu {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(10,15,10,0.95);
    padding: 36px 48px; border-radius: 14px;
    border: 2px solid #8bc34a; z-index: 250; display: none;
    text-align: center; min-width: 340px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.85), 0 0 40px rgba(139,195,74,0.3);
    backdrop-filter: blur(6px);
}
#pauseMenu h1 {
    margin: 0 0 24px 0; color: #ffd54a;
    letter-spacing: 6px; font-size: 36px;
    text-shadow: 0 0 18px rgba(255,170,40,0.6);
}
#pauseMenu button {
    width: 100%; padding: 14px;
    font-size: 16px; margin: 8px 0;
    background: #1a2a1a; color: #fff;
    border: 1px solid #4a7c3a; border-radius: 8px;
    cursor: pointer; font-weight: bold;
    transition: all 0.15s;
}
#pauseMenu button:hover {
    background: #4a7c3a;
    box-shadow: 0 0 16px rgba(139,195,74,0.5);
    transform: translateY(-1px);
}
#pauseMenu #btnMainMenu {
    border-color: #c03030;
    color: #ffcccc;
}
#pauseMenu #btnMainMenu:hover {
    background: #5a2020;
    box-shadow: 0 0 16px rgba(255,80,80,0.5);
}
#pauseMenu .hint {
    margin-top: 14px; font-size: 11px; color: #888;
    letter-spacing: 1px;
}

#gameOver {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(40,0,0,0.95); padding: 40px 60px; border-radius: 12px;
    border: 2px solid #ff3030; z-index: 300; display: none; text-align: center;
    box-shadow: 0 0 40px rgba(255,48,48,0.5); min-width: 320px;
}
#gameOver h1 { margin: 0 0 15px 0; color: #ff3030; font-size: 48px; }
#saveScoreArea { margin: 15px 0; }

#damageOverlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 50;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(255,0,0,0.5) 100%);
    opacity: 0; transition: opacity 0.3s;
}
/* === DEBAIXO D'ÁGUA === */
#underwaterOverlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 48;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(0,80,140,0.4) 100%),
        linear-gradient(rgba(20,90,140,0.35), rgba(10,40,80,0.35));
    opacity: 0; transition: opacity 0.4s;
}
#underwaterOverlay.show { opacity: 1; }
#oxygenBox {
    position: absolute; bottom: 100px; left: 30px; z-index: 55; display: none;
    background: rgba(0,40,80,0.7); padding: 8px 14px; border-radius: 8px;
    border: 1px solid #66c8ee;
}
#oxygenBox.show { display: block; }
#oxygenBox .oxy-label { font-size: 11px; color: #aee3ff; letter-spacing: 1px; }
#oxygenBar {
    margin-top: 4px; width: 180px; height: 8px;
    background: rgba(0,0,0,0.5); border-radius: 4px; overflow: hidden;
}
#oxygenFill {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #44c6ff, #aee3ff);
    transition: width 0.2s;
}
/* === ATAQUE DE GARRA — 4 riscos diagonais varrendo a tela === */
#clawOverlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 80;
    opacity: 0;
}
#clawOverlay.show { animation: clawAttack 0.55s ease-out; }
@keyframes clawAttack {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    100% { opacity: 0; }
}
#clawOverlay .claw {
    position: absolute; top: -20%; left: 0; width: 6px; height: 140%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0,0,0,0) 8%,
        rgba(180,30,30,0.55) 14%,
        rgba(0,0,0,0.85) 22%,
        rgba(120,0,0,0.7) 40%,
        rgba(0,0,0,0.85) 65%,
        rgba(160,20,20,0.55) 82%,
        transparent 100%);
    box-shadow: 0 0 18px rgba(120,0,0,0.7), 0 0 6px rgba(0,0,0,0.9);
    transform-origin: top center;
    filter: blur(0.6px);
}
#clawOverlay .c1 { left: 18%; transform: rotate(14deg); }
#clawOverlay .c2 { left: 36%; transform: rotate(10deg); height: 150%; }
#clawOverlay .c3 { left: 56%; transform: rotate(12deg); height: 145%; }
#clawOverlay .c4 { left: 74%; transform: rotate(15deg); height: 135%; }
#clawOverlay .clawBlood {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 65%, rgba(120,0,0,0.55) 0%, transparent 60%),
        radial-gradient(ellipse 30% 25% at 20% 30%, rgba(80,0,0,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 35% 30% at 80% 70%, rgba(80,0,0,0.5) 0%, transparent 70%);
}
#zoomOverlay {
    position: absolute; inset: 0; pointer-events: none; z-index: 49; display: none;
}
#zoomOverlay::before, #zoomOverlay::after {
    content: ''; position: absolute; background: #000;
}
#zoomOverlay::before { left: 0; top: 0; bottom: 0; width: calc(50% - 200px); }
#zoomOverlay::after { right: 0; top: 0; bottom: 0; width: calc(50% - 200px); }

#sniperReticle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 380px; height: 380px;
    z-index: 60; display: none; pointer-events: none;
}
#sniperReticle .ring {
    position: absolute; inset: 0;
    border: 2px solid rgba(0,0,0,0.85);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}
#sniperReticle .line {
    position: absolute; background: rgba(0,0,0,0.9);
}
#sniperReticle .vt { left: 50%; top: 0;        width: 1px; height: 38%; transform: translateX(-50%); }
#sniperReticle .vb { left: 50%; bottom: 0;     width: 1px; height: 38%; transform: translateX(-50%); }
#sniperReticle .hl { top: 50%; left: 0;        height: 1px; width: 38%; transform: translateY(-50%); }
#sniperReticle .hr { top: 50%; right: 0;       height: 1px; width: 38%; transform: translateY(-50%); }
#sniperReticle .dot {
    position: absolute; top: 50%; left: 50%;
    width: 3px; height: 3px; background: #ff2020; border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 4px #ff2020;
}
#sniperReticle .hash {
    position: absolute; background: rgba(0,0,0,0.85);
    width: 8px; height: 1px;
}
#sniperReticle .hash1 { left: 50%; top: 25%; transform: translateX(-50%); width: 1px; height: 6px; }
#sniperReticle .hash2 { left: 50%; bottom: 25%; transform: translateX(-50%); width: 1px; height: 6px; }
#sniperReticle .hash3 { top: 50%; left: 25%; transform: translateY(-50%); width: 6px; height: 1px; }
#sniperReticle .hash4 { top: 50%; right: 25%; transform: translateY(-50%); width: 6px; height: 1px; }

#reloadIndicator {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.7); color: #ffaa33; padding: 6px 14px; border-radius: 6px;
    font-size: 14px; display: none; z-index: 99;
}

#waveBanner {
    position: absolute; top: 28%; left: 50%; transform: translate(-50%, -50%);
    z-index: 95; display: none; text-align: center;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 0 6px rgba(139,195,74,0.6);
    animation: waveBannerPulse 0.7s ease-out;
}
#waveBannerTitle {
    font-size: 56px; font-weight: 900; color: #ffd54a; letter-spacing: 4px;
    text-shadow: 0 0 24px rgba(255,170,40,0.9), 0 4px 10px rgba(0,0,0,0.8);
}
#waveBannerSub {
    font-size: 20px; color: #fff; margin-top: 6px; letter-spacing: 2px;
    text-transform: uppercase;
}
@keyframes waveBannerPulse {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    40%  { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

#objectiveBox {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    z-index: 95; display: none;
    background: rgba(10,18,10,0.85);
    border: 1px solid #4a7c3a;
    border-left: 4px solid #ffd54a;
    padding: 8px 18px; border-radius: 6px;
    font-size: 13px; min-width: 240px; text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.6), inset 0 0 12px rgba(74,124,58,0.2);
}
#objectiveBox .obj-label {
    font-size: 10px; color: #ffd54a; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 2px;
}
#objectiveText { color: #fff; font-weight: bold; }
#objectiveBox.boss { border-left-color: #ff3030; }
#objectiveBox.boss .obj-label { color: #ff3030; }

#viewModeBadge {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 95;
    background: rgba(0,0,0,0.55); color: #8bc34a;
    border: 1px solid rgba(139,195,74,0.5);
    padding: 5px 12px; border-radius: 6px;
    font-size: 12px; font-weight: bold; letter-spacing: 1px;
    display: none;
}

#interactPrompt {
    position: absolute; bottom: 30%; left: 50%; transform: translateX(-50%);
    z-index: 96; display: none;
    background: rgba(0,0,0,0.75);
    border: 1px solid #8bc34a;
    color: #fff; padding: 10px 22px; border-radius: 8px;
    font-size: 16px; font-weight: bold;
    box-shadow: 0 0 18px rgba(139,195,74,0.4);
    animation: promptPulse 1.4s ease-in-out infinite;
}
#interactPrompt kbd {
    background: #8bc34a; color: #000; padding: 3px 8px; border-radius: 4px;
    font-family: monospace; margin-right: 4px;
}
@keyframes promptPulse {
    0%,100% { transform: translateX(-50%) scale(1); }
    50%     { transform: translateX(-50%) scale(1.05); }
}

#planeHud {
    position: absolute; bottom: 20px; right: 20px; z-index: 95; display: none;
    background: rgba(10,18,30,0.85);
    border: 1px solid #4a8cbc;
    padding: 12px 18px; border-radius: 10px;
    font-size: 13px; min-width: 220px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.6), inset 0 0 12px rgba(74,140,188,0.2);
}
#planeHud .ph-row { display: flex; justify-content: space-between; align-items: center; margin: 4px 0; gap: 10px; }
#planeHud .ph-label { color: #88c4ff; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
#planeHud .ph-value { color: #fff; font-weight: bold; font-size: 18px; }
#planeHpBar { width: 110px; height: 12px; background: #1a0a0a; border: 1px solid #4a0; border-radius: 3px; overflow: hidden; }
#planeHpFill { height: 100%; width: 100%; background: linear-gradient(90deg, #66cc88, #aaee88); transition: width 0.2s; }

#modeBanner {
    position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
    z-index: 96; display: none; text-align: center; pointer-events: none;
    font-size: 36px; font-weight: 900; letter-spacing: 4px; color: #88c4ff;
    text-shadow: 0 0 18px rgba(74,140,188,0.9), 0 4px 10px rgba(0,0,0,0.9);
    animation: waveBannerPulse 0.7s ease-out;
}
