.copyright-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: default;
    overflow: hidden;
    white-space: nowrap;
    width: 40px;
    /* Initial width - just the icon */
    height: 40px;
    box-shadow: none;
    max-width: calc(100vw - 40px);
}

.copyright-container:hover {
    width: auto;
    /* Expand on hover */
    padding-right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.copyright-icon {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-text {
    opacity: 0;
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.copyright-container:hover .copyright-text {
    opacity: 1;
    transform: translateX(0);
}