.wp-com-separator { display: none !important; }

.wp-com-login-trigger {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse-white 2s infinite;
    z-index: 1000;
    border: 2px solid #333;
    transition: transform 0.2s;
}

.wp-com-login-trigger:hover {
    transform: translateX(-50%) scale(1.1);
    background: #111;
}

.wp-com-login-trigger .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    margin: 0;
    line-height: 1;
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.wp-com-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.wp-com-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wp-com-overlay-content {
    text-align: center;
    color: #fff;
}

.wp-com-big-lock .dashicons {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: #fff;
    transition: color 0.3s;
}

.unlocking {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.wp-com-loading-text {
    margin-top: 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    min-height: 20px;
    transition: opacity 0.1s;
}

@media screen and (max-width: 600px) {
    .wp-com-login-trigger {
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .wp-com-login-trigger .dashicons {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}
