body { font-family: 'Inter', sans-serif; }
.glass { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); }
.gradient-text { 
    background: linear-gradient(90deg, #6366f1, #a855f7); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
.blink-dot {
    width: 8px;
    height: 8px;
    background-color: #6366f1;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: pulse-dot 2s infinite;
}
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
    background: linear-gradient(135deg, #1e1e2e 0%, #0a0a0c 100%);
    margin: 10% auto;
    padding: 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.close-modal:hover,
.close-modal:focus {
    color: #fff;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-content.show {
    animation: slideDown 0.3s ease-out;
}
/* SweetAlert2 theme to match site */
.swal2-custom-popup {
    background: linear-gradient(135deg, #1e1e2e 0%, #0a0a0c 100%) !important;
    color: #e6eef8 !important;
    border: 1px solid rgba(99,102,241,0.25) !important;
    box-shadow: 0 10px 40px rgba(99,102,241,0.18) !important;
    border-radius: 16px !important;
}
.swal2-custom-title {
    color: #fff !important;
    font-weight: 700 !important;
}
.swal2-custom-content {
    color: #cbd5e1 !important;
}
.swal2-styled.swal2-confirm {
    background: #6366f1 !important; /* indigo */
    color: #fff !important;
    border-radius: 10px !important;
    padding: .6rem 1rem !important;
}
.swal2-styled.swal2-deny, .swal2-styled.swal2-cancel {
    background: #10b981 !important; /* green */
    color: #fff !important;
    border-radius: 10px !important;
    padding: .6rem 1rem !important;
}
