@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --bg-blue: #e0f2fe;
    --clay-shadow: 0 16px 32px rgba(30, 100, 180, 0.15);
    --clay-inset: inset 0 2px 4px rgba(255, 255, 255, 0.9), inset 0 -4px 6px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-blue);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Blobs */
.blob-1, .blob-2 {
    position: fixed;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
.blob-1 { top: -100px; left: -100px; opacity: 0.6; }
.blob-2 { bottom: -100px; right: -100px; opacity: 0.4; }

/* Claymorphism Utility */
.clay-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--clay-shadow);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clay-card:hover { transform: translateY(-5px); }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3), inset 0 2px 4px rgba(255,255,255,0.3);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 14px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-secondary {
    background: #1e293b;
    color: white;
    padding: 8px 16px;
    border-radius: 14px;
    font-weight: 700;
}

/* Inputs */
.clay-input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 8px;
    text-align: center;
    font-weight: 700;
}

/* Stats */
.stat-box {
    padding: 20px;
    text-align: center;
}
.stat-val { font-size: 1.5rem; font-weight: 800; color: #1e40af; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #64748b; }

/* Tags */
.tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #3b82f6;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }