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

:root {
    --bg-color: #f3f4f6;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --accent-red: #ef4444;
    --accent-green: #34d399;
    --primary-orange: #f97316;
    --primary-orange-hover: #ea580c;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --container-width: 1200px;
    --font-marker: 'Comic Sans MS', 'Comic Sans', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Icon Utility */
svg {
    display: block;
    width: 20px;
    height: 20px;
    stroke-width: 2;
}
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* --- 2. Ambient Backgrounds --- */
.ambient-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background:
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05), transparent 40%);
    z-index: -2;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}
.blob-1 { top: -10%; left: -10%; width: 40vw; height: 40vw; background: #fed7aa; }
.blob-2 { bottom: -10%; right: -10%; width: 50vw; height: 50vw; background: #bfdbfe; animation-delay: -3s; }
.blob-accent { top: 40%; left: 40%; width: 30vw; height: 30vw; background: #e2e8f0; opacity: 0.8; animation-delay: -6s; }

.avatars { display: flex; }
.avatar {
    width: 32px; height: 32px;
    border-radius: 50%; border: 2px solid white;
    background: #f3f4f6;
    margin-left: -0.75rem;
}
.avatar:first-child { margin-left: 0; }

.btn-orange {
    position: relative; overflow: hidden;
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.25);
}
.btn-orange:hover { background: var(--primary-orange-hover); transform: translateY(-2px); }
.btn-orange::after {
    content: ''; position: absolute; top: 0; left: -50%; width: 300%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: shimmer 6s infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, -40px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.02); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: rgba(156, 163, 175, 0.5); border-radius: 10px; border: 3px solid rgba(255, 255, 255, 0.8); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-orange); }