
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f6f6ef;
            color: #333;
            line-height: 1.6;
        }
        .logo {
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 10px;
}
        .header {
            background-color: #ff6600;
            padding: 12px 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .header a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
            transition: opacity 0.2s;
        }
        .header a:hover {
            opacity: 0.8;
        }
        .header a.active {
            font-weight: bold;
            text-decoration: underline;
        }
        .post, .comment {
            padding: 15px;
            border-bottom: 1px solid #eee;
            background-color: white;
            margin-bottom: 12px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            gap: 1px;
        }
        .post:hover, .comment:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .vote-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 30px;
            padding-top: 2px;
        }
        .vote-buttons button {
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            padding: 2px 6px;
            font-size: 16px;
            border-radius: 4px;
            transition: all 0.2s;
        }
        .vote-buttons button:hover {
            color: #ff6600;
            background-color: #fff5f0;
        }
        .post-content, .comment-content {
            flex: 1;
        }
        .post-title {
            font-size: 16px;
            margin-bottom: 5px;
        }
        .post-title a {
            color: #000;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        .post-title a:hover {
            color: #ff6600;
        }
        .post-meta, .comment-meta {
            font-size: 13px;
            color: #666;
            margin-top: 5px;
        }
        .post-meta a, .comment-meta a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }
        .post-meta a:hover, .comment-meta a:hover {
            color: #ff6600;
        }
        .post-text {
            margin-top: 10px;
            color: #333;
            line-height: 1.6;
        }
        .form-container {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        input[type="text"],
        input[type="email"],
        input[type="password"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus,
        textarea:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 2px rgba(255,102,0,0.1);
            outline: none;
        }
        textarea {
            height: 120px;
            resize: vertical;
        }
        button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s;
        }
        button:hover {
            background-color: #ff8533;
        }
        .error {
            color: #dc3545;
            margin-bottom: 20px;
            padding: 12px;
            background-color: #fff5f5;
            border-radius: 6px;
            border: 1px solid #ffcdd2;
        }
        .success {
            color: #28a745;
            margin-bottom: 20px;
            padding: 12px;
            background-color: #f0fff4;
            border-radius: 6px;
            border: 1px solid #c3e6cb;
        }
        .pagination {
            margin-top: 30px;
            text-align: center;
        }
        .page-link {
            display: inline-block;
            padding: 8px 16px;
            margin: 0 4px;
            color: #666;
            text-decoration: none;
            border: 1px solid #ddd;
            border-radius: 6px;
            background-color: white;
            transition: all 0.2s;
        }
        .page-link:hover {
            background-color: #f5f5f5;
            border-color: #ccc;
        }
        .page-link.active {
            background-color: #ff6600;
            color: white;
            border-color: #ff6600;
        }
        .no-posts {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .no-posts p {
            margin: 10px 0;
            color: #666;
        }
        .no-posts a {
            color: #ff6600;
            text-decoration: none;
            font-weight: 500;
        }
        .no-posts a:hover {
            text-decoration: underline;
        }
        .reply-form {
            margin-top: 10px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 4px;
        }
        .reply-form textarea {
            height: 80px;
        }
        .domain {
            color: #666;
            font-size: 13px;
            margin-left: 5px;
        }