        :root {
            --bg: #ffffff;
            --text: #1a1a1a;
            --text-soft: #888888;
            --accent: #000000;
            --danger: #cf2e2e;
            --margin: clamp(1.2rem, 8vw, 12vw); 
            --transition: all 1.2s cubic-bezier(0.15, 1, 0.3, 1);
        }
        input, textarea {
        cursor: default;
            caret-color: #000000; /* Der blinkende Strich beim Tippen wird tiefschwarz */
        }

        /* Reset & Basis */
        * { margin: 0; padding: 0; box-sizing: border-box; overflow-wrap: break-word; }
        html { scroll-behavior: smooth; scroll-padding-top: 100px; }
        body { 
            font-family: 'Inter', sans-serif; 
            background-color: var(--bg); 
            color: var(--text); 
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- NAVIGATION --- */
        nav { 
            position: fixed; top: 0; width: 100%; 
            padding: 1.5rem var(--margin); 
            display: flex; justify-content: space-between; align-items: center; 
            z-index: 2000; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
        }
        .logo { font-weight: 200; font-size: 0.9rem; letter-spacing: 5px; text-transform: uppercase; }
        .nav-links { display: flex; gap: 1.5rem; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--text); font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.5; transition: 0.3s; }
        .nav-links a:hover { opacity: 1; }

        /* --- LOGIN MODAL --- */
        #login-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(25px);
            display: none; justify-content: center; align-items: center;
            z-index: 3000; opacity: 0; transition: opacity 0.5s ease;
        }
        #login-overlay.active { display: flex; opacity: 1; }
        .login-card {
            background: #fff; padding: clamp(40px, 8vw, 60px);
            width: 90%; max-width: 450px; box-shadow: 0 40px 100px rgba(0,0,0,0.05);
            position: relative; transform: translateY(30px); transition: transform 0.6s var(--transition);
        }
        #login-overlay.active .login-card { transform: translateY(0); }
        .close-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; cursor: pointer; opacity: 0.3; font-size: 1.2rem; }

        /* --- CONTENT --- */
        .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--margin) 60px; }
        .mirror-title { 
            font-size: clamp(2.2rem, 12vw, 6rem); font-weight: 100; letter-spacing: -0.04em; line-height: 1.0;
            -webkit-box-reflect: below -20px linear-gradient(transparent 30%, rgba(255, 255, 255, 0.15));
        }

        .content-flow { padding: 0 var(--margin) 60px; max-width: 1400px; margin: 0 auto; }
        .section-block { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; margin-bottom: clamp(6rem, 15vh, 12rem); }
        .text-box { grid-column: 1 / span 12; }
        @media (min-width: 768px) { .text-box { grid-column: span 7; } .text-box-right { grid-column: 8 / span 5; } }

        /* --- DASHBOARD --- */
        .hidden-section { display: none; }
        .visible-section { display: block; animation: fadeIn 1s forwards; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .timer-display { font-size: clamp(3rem, 12vw, 8rem); font-weight: 100; letter-spacing: -0.05em; line-height: 1; margin: 20px 0 40px; }
        .status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #eee; margin-right: 10px; transition: 0.3s; }
        .status-active { background: #27ae60; box-shadow: 0 0 12px rgba(39,174,96,0.5); }

	.history-box { grid-column: span 12; min-height: 400px; }
/* --- JOURNAL TABLE --- */
        .journal-table { width: 100%; border-collapse: collapse; margin-top: 25px; }
        .journal-table th { text-align: left; font-size: 0.6rem; text-transform: uppercase; color: var(--text-soft); padding-bottom: 15px; border-bottom: 1px solid #eee; }
        .journal-table td { padding: 20px 0; font-size: 0.85rem; font-weight: 200; border-bottom: 1px solid rgba(0,0,0,0.02); }
        .duration-badge { font-family: monospace; font-weight: 400; background: #f5f5f5; padding: 4px 8px; border-radius: 4px; }
        .pause-badge { color: var(--pause); font-size: 0.75rem; font-weight: 400; }

        /* Formular & Inputs */
        .f-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-soft); font-weight: 300; }
        input, select, textarea { width: 100%; padding: 12px 0; background: transparent; border: none; border-bottom: 1px solid #e0e0e0; font-family: inherit; font-size: 1rem; font-weight: 200; outline: none; transition: 0.3s; border-radius: 0; }
        textarea { resize: vertical; min-height: 120px; }
        input:focus, textarea:focus { border-color: var(--accent); }
        .submit-btn { background: #000; color: #fff; border: none; padding: 15px 40px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; }
        
        .data-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
        .data-table th { text-align: left; font-size: 0.6rem; text-transform: uppercase; color: var(--text-soft); padding: 15px 0; border-bottom: 1px solid #eee; }
        .data-table td { padding: 20px 0; font-size: 0.9rem; font-weight: 200; border-bottom: 1px solid #f9f9f9; }

        /* --- FOOTER --- */
        footer { padding: 80px var(--margin) 40px; border-top: 1px solid #f2f2f2; }
        .footer-main { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; margin-bottom: 60px; }
        .f-col-brand { grid-column: span 12; }
        .f-col-nav, .f-col-social { grid-column: span 6; }
        @media (min-width: 768px) { .f-col-brand { grid-column: span 6; } .f-col-nav, .f-col-social { grid-column: span 3; } }
        .f-list { list-style: none; margin-top: 20px; }
        .f-list li { margin-bottom: 10px; }
        .f-list a { text-decoration: none; color: var(--text); font-size: 0.85rem; font-weight: 200; opacity: 0.5; transition: 0.3s; }
        .f-list a:hover { opacity: 1; }
        
        .footer-bottom { padding-top: 40px; border-top: 1px solid #f9f9f9; display: flex; flex-direction: column; gap: 15px; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
        .f-copy { font-size: 0.65rem; opacity: 0.3; letter-spacing: 1px; text-transform: uppercase; }

        .reveal { opacity: 0; transform: translateY(20px); transition: var(--transition); }
        .reveal.active { opacity: 1; transform: translateY(0); }
/* Lightbox mit Glas-Effekt 2026 */
#lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(25px);
    display: none; justify-content: center; align-items: center;
    z-index: 4000; cursor: zoom-out; opacity: 0; transition: opacity 0.5s ease;
}
#lightbox.active { display: flex; opacity: 1; }
#lightbox img { 
    max-width: 90%; max-height: 80vh; 
    border-radius: 20px; 
    border: 1px solid rgba(0, 0, 0, 0.1); /* Leichter Rahmen im Zoom */
    box-shadow: 0 40px 100px rgba(0,0,0,0.1); 
    transform: scale(0.95); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
#lightbox.active img { transform: scale(1); }

/* Rahmen-Stil für die Bento-Bilder */
.image-container {
    flex: 1; 
    aspect-ratio: 16/9; 
    overflow: hidden; 
    border-radius: 24px; 
    cursor: zoom-in; 
    background: #fff;
    /* Der leichte Rahmen: 1px fein und minimal abgesetzt */
    border: 1px solid rgba(0, 0, 0, 0.08); 
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02), 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}
.image-container:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
