.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #000;
    font-size: 14px;
    transform: translateX(-120%);
    opacity: 0;
}

.copy-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.copy-notification::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300A651'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
 
.game__description code {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.game__description code:hover {
    opacity: 0.8;
} 