body .gys-active-resume-pill {
    position: fixed !important;
    left: 50% !important;
    top: calc(14px + env(safe-area-inset-top, 0px)) !important;
    width: min(92vw, 460px) !important;
    transform: translate3d(-50%, -18px, 0) scale(0.98) !important;
    z-index: 2147482200 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(.16, 1, .22, 1),
        visibility 0s linear 180ms !important;
}

body .gys-active-resume-pill.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(-50%, 0, 0) scale(1) !important;
    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(.16, 1, .22, 1),
        visibility 0s linear 0s !important;
}

body .gys-active-resume-pill[hidden] {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body .gys-active-resume-card {
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 10px 10px 10px 12px !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(173, 255, 0, 0.24), transparent 38%),
        rgba(14, 14, 14, 0.94) !important;
    border: 1px solid rgba(173, 255, 0, 0.22) !important;
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    font-family: Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body .gys-active-resume-dot {
    flex: 0 0 10px !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: #ADFF00 !important;
    box-shadow: 0 0 0 5px rgba(173, 255, 0, 0.1), 0 0 18px rgba(173, 255, 0, 0.65) !important;
    animation: gysActiveResumePulse 1.7s ease-in-out infinite !important;
}

body .gys-active-resume-info {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
}

body .gys-active-resume-title {
    color: #ffffff !important;
    font-size: 12.5px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

body .gys-active-resume-meta {
    color: rgba(245, 245, 245, 0.62) !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

body .gys-active-resume-btn {
    appearance: none !important;
    -webkit-appearance: none !important;
    flex: 0 0 auto !important;
    min-height: 34px !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #ADFF00 !important;
    color: #050505 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    font-family: inherit !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

body .gys-active-resume-btn:active {
    transform: scale(0.97) !important;
}

body.gys-active-resume-visible .gys-app-header {
    margin-top: 54px !important;
}

body.gys-active-resume-visible .gys-pwa-prompt {
    bottom: calc(124px + env(safe-area-inset-bottom, 0px)) !important;
}

@keyframes gysActiveResumePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.68;
        transform: scale(0.82);
    }
}

@media (max-width: 380px) {
    body .gys-active-resume-pill {
        width: calc(100vw - 18px) !important;
    }

    body .gys-active-resume-title {
        font-size: 12px !important;
    }

    body .gys-active-resume-meta {
        font-size: 10px !important;
    }

    body .gys-active-resume-btn {
        padding: 0 12px !important;
    }
}