:root {
    --primary-color: #5eead4;
    --secondary-color: #ccfbf1;
    --accent-color: #0d9488;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.58);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(13, 148, 136, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Orbs */
.background-elements {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1; overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px; height: 400px;
    background: var(--primary-color);
    top: -100px; left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: var(--secondary-color);
    bottom: -150px; right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px; height: 300px;
    background: #a7f3d0;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Main Layout */
.dashboard-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 100vh;
}

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}
.dashboard-header:hover { transform: translateY(-2px); }

.profile-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(94, 234, 212, 0.45);
}

.greeting-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.greeting-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.date-display {
    text-align: right;
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Vault Section */
.vault-section { flex: 1; }

.section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    padding-left: 1rem;
    position: relative;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 20px;
    background: var(--primary-color);
    border-radius: 4px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vault-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vault-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}
.vault-card:hover::after { left: 150%; }

.active-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(94, 234, 212, 0.18);
    border-color: rgba(94, 234, 212, 0.55);
}

.locked-card {
    opacity: 0.7;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.card-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

.card-content h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-status {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), #34d399);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(94, 234, 212, 0.3);
}

/* Footer */
.dashboard-footer {
    text-align: center;
    padding: 2rem 0;
}
.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .date-display { text-align: left; }
    .dashboard-container { padding: 1rem; }
}
