:root {
    --bg: #050505;
    --card: #111114;
    --accent: #3b82f6;
    --border: rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    background: var(--bg);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: none; /* Default cursor hidden */
    user-select: none;
}

/* Engaged Cursor Styling */
#cursor-main {
    position: fixed;
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
}

#cursor-follower {
    position: fixed;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

/* Centered Layout */
.wrapper { text-align: center; width: min(90%, 420px); }

.profile-static img {
    width: 100px; height: 100px;
    border-radius: 28px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.name { font-size: 2.8rem; margin: 0; letter-spacing: -1.5px; }
.sub-text { color: #888; margin-top: 5px; font-size: 0.95rem; }
.sub-text span { color: var(--accent); font-weight: 600; }

/* Flowing Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 2.5rem;
}

.flow-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 25px 15px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: flowFloat 6s infinite ease-in-out;
}

@keyframes flowFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Offset animation timing for a water-like flow */
.flow-card:nth-child(2) { animation-delay: -1.5s; }
.flow-card:nth-child(3) { animation-delay: -3s; }
.flow-card:nth-child(4) { animation-delay: -4.5s; }

.flow-card:hover {
    border-color: var(--accent);
    background: #16161a;
    transform: scale(1.05) !important;
}

.flow-card i { font-size: 1.4rem; color: #555; transition: 0.3s; }
.flow-card:hover i { color: var(--accent); }
.label { font-size: 0.85rem; font-weight: 500; color: #888; }
.flow-card:hover .label { color: #fff; }