.magic-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 30px;
}

.magic-toggle:hover {
    border-color: #4f8cff;
    box-shadow: 0 0 15px rgba(79, 140, 255, 0.25);
}

.toggle-switch {
    width: 42px;
    height: 24px;
    background: #30363d;
    border-radius: 20px;
    position: relative;
    transition: 0.3s ease;
}

.toggle-knob {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: 0.3s ease;
}

.magic-toggle:hover .toggle-switch {
    background: #4f8cff;
}

.magic-toggle:hover .toggle-knob {
    transform: translateX(18px);
}