        :root {
            --bg: #020617;
            --card-bg: rgba(15, 23, 42, 0.7);
            --accent: #10b981;
            --accent-glow: rgba(16, 185, 129, 0.2);
            --text: #f8fafc;
            --text-muted: #94a3b8;
            --border: rgba(255, 255, 255, 0.08);
            --font-main: 'Inter', sans-serif;
            --font-mono: 'Fira Code', monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            padding: 20px;
        }

        .bg-glow {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-glow) 0%, transparent 50%);
            z-index: -1;
            pointer-events: none;
        }

        .bento-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(4, 180px);
            gap: 20px;
            max-width: 1100px;
            width: 100%;
        }

        .tile {
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .tile:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .hero-tile { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
        .social-tile { grid-column: span 1; grid-row: span 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: var(--text); }
        .work-tile { grid-column: span 2; grid-row: span 2; background: rgba(30, 41, 59, 0.5); display: flex; flex-direction: column; justify-content: space-between; }
        .small-tile { grid-column: span 1; grid-row: span 1; display: flex; flex-direction: column; justify-content: center; align-items: center;}

        .status-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            margin-right: 10px;
            position: relative;
        }

        .pulse-dot::after {
            content: '';
            position: absolute;
            width: 100%; height: 100%;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-ring 1.5s infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(3); opacity: 0; }
        }

        .progress-container {
            width: 100%;
            height: 8px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            margin: 20px 0 10px 0;
            overflow: hidden;
        }
        
        .social-tile {
            cursor: pointer;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), #34d399);
            border-radius: 10px;
            box-shadow: 0 0 15px var(--accent-glow);
            transition: width 1s ease-in-out;
        }

        h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 15px; }
        h1 span { color: var(--accent); }
        h2 { font-size: 1.5rem; margin-bottom: 10px; }
        .mono { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }

        .social-tile i { font-size: 2.2rem; margin-bottom: 12px; transition: transform 0.3s; }
        .social-tile:hover i { transform: scale(1.1) rotate(-5deg); }

        @media (max-width: 900px) {
            .bento-container { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
            .hero-tile, .work-tile { grid-column: span 2; }
        }
        @media (max-width: 500px) {
            .bento-container { grid-template-columns: 1fr; }
            .hero-tile, .work-tile, .social-tile, .small-tile { grid-column: span 1; }
        }