* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    width: 100%; min-height: 100vh;
    background: #e0dfd6;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Orbs */
.orb {
    position: fixed;
    width: 800px; /* Made larger for softer look */
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.orb-1 {
    background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0) 70%);
    top: -20%;
    left: -10%;
    animation: drift 25s infinite alternate ease-in-out;
}

.orb-2 {
    background: radial-gradient(circle, #b2b0a3 0%, rgba(178,176,163,0) 70%);
    bottom: -20%;
    right: -10%;
    animation: drift 30s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(150px, 100px) scale(1.1); }
}

/* The Glass Utility */
.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

/* Global Buttons */
.main-btn {
    background: #1a1a1a; color: white; border: none;
    padding: 15px 30px; border-radius: 50px; cursor: pointer;
    font-weight: 700; transition: 0.3s;
}
.main-btn:hover { transform: scale(1.02); background: #000; }

/* Navigation Essentials */
.dashboard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    margin: 20px auto;
    width: 95%;
    border-radius: 100px;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-item {
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.nav-item.active {
    background: #1a1a1a;
    color: white;
}