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

			body {
				font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
				line-height: 1.6;
				color: #333;
				background: #fff;
				padding: 40px 20px !important;
				max-width: 600px;
				margin: 0 auto !important;
			}

			.header {
				margin-bottom: 60px;
			}

			h1 {
				font-size: 24px;
				font-weight: 400;
				margin-bottom: 8px;
				letter-spacing: -0.02em;
				cursor: pointer;
				transition: all 0.3s ease;
			}

			h1:hover {
				letter-spacing: 2px;
			}

			.subtitle {
				color: #666;
				font-size: 14px;
				margin-bottom: 30px;
				cursor: pointer;
				transition: all 0.3s ease;
			}

			.subtitle:hover {
				color: #333;
			}

			.bio {
				font-size: 15px;
				color: #555;
				margin-bottom: 40px;
				line-height: 1.5;
				cursor: pointer;
				transition: all 0.3s ease;
			}

			.bio:hover {
				font-style: italic;
			}

			.nav {
				display: flex;
				gap: 30px;
				margin-bottom: 80px;
				flex-wrap: wrap;
			}

			.nav a {
				color: #333;
				text-decoration: none;
				font-size: 13px;
				text-transform: lowercase;
				font-variant: small-caps;
				letter-spacing: 0.5px;
				transition: color 0.2s ease;
				position: relative;
			}

			.nav a:hover {
				color: #000;
			}

			.nav a:hover:after {
				content: '';
				position: absolute;
				bottom: -2px;
				left: 0;
				right: 0;
				height: 1px;
				background: #000;
				animation: underline 0.3s ease;
			}

			@keyframes underline {
				from { transform: scaleX(0); }
				to { transform: scaleX(1); }
			}

			.reading-section {
				margin-bottom: 60px;
				position: relative;
			}

			.reading-header {
				display: flex;
				align-items: center;
				justify-content: space-between;
				margin-bottom: 20px;
			}

			.reading-title {
				font-size: 16px;
				font-weight: 500;
				color: #222;
				cursor: pointer;
				transition: all 0.3s ease;
			}

			.reading-title:hover {
				transform: rotate(-1deg);
			}

			.reading-status {
				font-size: 12px;
				color: #999;
				text-transform: uppercase;
				letter-spacing: 1px;
				cursor: pointer;
				transition: color 0.2s ease;
			}

			.reading-status:hover {
				color: #666;
			}

			.book-container {
				position: relative;
				padding: 20px;
				background: #fafafa;
				border-radius: 8px;
				border: 1px solid #f0f0f0;
				transition: all 0.3s ease;
				cursor: pointer;
				overflow: hidden;
			}

			.book-container:hover {
				background: #f5f5f5;
				transform: translateY(-2px);
				box-shadow: 0 4px 12px rgba(0,0,0,0.05);
			}

			.book-info {
				display: flex;
				gap: 15px;
				align-items: flex-start;
			}

			.book-cover {
				width: 60px;
				height: 90px;
				background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
				border-radius: 4px;
				position: relative;
				flex-shrink: 0;
				transition: all 0.3s ease;
				cursor: pointer;
				box-shadow: 0 2px 8px rgba(0,0,0,0.1);
			}

			.book-cover:hover {
				transform: rotateY(15deg) rotateX(5deg);
				box-shadow: 0 4px 16px rgba(0,0,0,0.15);
			}

			.book-cover:before {
				content: '';
				position: absolute;
				top: 4px;
				left: 4px;
				right: 4px;
				bottom: 4px;
				border: 1px solid rgba(255,255,255,0.2);
				border-radius: 2px;
			}

			.book-details {
				flex: 1;
				min-width: 0;
			}

			.book-title {
				font-size: 15px;
				font-weight: 500;
				margin-bottom: 4px;
				color: #333;
				cursor: pointer;
				transition: color 0.2s ease;
			}

			.book-title:hover {
				color: #000;
			}

			.book-author {
				font-size: 13px;
				color: #666;
				margin-bottom: 8px;
				cursor: pointer;
				transition: all 0.2s ease;
			}

			.book-author:hover {
				color: #333;
				font-style: italic;
			}

			.reading-progress {
				margin-top: 12px;
			}

			.progress-bar {
				width: 100%;
				height: 4px;
				background: #eee;
				border-radius: 2px;
				overflow: hidden;
				margin-bottom: 6px;
				cursor: pointer;
			}

			.progress-fill {
				height: 100%;
				background: linear-gradient(90deg, #667eea, #764ba2);
				width: 34%;
				transition: width 0.3s ease;
				border-radius: 2px;
			}

			.progress-text {
				font-size: 12px;
				color: #999;
				display: flex;
				justify-content: space-between;
				cursor: pointer;
			}

			.progress-text:hover {
				color: #666;
			}

			.reading-note {
				margin-top: 12px;
				font-size: 13px;
				color: #666;
				font-style: italic;
				opacity: 0;
				transform: translateY(10px);
				transition: all 0.3s ease;
				cursor: pointer;
			}

			.book-container:hover .reading-note {
				opacity: 1;
				transform: translateY(0);
			}

			.reading-note:hover {
				color: #333;
			}

			.bookmark {
				position: absolute;
				top: 0;
				right: 20px;
				width: 2px;
				height: 30px;
				background: #ff6b6b;
				transform: translateY(-10px);
				transition: transform 0.3s ease;
			}

			.book-container:hover .bookmark {
				transform: translateY(0);
			}

			.last-read {
				position: absolute;
				bottom: 8px;
				right: 12px;
				font-size: 10px;
				color: #ccc;
				cursor: pointer;
				transition: color 0.2s ease;
			}

			.last-read:hover {
				color: #999;
			}

			@keyframes page-flip {
				0% { transform: rotateY(0deg); }
				50% { transform: rotateY(-10deg); }
				100% { transform: rotateY(0deg); }
			}

			.book-cover.flipping {
				animation: page-flip 0.6s ease-in-out;
			}

			.section {
				margin-bottom: 60px;
			}

			.section-title {
				font-size: 16px;
				font-weight: 500;
				margin-bottom: 20px;
				color: #222;
				cursor: pointer;
				transition: all 0.3s ease;
			}

			.section-title:hover {
				transform: rotate(-1deg);
			}

			.blog-list {
				list-style: none;
			}

			.blog-item {
				margin-bottom: 16px;
				padding: 8px 0;
				border-bottom: 1px solid #f0f0f0;
				transition: all 0.2s ease;
			}

			.blog-item:hover {
				background: #fafafa;
				padding-left: 8px;
				margin-left: -8px;
				margin-right: -8px;
			}

			.blog-item:last-child {
				border-bottom: none;
			}

			.blog-link {
				text-decoration: none;
				color: #333;
				display: block;
			}

			.blog-title {
				font-size: 15px;
				font-weight: 400;
				margin-bottom: 4px;
			}

			.blog-date {
				font-size: 13px;
				color: #999;
			}

			.footer {
				margin-top: 100px;
				padding-top: 20px;
				border-top: 1px solid #f0f0f0;
				font-size: 13px;
				color: #999;
				cursor: pointer;
				transition: color 0.3s ease;
			}

			.footer:hover {
				color: #666;
			}

			@keyframes konami {
				0% { transform: rotate(0deg); }
				25% { transform: rotate(5deg); }
				50% { transform: rotate(-5deg); }
				75% { transform: rotate(3deg); }
				100% { transform: rotate(0deg); }
			}

			.konami-mode {
				animation: konami 0.5s ease-in-out;
			}

			.secret-mode {
				background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
				background-size: 400% 400%;
				animation: rainbow 3s ease infinite;
			}

			@keyframes rainbow {
				0% { background-position: 0% 50%; }
				50% { background-position: 100% 50%; }
				100% { background-position: 0% 50%; }
			}

			@media (max-width: 480px) {
				body {
					padding: 30px 15px;
				}
				
				.nav {
					gap: 20px;
				}

				.book-info {
					gap: 12px;
				}
				
				.book-cover {
					width: 50px;
					height: 75px;
				}
				
				.reading-header {
					flex-direction: column;
					align-items: flex-start;
					gap: 5px;
				}
			}

        .back {
            font-size: 13px;
            color: #666;
            text-decoration: none;
            margin-bottom: 40px;
            display: inline-block;
            transition: all 0.2s ease;
            cursor: pointer;
            text-transform: lowercase;
            font-variant: small-caps;
            letter-spacing: 0.5px;
        }

        .back:hover {
            color: #000;
            transform: translateX(-3px);
        }

        .back:before {
            content: '← ';
        }

        .header {
            margin-bottom: 60px;
        }

        h1 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        h1:hover {
            color: #666;
        }

        .subtitle {
            color: #666;
            font-size: 14px;
            margin-bottom: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subtitle:hover {
            color: #333;
        }

        .post-count {
            font-size: 13px;
            color: #999;
            margin-bottom: 40px;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .post-count:hover {
            color: #666;
        }

        .blog-list {
            list-style: none;
        }

        .blog-item {
            margin-bottom: 16px;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }

        .blog-item:hover {
            background: #fafafa;
            padding-left: 8px;
            margin-left: -8px;
            margin-right: -8px;
        }

        .blog-item:last-child {
            border-bottom: none;
        }

        .blog-link {
            text-decoration: none;
            color: #333;
            display: block;
        }

        .blog-title {
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 4px;
        }

        .blog-date {
            font-size: 13px;
            color: #999;
        }

        .footer {
            margin-top: 100px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
            font-size: 13px;
            color: #999;
            text-align: center;
        }

        @media (max-width: 480px) {
            body {
                padding: 30px 15px !important;
            }
        }
		        .site-header, .site-footer {
			display: none !important;
		}

        .back {
            font-size: 13px !important;
            color: #666 !important;
            text-decoration: none !important;
            margin-bottom: 40px !important;
            display: inline-block !important;
            transition: all 0.2s ease !important;
            cursor: pointer !important;
            text-transform: lowercase !important;
            font-variant: small-caps !important;
            letter-spacing: 0.5px !important;
            padding: 0 !important;
        }

        .back:hover {
            color: #000 !important;
            transform: translateX(-3px) !important;
        }

        .back:before {
            content: '← ' !important;
        }

        .blog-header {
            margin-bottom: 50px !important;
            padding-bottom: 30px !important;
            border-bottom: 1px solid #f0f0f0 !important;
        }

        .blog-header h1 {
            font-size: 28px !important;
            font-weight: 500 !important;
            margin-bottom: 15px !important;
            letter-spacing: -0.02em !important;
            line-height: 1.3 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            color: #333 !important;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        }

        .blog-header h1:hover {
            color: #666 !important;
        }

        .meta {
            display: flex !important;
            gap: 20px !important;
            align-items: center !important;
            font-size: 14px !important;
            color: #999 !important;
            margin-bottom: 10px !important;
            flex-wrap: wrap !important;
        }

        .date {
            cursor: pointer !important;
            transition: color 0.2s ease !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .date:hover {
            color: #666 !important;
        }

        .author {
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .author:hover {
            color: #000 !important;
            font-style: italic !important;
        }

        .reading-time {
            color: #ccc !important;
            font-size: 13px !important;
            cursor: pointer !important;
            transition: color 0.2s ease !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .reading-time:hover {
            color: #999 !important;
        }

        .blog-content {
            font-size: 16px !important;
            line-height: 1.7 !important;
            margin-bottom: 40px !important;
            color: #333 !important;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        }

        .blog-content p {
            margin-bottom: 20px !important;
            padding: 0 !important;
        }

        .blog-content h2 {
            font-size: 22px !important;
            font-weight: 500 !important;
            margin: 40px 0 20px 0 !important;
            color: #222 !important;
            padding: 0 !important;
        }

        .blog-content h3 {
            font-size: 18px !important;
            font-weight: 500 !important;
            margin: 30px 0 15px 0 !important;
            color: #333 !important;
            padding: 0 !important;
        }

        .blog-content blockquote {
            border-left: 2px solid #eee !important;
            padding-left: 20px !important;
            margin: 30px 0 !important;
            font-style: italic !important;
            color: #666 !important;
        }

        .blog-content img {
            max-width: 100% !important;
            height: auto !important;
            margin: 20px 0 !important;
        }

        .blog-content ul, .blog-content ol {
            margin: 20px 0 !important;
            padding-left: 20px !important;
        }

        .blog-content li {
            margin-bottom: 8px !important;
        }

        .substack-link {
            display: inline-block !important;
            margin-top: 30px !important;
            padding: 12px 20px !important;
            background: #f8f8f8 !important;
            color: #333 !important;
            text-decoration: none !important;
            border-radius: 6px !important;
            font-size: 14px !important;
            transition: all 0.2s ease !important;
            border: 1px solid #eee !important;
        }

        .substack-link:hover {
            background: #eee !important;
            border-color: #ddd !important;
        }

        .footer-nav {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding-top: 30px !important;
            border-top: 1px solid #f0f0f0 !important;
            margin-top: 60px !important;
        }

        .footer-nav a {
            color: #666 !important;
            text-decoration: none !important;
            font-size: 13px !important;
            transition: color 0.2s ease !important;
            text-transform: lowercase !important;
            font-variant: small-caps !important;
            letter-spacing: 0.5px !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .footer-nav a:hover {
            color: #000 !important;
        }

        .easter-egg {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            font-size: 12px !important;
            color: #ddd !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            opacity: 0 !important;
            z-index: 1000 !important;
        }

        .easter-egg.visible {
            opacity: 1 !important;
        }

        .easter-egg:hover {
            color: #999 !important;
            transform: scale(1.1) !important;
        }

        .progress-bar {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            height: 2px !important;
            background: #333 !important;
            transition: width 0.1s ease !important;
            z-index: 100 !important;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0) !important; }
            25% { transform: translateX(-2px) !important; }
            75% { transform: translateX(2px) !important; }
        }

        .shake {
            animation: shake 0.5s ease-in-out !important;
        }

        @media (max-width: 480px) {
            body {
                padding: 30px 15px !important;
            }
            
            .blog-header h1 {
                font-size: 24px !important;
            }
            
            .blog-content {
                font-size: 15px !important;
            }
            
            .meta {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 5px !important;
            }
        }
		        * {
            margin: 0 !important;
            padding: 0 !important;
            box-sizing: border-box !important;
        }

        html, body {
            margin: 0 !important;
            padding: 0 !important;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
            line-height: 1.7 !important;
            color: #333 !important;
            background: #fff !important;
            padding: 40px 20px !important;
            max-width: 650px !important;
            margin: 0 auto !important;
            width: 100% !important;
            min-height: 100vh !important;
        }
		@media (max-width: 480px) {
    body {
        padding: 30px 15px !important;
    }
}
@media (max-width: 480px) {
    body {
        padding: 30px 15px !important;
    }
    
    .header {
        margin-bottom: 40px !important; /* Add space after header */
    }
    
    .nav {
        gap: 15px;
        margin-bottom: 40px !important; /* Space after navigation */
    }
    
    .reading-section {
        margin-bottom: 40px !important; /* Space after reading section */
    }
    
    .section {
        margin-bottom: 40px !important; /* Space after writing section */
    }
    
    .footer {
        margin-top: 60px !important; /* Space before footer */
    }
}