/* ============================================
   Anatomy Blaster - Medical Edition
   UI Components
   ============================================ */

/* ---------- Menu Buttons ---------- */
.menu-btn {
    font-family: var(--font-display);
    font-size: clamp(12px, 3.5vw, 16px);
    font-weight: 700;
    padding: 14px 36px;
    margin: 6px;
    border: 2px solid rgba(0, 180, 255, 0.35);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 40, 90, 0.8), rgba(0, 20, 55, 0.9));
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.4),
        inset -2px -2px 4px rgba(0, 200, 255, 0.06),
        0 3px 10px rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.08), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.menu-btn:hover::before {
    left: 100%;
}

/* Primary */
.menu-btn.primary {
    color: var(--med-bright);
    border-color: rgba(0, 200, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 40, 90, 0.85), rgba(0, 20, 55, 0.95));
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        inset -2px -2px 5px rgba(0, 200, 255, 0.08),
        0 0 15px rgba(0, 200, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.5);
    text-shadow: 
        0 0 8px rgba(0, 200, 255, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.9);
}

.menu-btn.primary:hover,
.menu-btn.primary:active {
    background: linear-gradient(135deg, rgba(0, 55, 110, 0.9), rgba(0, 30, 70, 0.95));
    border-color: rgba(0, 230, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        inset -2px -2px 5px rgba(0, 200, 255, 0.12),
        0 0 22px rgba(0, 200, 255, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.6);
}

/* Secondary */
.menu-btn.secondary {
    color: var(--text-secondary);
    border-color: rgba(0, 150, 200, 0.3);
    background: linear-gradient(135deg, rgba(0, 30, 70, 0.7), rgba(0, 15, 45, 0.85));
}

.menu-btn.secondary:hover,
.menu-btn.secondary:active {
    color: var(--med-bright);
    background: linear-gradient(135deg, rgba(0, 40, 90, 0.8), rgba(0, 20, 55, 0.9));
    border-color: rgba(0, 180, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        0 4px 14px rgba(0, 0, 0, 0.6);
}

/* Tertiary */
.menu-btn.tertiary {
    color: #00f0c0;
    border-color: rgba(0, 200, 150, 0.4);
    background: linear-gradient(135deg, rgba(0, 30, 70, 0.75), rgba(0, 15, 45, 0.9));
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(0, 200, 150, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.5);
}

.menu-btn.tertiary:hover,
.menu-btn.tertiary:active {
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.85), rgba(0, 20, 55, 0.95));
    border-color: rgba(0, 240, 180, 0.55);
    transform: translateY(-2px);
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        0 0 18px rgba(0, 200, 150, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.6);
}

/* Active press */
.menu-btn:active {
    transform: translateY(1px) !important;
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.6),
        inset -2px -2px 4px rgba(0, 200, 255, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

/* Disabled */
.menu-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.menu-btn:disabled::before {
    display: none;
}

/* ---------- Toggle Switch ---------- */
.toggle-switch {
    width: 48px;
    height: 26px;
    background: linear-gradient(135deg, rgba(0, 10, 30, 0.9), rgba(0, 5, 20, 0.95));
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition-normal);
    flex-shrink: 0;
    border: 1px solid rgba(0, 100, 160, 0.3);
    outline: none;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.6),
        inset -1px -1px 3px rgba(0, 200, 255, 0.04);
}

.toggle-switch.active {
    background: linear-gradient(135deg, rgba(0, 80, 160, 0.7), rgba(0, 150, 200, 0.5));
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 200, 255, 0.25);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(0, 100, 160, 0.8), rgba(150, 200, 230, 0.9));
    top: 2px;
    left: 2px;
    transition: left var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.5),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 150, 200, 0.4);
}

.toggle-switch.active::after {
    left: 24px;
    background: linear-gradient(135deg, var(--med-bright), #00f0ff);
    box-shadow: 
        0 0 8px rgba(0, 200, 255, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.6),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.toggle-switch:hover { opacity: 0.95; }
.toggle-switch:active::after { width: 26px; }
.toggle-switch.active:active::after { left: 20px; }

/* ---------- Reset Button ---------- */
.reset-btn {
    font-family: var(--font-display);
    font-size: 11px;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid #a84432;
    background: linear-gradient(135deg, rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85));
    color: #d4855a;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.reset-btn:hover {
    background: linear-gradient(135deg, #a84432, #8a3828);
    border-color: #d4855a;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(212, 133, 90, 0.3);
    color: #f0b090;
}

.reset-btn:active {
    transform: scale(0.95);
}

/* ---------- Confirm Dialog ---------- */
.confirm-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--z-ads) + 10);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeIn 0.2s ease;
}

.confirm-dialog.hidden { display: none; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.confirm-box {
    background: linear-gradient(135deg, rgba(0, 20, 55, 0.97), rgba(0, 8, 25, 0.98));
    border: 2px solid rgba(0, 180, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(0, 150, 255, 0.1);
}

.confirm-box .confirm-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--med-bright);
    margin-bottom: var(--space-sm);
    text-shadow: 
        0 0 8px rgba(0, 200, 255, 0.5),
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.confirm-box .confirm-message {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.confirm-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.confirm-actions .confirm-yes,
.confirm-actions .confirm-no {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    min-width: 80px;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.confirm-actions .confirm-yes {
    color: #d4855a;
    border-color: #a84432;
    background: linear-gradient(135deg, rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9));
}

.confirm-actions .confirm-yes:hover {
    background: linear-gradient(135deg, #a84432, #8a3828);
    border-color: #d4855a;
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 133, 90, 0.3);
}

.confirm-actions .confirm-no {
    color: var(--text-secondary);
    border-color: rgba(0, 150, 200, 0.35);
    background: linear-gradient(135deg, rgba(0, 25, 60, 0.7), rgba(0, 12, 35, 0.85));
}

.confirm-actions .confirm-no:hover {
    background: linear-gradient(135deg, rgba(0, 35, 80, 0.85), rgba(0, 18, 50, 0.92));
    border-color: rgba(0, 180, 255, 0.5);
    color: var(--med-bright);
}

.confirm-actions .confirm-yes:active,
.confirm-actions .confirm-no:active {
    transform: scale(0.95);
}

/* ---------- Spinner ---------- */
.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 30, 70, 0.8);
    border-top-color: var(--med-bright);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Badge ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.badge.badge-boss {
    background: linear-gradient(135deg, rgba(168, 68, 50, 0.3), rgba(138, 56, 40, 0.3));
    color: #d4855a;
    border: 1px solid #a84432;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 8px rgba(212, 133, 90, 0.3);
}

.badge.badge-new {
    background: linear-gradient(135deg, rgba(0, 60, 100, 0.3), rgba(0, 100, 150, 0.3));
    color: #00f0ff;
    border: 1px solid rgba(0, 180, 255, 0.4);
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 200, 255, 0.25);
}

/* ---------- Divider ---------- */
.divider {
    width: 100%;
    max-width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 255, 0.3), transparent);
    margin: var(--space-lg) 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ---------- Icon Button ---------- */
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-stone);
    background: linear-gradient(135deg, rgba(0, 30, 70, 0.75), rgba(0, 15, 45, 0.9));
    border: 1px solid rgba(0, 150, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
    padding: 0;
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.4);
}

.icon-btn:hover {
    background: linear-gradient(135deg, rgba(0, 45, 100, 0.85), rgba(0, 25, 65, 0.95));
    border-color: rgba(0, 200, 255, 0.45);
}

.icon-btn:active {
    transform: scale(0.95);
}

.icon-btn .btn-icon {
    width: 18px;
    height: 18px;
}

/* ---------- Progress Bar ---------- */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 10, 30, 0.8);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 120, 180, 0.25);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width var(--transition-normal);
    background: linear-gradient(90deg, rgba(0, 150, 220, 0.8), var(--med-bright));
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 4px 4px 0 0;
}

/* ---------- Card Component ---------- */
.card {
    background: linear-gradient(135deg, rgba(0, 20, 50, 0.35), rgba(0, 8, 25, 0.4));
    border: 1px solid rgba(0, 150, 200, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.4);
}

.card:hover {
    border-color: rgba(0, 180, 255, 0.35);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 180, 255, 0.1);
}

/* ---------- Notification Dot ---------- */
.notification-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--med-bright);
    box-shadow: 
        0 0 8px rgba(0, 200, 255, 0.8),
        inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -2px;
    right: -2px;
    animation: dotPulse 1.5s ease infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px rgba(0, 200, 255, 0.8);
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
        box-shadow: 0 0 12px rgba(0, 200, 255, 1);
    }
}



/* =============================================
   HINT SYSTEM
   ============================================= */

.hint-btn {
    position: fixed;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    z-index: 200;
    display: none; /* shown via JS */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 10px;
    min-width: 48px;
    background: rgba(10, 30, 55, 0.95);
    border: 1.5px solid rgba(255, 200, 0, 0.65);
    border-radius: 14px;
    color: #ffd700;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s, opacity 0.18s;
    box-shadow: 0 0 14px rgba(255, 200, 0, 0.25), 0 2px 8px rgba(0,0,0,0.5);
}

.hint-btn:hover:not(:disabled) {
    background: rgba(255, 200, 0, 0.15);
    border-color: #ffd700;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 0 18px rgba(255, 200, 0, 0.4);
}

.hint-btn:disabled,
.hint-btn.hint-exhausted {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.3);
    box-shadow: none;
}

.hint-btn-icon {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.hint-btn-label {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.hint-badge {
    background: #ffd700;
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(255, 200, 0, 0.7);
    flex-shrink: 0;
}

/* Hint Banner */
.hint-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 300;
    background: rgba(10, 25, 45, 0.97);
    border: 1.5px solid rgba(255, 200, 0, 0.7);
    border-radius: 14px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 24px rgba(255, 200, 0, 0.2);
    white-space: nowrap;
    max-width: 90vw;
}

.hint-banner.hint-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hint-banner-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ffd700;
    text-transform: uppercase;
    white-space: nowrap;
}

.hint-banner-text {
    font-size: 1.0rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.25em;
    font-family: 'Orbitron', monospace;
    white-space: nowrap;
}

/* =============================================
   REVIVE SYSTEM
   ============================================= */

.revive-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.revive-overlay.revive-active {
    opacity: 1;
}

.revive-overlay.hidden {
    display: none !important;
}

.revive-box {
    background: linear-gradient(160deg, #0a1a2e 0%, #06101c 100%);
    border: 2px solid rgba(0, 200, 255, 0.35);
    border-radius: 20px;
    padding: 32px 28px 26px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 200, 255, 0.12), 0 20px 60px rgba(0,0,0,0.6);
    transform: translateY(0);
}

.revive-icon {
    font-size: 3rem;
    margin-bottom: 8px;
    animation: revivePulse 1.2s ease infinite;
}

@keyframes revivePulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.12); }
}

.revive-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ff4455;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(255, 60, 70, 0.6);
}

.revive-subtitle {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    line-height: 1.4;
}

.revive-count {
    display: inline-block;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #00c8ff;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

/* Ad countdown area */
.revive-ad-area {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
}

.revive-ad-area.hidden { display: none; }

.revive-ad-timer {
    font-size: 0.88rem;
    font-weight: 700;
    color: #00e8ff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

.revive-ad-bar-wrap {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.revive-ad-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00c8ff, #00e8ff);
    border-radius: 10px;
    animation: reviveBarDrain 3s linear forwards;
}

@keyframes reviveBarDrain {
    from { width: 100%; }
    to   { width: 0%; }
}

/* Revive action buttons */
.revive-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.revive-btn-watch {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #006080, #00a0c0);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 18px rgba(0, 150, 200, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.revive-btn-watch:hover:not(:disabled) {
    background: linear-gradient(135deg, #007a9e, #00bce0);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 180, 240, 0.5);
}

.revive-btn-watch:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.revive-btn-icon {
    font-size: 1rem;
}

.revive-btn-decline {
    width: 100%;
    padding: 9px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
}

.revive-btn-decline:hover {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.35);
}

