.comments-section {
    margin: 25px 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    border-radius: 4px;
    padding: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.comments-section:hover {
    background-color: rgba(25, 25, 25, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.comment-input-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

#comment-textarea {
    width: 100%;
    min-height: 80px;
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 10px;
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

#comment-textarea:focus {
    outline: none;
    border-color: #ff3366;
    background-color: rgba(0, 0, 0, 0.8);
}

.terminal-button-primary, .terminal-button-secondary {
    padding: 8px 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    align-self: flex-end;
}

.terminal-button-primary {
    background-color: rgba(255, 51, 102, 0.2);
    color: #f0f0f0;
    border: 1px solid rgba(255, 51, 102, 0.4);
}

.terminal-button-primary:hover {
    background-color: rgba(255, 51, 102, 0.4);
    transform: translateY(-1px);
}

.terminal-button-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 15px auto 0;
    display: block;
}

.terminal-button-secondary:hover {
     background-color: rgba(255, 255, 255, 0.2);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    background-color: rgba(30, 30, 30, 0.9);
    border-radius: 4px;
    padding: 15px;
    border-left: 2px solid rgba(255, 51, 102, 0.4);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    margin-right: 10px;
}

.comment-username {
    color: #f0f0f0;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.comment-username:hover {
    color: #ff3366;
}

.comment-content {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-content img {
    max-width: 100%;
    border-radius: 4px;
    margin-top: 10px;
}

.comment-footer {
    margin-top: 10px;
    font-size: 12px;
    color: #888888;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-reply-btn, .comment-delete-btn {
    background: none;
    border: none;
    color: #aaaaaa;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: color 0.2s ease;
    padding: 0;
    font-size: 12px;
}

.comment-reply-btn:hover {
    color: #ff3366;
}

.comment-delete-btn {
    color: #ff6b6b;
}

.comment-delete-btn:hover {
    color: #ff3b3b;
    text-decoration: underline;
}

.no-comments {
    color: rgba(224, 224, 224, 0.7);
    font-style: italic;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}