
        html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
        width: 100%;}

        body {
            background-color: black;
            color: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            
        }

        .content {
            max-width: 600px;
            margin: auto;
            padding: 20px;
            
        }

        a {
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            transition: border-color 0.2s ease;
        }

        a:hover {
            border-color: currentColor;
        }

        .source-notice {
            position: fixed;
            bottom: 20px;
            font-size: 0.85em;
            opacity: 0.7;
            
        }

        
        .hidden-rel-me { display: none; }