body {
    background: url('https://vip-panel.site/public/abugmra.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.gradient-border {
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff7f50, #ff4500);
    border-image-slice: 1;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.btn-primary {
    background: linear-gradient(45deg, #ff7f50, #ff4500);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.text-muted {
    color: #d2691e !important;
}

.form-control {
    border: 1px solid #ff7f50;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.form-control:focus {
    border-color: #ff4500;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.telegram-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.telegram-icon {
    font-size: 2rem;
    color: #ff7f50;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #ff7f50;
    border-radius: 50%;
    background-color: rgba(255, 127, 80, 0.1);
    box-shadow: 0 0 10px rgba(255, 127, 80, 0.3);
}

.telegram-icon:hover {
    transform: scale(1.2);
    color: #ff4500;
    border-color: #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
}

.swal2-popup-custom {
    border: 2px solid #ff7f50 !important;
    border-radius: 10px !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
}