        body {
            font-family: monospace;
            font-size: 16px;
            background-color: #111;
            color: #eee;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #000;
            padding: 2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        header img {
            max-height: 140px;
            width: auto;
            margin-bottom: 0.5rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: normal;
        }

        main {
            max-width: 700px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        p {
            font-size: 1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        a {
            color: #B060CC;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .name-explanation {
            background-color: #222;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            filter: invert(40%) sepia(80%) saturate(800%) hue-rotate(250deg) brightness(110%);
        }

        .links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem auto;
            max-width: 700px;
            padding: 0 1.5rem;
        }
        
        .article {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            border: 1px solid #444;
        }

        .article img {
            width: 35vw;
            height: auto;
            margin-bottom: 0.5rem;
        }

        .article-list li {
            margin-bottom: 2rem;
        }

        .resume {
            margin-bottom: 0.5rem;
        }
        
        .news-list {
            list-style-type: none;
            padding: 0;
        }

        .news-item {
            background-color: #222;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .news-item h3 {
            margin-top: 0;
        }

        .news-item p {
            margin-bottom: 0.5rem;
        }

        .news-item img {
            max-width: 100%;
            height: auto;
            margin-bottom: 1rem;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pagination a {
            background-color: #222;
            padding: 0.5rem 1rem;
        }

        footer {
            background-color: #000;
            padding: 1rem;
            text-align: center;
            font-size: 0.8rem;
        }
        

        ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        blockquote {
            border-left: 3px solid #B060CC;
            margin: 1.5rem 0 1.5rem 1rem;
            padding-left: 1rem;
            color: #bbb;
            font-style: italic;
        }

        .context {
            border-left: 3px solid #555;
            margin: 0 0 2rem 0;
            padding-left: 1rem;
            color: #999;
            font-size: 0.9rem;
            font-style: italic;
        }

        h1 { font-size: 1.4rem; font-weight: bold; margin-bottom: 1.5rem; }
        h2 { font-size: 1.1rem; color: #B060CC; margin-top: 2rem; }

        .text-list li {
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #333;
        }
        .text-list li:last-child { border-bottom: none; }
        .text-list .date { color: #888; font-size: 0.85rem; }
