:root {
            --glass-bg: rgba(20, 20, 20, 0.6); /* Etwas dunkler für mehr Kontrast */
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.15);
            --text-main: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.6);
            
            --accent-tech: #2997ff;
            --accent-art: #bf5af2;
            --accent-green: #30d158;
            --accent-orange: #ff9f0a;
            
            --bg-dark: #050505;
            --font-stack: 'Inter', -apple-system, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-stack);
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- BACKGROUND --- */
        .ambient-light {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            overflow: hidden; z-index: -1; background: #020204;
        }
        .orb {
            position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3;
            animation: float 25s infinite ease-in-out;
        }
        .orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, var(--accent-tech) 0%, transparent 70%); top: -20%; left: -10%; }
        .orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-art) 0%, transparent 70%); bottom: -10%; right: -10%; animation-delay: -5s; }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -50px); }
        }

        /* --- HEADER --- */
        header {
            width: 100%; max-width: 1200px; padding: 30px 20px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 50;
        }
        .logo { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; font-family: var(--font-mono); }
        .logo span { color: var(--accent-tech); }

        /* --- GRID LAYOUT (The Bento) --- */
        .bento-container {
            width: 100%; max-width: 1200px; padding: 0 20px 40px 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: minmax(160px, auto); /* Flexiblere Höhe */
            gap: 24px; /* Mehr Abstand für "Clean Look" */
            margin-bottom: 100px;
        }

        /* --- CARD BASE --- */
        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            border-radius: 24px; /* Etwas eckiger für technischeren Look */
            padding: 28px;
            display: flex; flex-direction: column; position: relative;
            overflow: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .card:hover {
            border-color: var(--glass-highlight);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
            z-index: 2;
        }

        /* Typography Helper */
        h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; line-height: 1.1; }
        h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); }
        h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
        p { color: var(--text-muted); line-height: 1.6; font-size: 0.9rem; }
        .label { 
            font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; 
            color: var(--text-muted); font-weight: 700; margin-bottom: 15px; 
            display: flex; align-items: center; gap: 8px; opacity: 0.8;
        }
        
        /* Tags */
        .tag-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
        .tag { 
            font-size: 0.75rem; padding: 6px 12px; border-radius: 8px; 
            background: rgba(255,255,255,0.06); color: var(--text-muted);
            border: 1px solid transparent; font-weight: 500; font-family: var(--font-mono);
        }
        .tag.tech { color: #a0cfff; background: rgba(41, 151, 255, 0.1); }
        .tag.art { color: #eebbff; background: rgba(191, 90, 242, 0.1); }
        .tag.ops { color: #ffeebb; background: rgba(255, 159, 10, 0.1); }

        /* --- SECTION 1: INTRO & EXPERIENCE (Top Row) --- */
        
        /* Profile (2x2) */
        .card-hero {
            grid-column: span 2; grid-row: span 2;
            justify-content: space-between;
            background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0));
        }
        .hero-header { display: flex; gap: 20px; align-items: center; }
        .avatar {
            width: 80px; height: 80px; border-radius: 20px;
            background: linear-gradient(135deg, #222, #111);
            display: grid; place-items: center; font-size: 2.5rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .hero-badges { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
        .badge {
            padding: 6px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
            display: flex; align-items: center; gap: 6px; border: 1px solid transparent;
        }
        .badge.open { background: rgba(48, 209, 88, 0.1); color: var(--accent-green); border-color: rgba(48, 209, 88, 0.2); }
        .badge.poly { background: rgba(255,255,255,0.05); color: var(--text-main); border-color: rgba(255,255,255,0.1); }
        .dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; box-shadow: 0 0 8px currentColor; }

        /* Timeline / Werdegang (2x2) - JETZT OBEN */
        .card-timeline {
            grid-column: span 2; grid-row: span 2;
        }
        .timeline-wrapper {
            display: flex; flex-direction: column; gap: 0;
            margin-top: 10px; overflow-y: auto; max-height: 320px; /* Scrollbar wenn nötig */
        }
        .timeline-entry {
            padding-left: 20px; border-left: 2px solid rgba(255,255,255,0.08);
            position: relative; padding-bottom: 25px;
        }
        .timeline-entry::before {
            content: ''; position: absolute; left: -5px; top: 6px;
            width: 8px; height: 8px; border-radius: 50%; background: var(--bg-dark);
            border: 2px solid var(--accent-tech);
        }
        .timeline-entry:last-child { padding-bottom: 0; border-left-color: transparent; }
        .role { font-weight: 600; font-size: 0.95rem; color: var(--text-main); display: block; }
        .company { color: var(--accent-tech); font-size: 0.8rem; margin-bottom: 4px; display: block; font-family: var(--font-mono); }
        .timeline-entry p { font-size: 0.85rem; opacity: 0.8; margin: 0; }

        /* --- SECTION 2: SKILLS & CREATIVE (Middle) --- */

        /* Tech Stack (2x2) */
        .card-stack {
            grid-column: span 2; grid-row: span 2;
        }
        .stack-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 10px;
        }
        .stack-category h4 { 
            font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; 
            text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 6px;
        }
        .stack-items { display: flex; flex-wrap: wrap; gap: 6px; }

        /* Creative Studio (1x2 Vertical) */
        .card-creative {
            grid-column: span 1; grid-row: span 2;
            background: linear-gradient(180deg, rgba(20,20,20,0.6), rgba(191, 90, 242, 0.05));
        }
        .creative-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-top: 20px; flex-grow: 1; justify-content: center; }
        .creative-item h4 { font-size: 0.9rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
        .creative-item p { font-size: 0.75rem; opacity: 0.6; line-height: 1.4; }
        .creative-icon { color: var(--accent-art); font-size: 1.1rem; }

        /* Global Mindset (1x1) */
        .card-global {
            grid-column: span 1; grid-row: span 1;
        }
        .icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; }
        .interest-icon {
            aspect-ratio: 1; border-radius: 12px; background: rgba(255,255,255,0.05);
            display: grid; place-items: center; font-size: 1.2rem; color: var(--text-muted);
            transition: 0.2s; border: 1px solid transparent;
        }
        .interest-icon:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.1); }

        /* Status / Location (1x1) - NEW to fill grid */
        .card-status {
            grid-column: span 1; grid-row: span 1;
            align-items: center; justify-content: center; text-align: center;
        }
        .status-time { font-size: 2rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; margin: 10px 0; }
        .status-loc { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }

        /* --- SECTION 3: PROJECTS (Bottom) --- */

        .card-projects-title {
            grid-column: span 4; grid-row: span 1;
            background: transparent; border: none; padding: 10px 0; backdrop-filter: none; box-shadow: none;
            flex-direction: row; justify-content: space-between; align-items: flex-end;
            min-height: auto; margin-top: 20px;
        }
        .card-projects-title:hover { transform: none; box-shadow: none; }

        .card-project {
            grid-column: span 2; grid-row: span 1;
            text-decoration: none; color: inherit;
        }
        .project-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .project-icon-box {
            width: 48px; height: 48px; border-radius: 12px; 
            display: grid; place-items: center; font-size: 1.4rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        /* --- SECTION 4: CONTACT --- */
        .card-contact {
            grid-column: span 4; grid-row: span 1;
            display: flex; flex-direction: row; align-items: center; justify-content: space-between;
            background: linear-gradient(90deg, rgba(20,20,20,0.6), rgba(41, 151, 255, 0.05));
        }
        .social-row { display: flex; gap: 12px; }
        .social-btn {
            width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.05);
            display: grid; place-items: center; color: var(--text-main); font-size: 1.3rem;
            text-decoration: none; transition: 0.2s; border: 1px solid rgba(255,255,255,0.1);
        }
        .social-btn:hover { background: var(--text-main); color: #000; transform: translateY(-3px); }

        /* --- DOCK --- */
        .dock-container {
            position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 100;
        }
        .dock {
            display: flex; gap: 10px; padding: 10px 16px;
            background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        .dock-item {
            color: var(--text-muted); font-size: 1.4rem; padding: 10px; border-radius: 12px;
            transition: all 0.2s; text-decoration: none;
        }
        .dock-item:hover, .dock-item.active {
            background: rgba(255,255,255,0.15); color: var(--text-main); transform: translateY(-5px);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .bento-container { grid-template-columns: repeat(2, 1fr); }
            /* Rows anpassen für Tablet */
            .card-hero { grid-column: span 2; }
            .card-timeline { grid-column: span 2; }
            .card-stack { grid-column: span 2; }
            .card-creative { grid-column: span 1; grid-row: span 2; }
            .card-global { grid-column: span 1; }
            .card-status { grid-column: span 1; }
            .card-projects-title { grid-column: span 2; }
            .card-contact { grid-column: span 2; flex-direction: column; text-align: center; gap: 20px; }
        }

        @media (max-width: 600px) {
            .bento-container { display: flex; flex-direction: column; gap: 20px; }
            h1 { font-size: 1.8rem; }
            .card { padding: 24px; }
            .dock { padding: 8px 12px; gap: 5px; }
        }:root {
            --glass-bg: rgba(20, 20, 20, 0.6); /* Etwas dunkler für mehr Kontrast */
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.15);
            --text-main: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.6);
            
            --accent-tech: #2997ff;
            --accent-art: #bf5af2;
            --accent-green: #30d158;
            --accent-orange: #ff9f0a;
            
            --bg-dark: #050505;
            --font-stack: 'Inter', -apple-system, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-stack);
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- BACKGROUND --- */
        .ambient-light {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            overflow: hidden; z-index: -1; background: #020204;
        }
        .orb {
            position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.3;
            animation: float 25s infinite ease-in-out;
        }
        .orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, var(--accent-tech) 0%, transparent 70%); top: -20%; left: -10%; }
        .orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-art) 0%, transparent 70%); bottom: -10%; right: -10%; animation-delay: -5s; }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -50px); }
        }

        /* --- HEADER --- */
        header {
            width: 100%; max-width: 1200px; padding: 30px 20px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 50;
        }
        .logo { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; font-family: var(--font-mono); }
        .logo span { color: var(--accent-tech); }

        /* --- GRID LAYOUT (The Bento) --- */
        .bento-container {
            width: 100%; max-width: 1200px; padding: 0 20px 40px 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: minmax(160px, auto); /* Flexiblere Höhe */
            gap: 24px; /* Mehr Abstand für "Clean Look" */
            margin-bottom: 100px;
        }

        /* --- CARD BASE --- */
        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            border-radius: 24px; /* Etwas eckiger für technischeren Look */
            padding: 28px;
            display: flex; flex-direction: column; position: relative;
            overflow: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .card:hover {
            border-color: var(--glass-highlight);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
            z-index: 2;
        }

        /* Typography Helper */
        h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; line-height: 1.1; }
        h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); }
        h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
        p { color: var(--text-muted); line-height: 1.6; font-size: 0.9rem; }
        .label { 
            font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; 
            color: var(--text-muted); font-weight: 700; margin-bottom: 15px; 
            display: flex; align-items: center; gap: 8px; opacity: 0.8;
        }
        
        /* Tags */
        .tag-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
        .tag { 
            font-size: 0.75rem; padding: 6px 12px; border-radius: 8px; 
            background: rgba(255,255,255,0.06); color: var(--text-muted);
            border: 1px solid transparent; font-weight: 500; font-family: var(--font-mono);
        }
        .tag.tech { color: #a0cfff; background: rgba(41, 151, 255, 0.1); }
        .tag.art { color: #eebbff; background: rgba(191, 90, 242, 0.1); }
        .tag.ops { color: #ffeebb; background: rgba(255, 159, 10, 0.1); }

        /* --- SECTION 1: INTRO & EXPERIENCE (Top Row) --- */
        
        /* Profile (2x2) */
        .card-hero {
            grid-column: span 2; grid-row: span 2;
            justify-content: space-between;
            background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(0,0,0,0));
        }
        .hero-header { display: flex; gap: 20px; align-items: center; }
        .avatar {
            width: 80px; height: 80px; border-radius: 20px;
            background: linear-gradient(135deg, #222, #111);
            display: grid; place-items: center; font-size: 2.5rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .hero-badges { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
        .badge {
            padding: 6px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
            display: flex; align-items: center; gap: 6px; border: 1px solid transparent;
        }
        .badge.open { background: rgba(48, 209, 88, 0.1); color: var(--accent-green); border-color: rgba(48, 209, 88, 0.2); }
        .badge.poly { background: rgba(255,255,255,0.05); color: var(--text-main); border-color: rgba(255,255,255,0.1); }
        .dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; box-shadow: 0 0 8px currentColor; }

        /* Timeline / Werdegang (2x2) - JETZT OBEN */
        .card-timeline {
            grid-column: span 2; grid-row: span 2;
        }
        .timeline-wrapper {
            display: flex; flex-direction: column; gap: 0;
            margin-top: 10px; overflow-y: auto; max-height: 320px; /* Scrollbar wenn nötig */
        }
        .timeline-entry {
            padding-left: 20px; border-left: 2px solid rgba(255,255,255,0.08);
            position: relative; padding-bottom: 25px;
        }
        .timeline-entry::before {
            content: ''; position: absolute; left: -5px; top: 6px;
            width: 8px; height: 8px; border-radius: 50%; background: var(--bg-dark);
            border: 2px solid var(--accent-tech);
        }
        .timeline-entry:last-child { padding-bottom: 0; border-left-color: transparent; }
        .role { font-weight: 600; font-size: 0.95rem; color: var(--text-main); display: block; }
        .company { color: var(--accent-tech); font-size: 0.8rem; margin-bottom: 4px; display: block; font-family: var(--font-mono); }
        .timeline-entry p { font-size: 0.85rem; opacity: 0.8; margin: 0; }

        /* --- SECTION 2: SKILLS & CREATIVE (Middle) --- */

        /* Tech Stack (2x2) */
        .card-stack {
            grid-column: span 2; grid-row: span 2;
        }
        .stack-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 10px;
        }
        .stack-category h4 { 
            font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; 
            text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 6px;
        }
        .stack-items { display: flex; flex-wrap: wrap; gap: 6px; }

        /* Creative Studio (1x2 Vertical) */
        .card-creative {
            grid-column: span 1; grid-row: span 2;
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.6), rgba(191, 90, 242, 0.05));
        }
        .creative-list { list-style: none; display: flex; flex-direction: column; gap: 24px; margin-top: 20px; flex-grow: 1; justify-content: flex-start; }
        .creative-item h4 { font-size: 0.9rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
        .creative-item p { font-size: 0.75rem; opacity: 0.6; line-height: 1.4; }
        .creative-icon { color: var(--accent-art); font-size: 1.1rem; }

        /* Global Mindset (1x1) */
        .card-global {
            grid-column: span 1; grid-row: span 1;
        }
        .icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; }
        .interest-icon {
            aspect-ratio: 1; border-radius: 12px; background: rgba(255,255,255,0.05);
            display: grid; place-items: center; font-size: 1.2rem; color: var(--text-muted);
            transition: 0.2s; border: 1px solid transparent;
        }
        .interest-icon:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.1); }

        /* Status / Location (1x1) - NEW to fill grid */
        .card-status {
            grid-column: span 1; grid-row: span 1;
            align-items: center; justify-content: center; text-align: center;
        }
        .status-time { font-size: 2rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; margin: 10px 0; }
        .status-loc { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }

        /* --- SECTION 3: PROJECTS (Bottom) --- */

        .card-projects-title {
            grid-column: span 4; grid-row: span 1;
            background: transparent; border: none; padding: 10px 0; backdrop-filter: none; box-shadow: none;
            flex-direction: row; justify-content: space-between; align-items: flex-end;
            min-height: auto; margin-top: 20px;
        }
        .card-projects-title:hover { transform: none; box-shadow: none; }

        .card-project {
            grid-column: span 2; grid-row: span 1;
            text-decoration: none; color: inherit;
        }
        .project-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .project-icon-box {
            width: 48px; height: 48px; border-radius: 12px; 
            display: grid; place-items: center; font-size: 1.4rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        /* --- SECTION 4: CONTACT --- */
        .card-contact {
            grid-column: span 4; grid-row: span 1;
            display: flex; flex-direction: row; align-items: center; justify-content: space-between;
            background: linear-gradient(90deg, rgba(20,20,20,0.6), rgba(41, 151, 255, 0.05));
        }
        .social-row { display: flex; gap: 12px; }
        .social-btn {
            width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.05);
            display: grid; place-items: center; color: var(--text-main); font-size: 1.3rem;
            text-decoration: none; transition: 0.2s; border: 1px solid rgba(255,255,255,0.1);
        }
        .social-btn:hover { background: var(--text-main); color: #000; transform: translateY(-3px); }

        /* --- DOCK --- */
        .dock-container {
            position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 100;
        }
        .dock {
            display: flex; gap: 10px; padding: 10px 16px;
            background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        .dock-item {
            color: var(--text-muted); font-size: 1.4rem; padding: 10px; border-radius: 12px;
            transition: all 0.2s; text-decoration: none;
        }
        .dock-item:hover, .dock-item.active {
            background: rgba(255,255,255,0.15); color: var(--text-main); transform: translateY(-5px);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .bento-container { grid-template-columns: repeat(2, 1fr); }
            /* Rows anpassen für Tablet */
            .card-hero { grid-column: span 2; }
            .card-timeline { grid-column: span 2; }
            .card-stack { grid-column: span 2; }
            .card-creative { grid-column: span 1; grid-row: span 2; }
            .card-global { grid-column: span 1; }
            .card-status { grid-column: span 1; }
            .card-projects-title { grid-column: span 2; }
            .card-contact { grid-column: span 2; flex-direction: column; text-align: center; gap: 20px; }
        }

        @media (max-width: 600px) {
            .bento-container { display: flex; flex-direction: column; gap: 20px; }
            h1 { font-size: 1.8rem; }
            .card { padding: 24px; }
            .dock { padding: 8px 12px; gap: 5px; }
        }:root {
            /* Apple-Style Dark Mode Palette */
            --glass-bg: rgba(30, 30, 35, 0.65); /* Helleres, neutraleres Glas */
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-shine: rgba(255, 255, 255, 0.05);
            
            --text-main: #f5f5f7; /* Apple Off-White */
            --text-muted: #86868b; /* Apple Muted Grey */
            
            /* Neon Akzente (Sanfter) */
            --accent-blue: #2997ff;
            --accent-purple: #bf5af2;
            --accent-green: #30d158;
            --accent-orange: #ff9f0a;
            
            --bg-body: #000000;
            
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            
            --radius-card: 28px;
            --radius-small: 14px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: var(--font-sans);
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- AMBIENT BACKGROUND --- */
        .ambient-light {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            overflow: hidden; z-index: -1; pointer-events: none;
        }
        .orb {
            position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.45;
            animation: float 20s infinite ease-in-out;
        }
        .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-blue) 0%, transparent 60%); top: -15%; left: -10%; }
        .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-purple) 0%, transparent 60%); bottom: -10%; right: -5%; animation-delay: -5s; }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -40px) scale(1.05); }
        }

        /* --- HEADER --- */
        header {
            width: 100%; max-width: 1140px; padding: 40px 24px 20px 24px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 50;
        }
        .logo { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; font-family: var(--font-mono); opacity: 0.9; }
        .logo span { color: var(--accent-blue); }
        .status-pill {
            font-size: 0.75rem; background: rgba(255,255,255,0.08); padding: 6px 12px; border-radius: 100px;
            color: var(--text-muted); font-family: var(--font-mono); border: 1px solid rgba(255,255,255,0.05);
        }

        /* --- BENTO GRID --- */
        .bento-container {
            width: 100%; max-width: 1140px; padding: 0 24px 140px 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: minmax(160px, auto);
            gap: 20px;
        }

        /* --- CARD DESIGN SYSTEM --- */
        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(25px) saturate(180%); -webkit-backdrop-filter: blur(25px) saturate(180%);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 28px;
            display: flex; flex-direction: column; position: relative;
            overflow: hidden; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
        }
        
        /* Subtle Inner Shine on Hover */
        .card::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
            opacity: 0; transition: opacity 0.4s; pointer-events: none;
        }

        .card:hover {
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(255,255,255,0.15);
            box-shadow: 0 20px 40px -5px rgba(0,0,0,0.4);
            z-index: 10;
        }
        .card:hover::after { opacity: 1; }

        /* Typography */
        h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 8px; background: linear-gradient(to right, #fff, #bbb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px; color: #fff; }
        h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; color: #fff; }
        p { font-size: 0.95rem; line-height: 1.6; color: var(--text-muted); font-weight: 400; }
        
        .label { 
            font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; 
            color: var(--text-muted); font-weight: 700; margin-bottom: 16px; 
            display: flex; align-items: center; gap: 8px; opacity: 0.8;
            font-family: var(--font-sans);
        }
        .label i { font-size: 1.1em; color: var(--text-main); }

        /* --- HERO CARD (2x2) --- */
        .card-hero {
            grid-column: span 2; grid-row: span 2;
            justify-content: space-between;
        }
        .hero-top { display: flex; align-items: center; gap: 24px; }
        .avatar {
            width: 88px; height: 88px; border-radius: 24px;
            background: linear-gradient(135deg, #333, #111);
            display: grid; place-items: center; font-size: 2.5rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
        }
        .badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
        .badge {
            font-size: 0.8rem; font-weight: 500; padding: 8px 14px; border-radius: 100px;
            display: flex; align-items: center; gap: 8px; border: 1px solid transparent;
            transition: transform 0.2s;
        }
        .badge:hover { transform: scale(1.05); }
        .badge.open { background: rgba(48, 209, 88, 0.1); color: var(--accent-green); border-color: rgba(48, 209, 88, 0.2); }
        .badge.poly { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.1); }
        .status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

        /* --- TIMELINE CARD (2x2) --- */
        .card-timeline {
            grid-column: span 2; grid-row: span 2;
            /* Scrollbar styling for webkit */
        }
        .timeline-scroll {
            overflow-y: auto; max-height: 100%; padding-right: 5px;
            scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent;
        }
        .timeline-scroll::-webkit-scrollbar { width: 4px; }
        .timeline-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }

        .timeline-item {
            padding-left: 24px; border-left: 2px solid rgba(255,255,255,0.1);
            position: relative; padding-bottom: 32px;
        }
        .timeline-item::before {
            content: ''; position: absolute; left: -6px; top: 6px;
            width: 10px; height: 10px; border-radius: 50%; background: var(--bg-body);
            border: 2px solid var(--accent-blue); box-shadow: 0 0 10px rgba(41, 151, 255, 0.4);
        }
        .timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }
        .t-role { font-size: 1rem; font-weight: 600; color: #fff; display: block; margin-bottom: 4px; }
        .t-meta { font-size: 0.8rem; color: var(--accent-blue); font-family: var(--font-mono); margin-bottom: 8px; display: block; }
        .t-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

        /* --- TECH STACK (2x2) --- */
        .card-stack {
            grid-column: span 2; grid-row: span 2;
        }
        .stack-group { margin-bottom: 24px; }
        .stack-group:last-child { margin-bottom: 0; }
        .stack-title { 
            font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; 
            margin-bottom: 12px; display: block; 
        }
        .tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .tag {
            font-size: 0.8rem; padding: 6px 12px; border-radius: 8px;
            background: rgba(255,255,255,0.05); color: #d0d0d5; border: 1px solid rgba(255,255,255,0.05);
            font-family: var(--font-mono); transition: all 0.2s;
        }
        .tag:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-2px); }
        /* Special Colors */
        .tag.blue { color: #8cc4ff; background: rgba(41, 151, 255, 0.1); border-color: rgba(41, 151, 255, 0.15); }
        .tag.purple { color: #e4aeff; background: rgba(191, 90, 242, 0.1); border-color: rgba(191, 90, 242, 0.15); }
        .tag.orange { color: #ffd685; background: rgba(255, 159, 10, 0.1); border-color: rgba(255, 159, 10, 0.15); }

        /* --- CREATIVE (1x2) --- */
        .card-creative {
            grid-column: span 1; grid-row: span 2;
            background: linear-gradient(to bottom, rgba(40,30,50,0.5), rgba(20,20,20,0.6));
        }
        .creative-list { display: flex; flex-direction: column; gap: 24px; margin-top: auto; }
        .c-item h4 { font-size: 0.9rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
        .c-item p { font-size: 0.75rem; line-height: 1.4; opacity: 0.7; }
        .c-icon { color: var(--accent-purple); }

        /* --- TRAVELER & STATUS (1x1) --- */
        .card-global {
            grid-column: span 1; grid-row: span 1;
        }
        .icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; }
        .icon-box {
            aspect-ratio: 1; border-radius: 12px; background: rgba(255,255,255,0.04);
            display: grid; place-items: center; font-size: 1.2rem; color: var(--text-muted);
            transition: 0.2s;
        }
        .icon-box:hover { background: rgba(255,255,255,0.1); color: #fff; transform: scale(1.1); }

        .card-status {
            grid-column: span 1; grid-row: span 1;
            align-items: center; justify-content: center; text-align: center;
            background: rgba(10, 10, 12, 0.6);
        }
        .clock { font-size: 2.2rem; font-weight: 700; color: var(--accent-blue); font-variant-numeric: tabular-nums; margin: 5px 0; }
        .loc { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

        /* --- PROJECTS TITLE --- */
        .projects-header {
            grid-column: span 4; display: flex; align-items: flex-end; justify-content: space-between;
            padding: 20px 10px 10px 10px; margin-top: 20px;
        }
        .projects-header h2 { margin: 0; font-size: 1.8rem; }
        .projects-header span { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }

        /* --- PROJECT CARDS (2x1) --- */
        .card-project {
            grid-column: span 2; grid-row: span 1;
            text-decoration: none; color: inherit; justify-content: space-between;
        }
        .p-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
        .p-icon {
            width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem;
            color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .arrow-icon { opacity: 0.3; transition: 0.2s; font-size: 1.2rem; }
        .card-project:hover .arrow-icon { opacity: 1; transform: translate(3px, -3px); color: #fff; }
        
        /* --- CONTACT (4x1) --- */
        .card-contact {
            grid-column: span 4;
            flex-direction: row; align-items: center; justify-content: space-between;
            background: linear-gradient(90deg, rgba(20,20,30,0.7), rgba(41, 151, 255, 0.08));
        }
        .socials { display: flex; gap: 12px; }
        .s-btn {
            width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.05);
            display: grid; place-items: center; font-size: 1.3rem; color: var(--text-main);
            text-decoration: none; transition: 0.2s; border: 1px solid rgba(255,255,255,0.05);
        }
        .s-btn:hover { background: #fff; color: #000; transform: translateY(-3px); }

        /* --- DOCK --- */
        .dock-wrapper {
            position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 100;
        }
        .dock {
            display: flex; gap: 8px; padding: 10px 14px;
            background: rgba(18, 18, 18, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .dock-a {
            padding: 10px 14px; font-size: 1.4rem; color: var(--text-muted);
            border-radius: 12px; transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
        }
        .dock-a:hover, .dock-a.active { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-4px); }
        .tooltip {
            position: absolute; top: -35px; left: 50%; transform: translateX(-50%) scale(0.8);
            background: rgba(0,0,0,0.8); color: #fff; padding: 4px 8px; border-radius: 6px;
            font-size: 0.75rem; opacity: 0; pointer-events: none; transition: 0.2s; white-space: nowrap;
        }
        .dock-a:hover .tooltip { opacity: 1; transform: translateX(-50%) scale(1); }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .bento-container { grid-template-columns: 1fr 1fr; }
            .card-hero, .card-timeline, .card-stack, .projects-header, .card-contact { grid-column: span 2; }
            .card-creative { grid-column: span 2; } /* Creative auf Mobile breit machen */
        }
        @media (max-width: 600px) {
            .bento-container { display: flex; flex-direction: column; gap: 20px; }
            .card { padding: 24px; border-radius: 20px; }
            h1 { font-size: 2rem; }
            .dock { padding: 8px 12px; }
        }
