:root {
            --bg: #0a0a10;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.08);
            --accent: #ffffff;
            --text-secondary: #a1a1aa;
            --glow: rgba(255, 255, 255, 0.1);
            --font: 'Outfit', sans-serif;
        }

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

        body {
            background-color: var(--bg);
            color: white;
            font-family: var(--font);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* CUSTOM CURSOR - only on non-touch devices */
        @media (pointer: fine) {
            body { cursor: none; }
            a, button { cursor: none; }

            #cursor {
                position: fixed;
                top: 0; left: 0;
                width: 10px; height: 10px;
                background: white;
                border-radius: 50%;
                pointer-events: none;
                z-index: 99999;
                transform: translate(-50%, -50%);
                box-shadow: 0 0 10px 4px rgba(255,255,255,0.6), 0 0 30px 10px rgba(255,255,255,0.2);
                transition: transform 0.08s ease, box-shadow 0.2s ease;
            }
            #cursor.hovered {
                transform: translate(-50%, -50%) scale(1.8);
                box-shadow: 0 0 16px 6px rgba(255,255,255,0.8), 0 0 50px 18px rgba(255,255,255,0.3);
            }
        }

        /* AURORA */
        .aurora {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .aurora div {
            position: absolute;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
            border-radius: 50%;
            filter: blur(80px);
            animation: move 20s infinite alternate;
        }
        @keyframes move {
            from { transform: translate(-10%, -10%); }
            to { transform: translate(20%, 20%); }
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0; width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            background: rgba(10, 10, 16, 0.7);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        .logo { font-weight: 700; font-size: 1.5rem; letter-spacing: -1px; }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .nav-links a:hover { color: white; text-shadow: 0 0 10px white; }

        /* HERO */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        .status-badge {
            background: var(--card-bg);
            border: 1px solid var(--border);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #ffffff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .status-dot {
            width: 8px; height: 8px;
            background: #15ff00;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ff40;
        }
        .hero h1 {
            font-size: clamp(3rem, 10vw, 6rem);
            font-weight: 700;
            letter-spacing: -3px;
            margin-bottom: 10px;
            background: linear-gradient(to bottom, #fff 40%, #555);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p { color: var(--text-secondary); font-size: 1.2rem; max-width: 600px; }
        .hero-btn {
            margin-top: 30px;
            padding: 12px 30px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--card-bg);
            color: white;
            text-decoration: none;
            font-family: var(--font);
            font-size: 0.95rem;
            transition: 0.3s;
        }
        .hero-btn:hover { background: white; color: black; }

        /* SLIDER */
        .slider-section {
            padding: 60px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
            background: rgba(255,255,255,0.01);
        }
        .slider-track {
            display: flex;
            width: calc(220px * 16);
            animation: scroll 30s linear infinite;
        }
        .logo-item {
            width: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 1rem;
            color: var(--text-secondary);
            filter: grayscale(1);
            transition: 0.5s;
        }
        .logo-item:hover { filter: grayscale(0); color: white; }
        .logo-item img { width: 24px; height: 24px; object-fit: contain; }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-220px * 8)); }
        }

        /* CONTAINER */
        .container {
            max-width: 1100px;
            margin: 100px auto;
            padding: 0 20px;
        }
        .section-title { font-size: 2rem; margin-bottom: 40px; font-weight: 700; }

        /* BENTO GRID */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 200px;
            gap: 20px;
        }
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: 0.4s;
        }
        .card:hover {
            border-color: rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            transform: translateY(-5px);
        }
        .about-card { grid-column: span 2; grid-row: span 2; }
        .skills-card { grid-column: span 1; grid-row: span 2; }
        .status-card { grid-column: span 1; grid-row: span 1; }
        .extra-card { grid-column: span 2; grid-row: span 1; }
        .card h3 { margin-bottom: 15px; font-size: 1.3rem; }
        .card p { color: var(--text-secondary); font-size: 0.95rem; }

        /* SKILL BARS */
        .skill-item { margin-bottom: 14px; }
        .skill-name {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            margin-bottom: 6px;
            color: var(--text-secondary);
        }
        .skill-bar {
            height: 6px;
            background: rgba(255,255,255,0.07);
            border-radius: 10px;
            overflow: hidden;
        }
        .skill-progress {
            height: 100%;
            background: white;
            border-radius: 10px;
        }

        /* TIMELINE */
        .timeline { position: relative; padding-left: 30px; }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 1px;
            background: var(--border);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -34px; top: 6px;
            width: 10px; height: 10px;
            background: white;
            border-radius: 50%;
        }
        .timeline-content {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 24px;
            transition: 0.3s;
        }
        .timeline-content:hover { border-color: rgba(255,255,255,0.2); }
        .timeline-content h3 { margin-bottom: 4px; }
        .timeline-date { font-size: 0.8rem; color: #4ade80; margin-bottom: 8px; }

        /* PARTNERSHIP */
        .partnership-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px;
            display: flex;
            gap: 40px;
            align-items: center;
            transition: 0.4s;
        }
        .partnership-card:hover { border-color: rgba(255,255,255,0.2); }
        .partnership-card img { width: 160px; border-radius: 12px; }
        .partnership-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
        .partnership-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 10px; }
        .benefit-item { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.9rem; margin: 6px 0; }
        .benefit-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
        .partnership-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 24px;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            color: white;
            text-decoration: none;
            font-family: var(--font);
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .partnership-btn:hover { background: white; color: black; }

        /* PROJECTS */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .project-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            transition: 0.4s;
        }
        .project-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
        .project-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
        .project-info { padding: 24px; }
        .project-info h3 { margin-bottom: 8px; }
        .project-info p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 14px; }
        .project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
        .project-tag {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 3px 10px;
            font-size: 0.78rem;
            color: var(--text-secondary);
        }
        .project-link {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            color: white;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
        }
        .project-link:hover { background: white; color: black; }

        /* FOOTER */
        footer {
            padding: 100px 20px;
            text-align: center;
            border-top: 1px solid var(--border);
        }
        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 30px;
        }
        .social-btn {
            width: 56px; height: 56px;
            border-radius: 16px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: 0.3s;
            text-decoration: none;
            font-size: 1.2rem;
        }
        .social-btn:hover { background: white; color: black; transform: translateY(-5px); }

        /* CONTACT SECTION */
        .contact-layout {
            display: flex;
            gap: 60px;
        }
        .contact-info-block { flex: 1; display: flex; flex-direction: column; align-items: center; }
        @media (min-width: 901px) {
            .contact-items-grid { width: 100%; max-width: 460px; }
        }
        .contact-sub {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            text-align: center;
        }
        .contact-items-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 10px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 14px 18px;
            transition: 0.3s;
        }
        .contact-item:hover {
            border-color: rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
        }
        .contact-icon-wrap {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(99, 102, 241, 0.15);
            border: 1px solid rgba(99, 102, 241, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #818cf8;
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .contact-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }
        .contact-value {
            font-size: 0.9rem;
            color: white;
        }

        /* SOCIAL ICON BUTTONS */
        .social-icons-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        @media (min-width: 901px) {
            .social-icons-row {
                justify-content: center;
            }
            .contact-sub {
                text-align: center;
            }
        }
        .social-icon-btn {
            width: 44px; height: 44px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            opacity: 0.82;
            flex-shrink: 0;
        }
        .social-icon-btn:hover {
            opacity: 1;
            transform: translateY(-4px);
        }
        .social-icon-btn img {
            width: 44px; height: 44px;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        footer {
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border);
            margin-top: 60px;
        }

        @media (max-width: 900px) {
            .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
            .about-card, .skills-card, .status-card, .extra-card { grid-column: span 1; }
            .nav-links { display: none; }
            .partnership-card { flex-direction: column; }
            .partnership-card img { width: 120px; }
        }