@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.vpn-card {
    background: linear-gradient(145deg, #1f2937, #111827);
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.vpn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
}

.connect-btn {
    background: linear-gradient(to right, #f97316, #ea580c);
}

.connect-btn:hover {
    background: linear-gradient(to right, #ea580c, #c2410c);
}

.server-location {
    background-color: rgba(249, 115, 22, 0.1);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #374151;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #f97316;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}