.developer-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: bottom right;
}

.developer-card {
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-align: center;
    background: rgba(15, 25, 35, 0.8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    color: #e6eaef;
    border: 1px solid rgba(74, 85, 104, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.developer-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: #4f6d8a;
    border-radius: 6px 6px 0 0;
}
