body { 
    background-color: #f0f4f8; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    overflow-x: hidden; 
    color: #1e293b;
}

/* Modern Background Glows */
.bg-blobs {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
}
.bg-blobs::before, .bg-blobs::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}
.bg-blobs::before {
    background: rgba(99, 102, 241, 0.3); /* Indigo */
    top: -100px; left: -100px;
}
.bg-blobs::after {
    background: rgba(168, 85, 247, 0.3); /* Purple */
    bottom: -100px; right: -100px;
    animation-delay: -5s;
}

/* Premium Glass Card */
.glass-card { 
    background: rgba(255, 255, 255, 0.75); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8); 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0,0,0,0.02);
}

/* Smooth Animations */
.fade-in { animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.slide-up { animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(30px, 30px); } }

#dashboardSection { display: none; }

/* Stunning Segmented Control Visual Radios */
.shape-radio:checked + div {
    border-color: #6366f1; /* Indigo-500 */
    background-color: #eef2ff; /* Indigo-50 */
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.15);
}
.shape-radio:checked + div .fill-target {
    background-color: #6366f1;
}
.shape-icon { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.shape-icon:hover { transform: translateY(-2px); border-color: #cbd5e1; }

/* Beautiful Input Fields */
.premium-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.premium-input:focus {
    background: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

/* Color Picker Styling */
input[type="color"] {
    -webkit-appearance: none;
    border: none;
    padding: 0;
}
input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
input[type="color"]::-webkit-color-swatch { border: none; border-radius: 0.5rem; }

/* Loading Pulse */
.img-loading { animation: pulse 1.5s infinite; opacity: 0.5; filter: grayscale(100%); transition: all 0.3s ease; }

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #94a3b8; }